:root {
  --text-light: #ffffff;
  --accent: #fbe496;
  --accent-dark: #fcd975;
  --radius: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-light);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.login-content {
  color: var(--text-light);
}

.uppertainer {
  max-width: 68.75rem; /* 960px */
  margin: 0 auto;
  padding: 2rem 1rem;
}

@media (min-width: 68.75rem) {
  .uppertainer {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Nav Styles */
.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.navigation > img {
  width: 234px;
  height: 71px;
  margin-right: 3rem;
}

.navigation > div {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}


.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 600;
}

.auth-buttons {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.auth-buttons .login {
  color: var(--accent);
}

.auth-buttons .signup {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px 18px;
  gap: 10px;

  width: 90px;
  height: 45px;

  background: linear-gradient(90deg, #FFF7CB 8.47%, #FAE493 86%), #FFFFFF;
  border-radius: var(--radius);


  font-family: basic-sans, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #000000;
  white-space: nowrap;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-text > img {
  margin-bottom: 2rem;
  width: 100%;
  height: auto;

  max-width: 576px;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, var(--accent), var(--accent-dark));
  color: #000;
  font-weight: bold;
  border-radius: var(--radius);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .navigation {
    flex-direction: column;
    gap: 1rem;
  }

  .navigation > div {
    flex-direction: column;
  }

  .nav-links,
  .auth-buttons {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .auth-buttons {
    margin-top: 20px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    margin-top: 2rem;
  }
}

/* section one */
.section-one-tainer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 6rem;
  background-color: #fff;
}
.section-one {
  max-width: 68.75rem;
  margin: 0 auto;
}

.top-section {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: flex-start;
}

.main-image {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
}

.text-block {
  flex: 1;
  min-width: 300px;
}

.text-block h2 {
  font-family: basic-sans, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 31px;

  color: #000000;
}

.text-block p {
  font-family: basic-sans, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #000000;
}

.bottom-section {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-top: 3rem;
  justify-content: flex-start;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 500px;
  flex: 1;
  min-width: 280px;
}

.iconography {
  width: 60px;
  height: 60px;
}

.feature-text {
  font-family: basic-sans, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 26px;
  line-height: 31px;
  color: #000000;
}

.feature-text strong {
  font-weight: 600;
}
/* end section one */

/* start section two */
.section-two-tainer {
  background-color: #F5F5F5;
  padding: 60px 40px;
}

.section-two {
  max-width: 68.75rem;
  margin: 0 auto;
}

.section-two * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.title {
  margin-bottom: 80px;
  font-family: basic-sans, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: #1A1A1A;
}

.main-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 20px;
}

.benefit-card h3 {
  margin-bottom: 20px;
  text-align: left;
  width: 100%;

  font-family: basic-sans, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 31px;
  color: #000000;

  flex: none;
  order: 0;
  flex-grow: 0;
}

.benefit-card p {
  font-family: basic-sans, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.right-section {
    flex: 1.2;
    position: relative;
}

.mizzain-image {
  width: 100%;
  height: auto;
}

.overlay-image {
    position: absolute;
    bottom: -100%;
    left: 0;
    /*width: 350px;
    height: auto;*/
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 68.75rem) {
    .main-content {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .section-two-tainer {
        padding: 40px 20px;
    }
    
    .title {
        margin-bottom: 50px;
    }
    
    .benefit-card {
        padding: 30px;
    }
    
    .benefit-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        padding: 25px;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .benefit-card p {
        font-size: 1rem;
    }
}
/* end section two */

/* start section three */
.section-three * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.section-three {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #2a2a2a;
  color: white;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing-container {
  max-width: 1200px;
  width: 100%;
}

.section-three h1 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  color: white;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.pricing-card {
  background-color: white;
  border-radius: 20px;
  padding: 50px 30px 40px 30px;
  width: auto;
  min-width: 280px;
  position: relative;
  color: #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  height: 100%;
}

.pricing-header {
  text-align: center;
  width: fit-content;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 19px 30px;

  background: linear-gradient(90deg, #FFF7CB 8.47%, #FAE493 86%), linear-gradient(90deg, #FFFFFF 0%, #999999 100%);
  border-radius: 20px;

  font-family: basic-sans, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 31px;
  color: #000000;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.price {
  text-align: center;
  margin-bottom: 25px;
  margin-top: 10px;

  font-family: basic-sans, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 22px;
  color: #000000;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.features {
  list-style: none;
}

.features li {
  font-family: basic-sans, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  color: #000000;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.features li:last-child {
  border-bottom: none;
}

.enterprise .price {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .pricing-cards {
      gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-three h1 {
      font-size: 2rem;
      margin-bottom: 40px;
  }
  
  .pricing-cards {
      flex-direction: column;
      align-items: center;
      gap: 30px;
  }
  
  .pricing-card {
      width: 100%;
      max-width: 350px;
      margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .section-three {
      padding: 40px 15px;
  }
  
  .section-three h1 {
      font-size: 1.8rem;
  }
  
  .pricing-card {
      padding: 30px 25px;
  }
}
/* end section three */

/* start section four */
.section-four {
  padding: 10rem 0;
  background-color: #fff;
}
.swiper {
  overflow: visible;
}
.swiper-slide {
  background: white;
  border-radius: 20px;
  border: 1px solid #E4E4E4;
  /*padding: 2rem;*/
  padding-left: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
  width: 80%; /* Default for mobile: 1 + blip */
  height: 212px;
  position: relative;
}

@media (min-width: 768px) {
  .swiper-slide {
    width: 45%; /* Larger screens: 2 + blip */
  }
}

.swiper-slide > img:first-child {
  position: absolute;
  top: -14px;
  left: 18px
}

.quote {
  margin-bottom: 1rem;
  font-family: basic-sans, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.author {
  font-family: basic-sans, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.carousel-image {
  width: 212px;
  height: 212px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}
/* end section four */

/* start section five */
.section-five {
  font-family: 'Inter', sans-serif;
}

/* Main container for the enterprise integration section */
.main-container {
  display: flex;
  flex-direction: column;
  background-color: #F5F5F5;
  max-width: 100%; /* Changed to 100% to fill full width */
  width: 100%;
  overflow: hidden;
  border-top: 0.3px solid #000;
}

/* Image section */
.image-section {
  width: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.image-section img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Content section */
.content-section {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Section title */
.section-title {
  margin-bottom: 1.5rem;

  font-family: basic-sans, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: #1A1A1A;
}

/* Description paragraph */
.description-paragraph {
  margin-bottom: 2rem;
  font-family: basic-sans, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: #1A1A1A;
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.feature-list li {
  display: flex;
  align-items: baseline; /* Changed from flex-start to baseline for icon alignment */
  margin-bottom: 1.5rem;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

/* Custom styling for the airplane icon */
.airplane-icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  background-image: url('img/plane.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; /* Changed from 50% 0 to center for better vertical alignment within its own space */
  flex-shrink: 0;
}

.featured-text {
  font-family: basic-sans, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: #1A1A1A;
}

.featured-text .font-semibold {
  font-weight: 700;
}

/* Call to action button */
.call-to-action-button {
  padding: 0.75rem 2rem;
  align-self: flex-start;
  cursor: pointer;

  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px 23px 15px;
  gap: 10px;
  background: linear-gradient(90deg, #FFF7CB 8.47%, #FAE493 86%), #FFFFFF;
  border: 1px solid #000000;
  border-radius: 10px;
  width: 242;
  height: 52px;
  font-family: basic-sans, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  flex: none;
  order: 0;
  flex-grow: 0;
  white-space: nowrap;
}

/* Responsive adjustments for medium screens and larger */
@media (min-width: 768px) {
  .main-container {
    flex-direction: row;
  }

  .image-section {
    width: 50%;
  }

  .content-section {
    width: 50%;
    padding: 3rem;
  }
}

@media (min-width: 768px) and (max-width: 68.75rem) {
  .image-section img:first-child {
    object-position: 25% center;
  }
}
/* end section five */

/* start footer */
.footainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 20px;
  max-width: 68.75rem;
  margin: 0 auto;
  gap: 20px;
  color: #fff;
}

.vs-info {
  display: flex;
  flex-direction: column;
  /*flex: 1 1 250px;*/
}

.vs-info h1 {
  margin: 0 0 20px 0;
  font-size: 24px;
}

.vs-info p {
  margin: 5px 0;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.social-icons a:not(:last-child) {
  margin-right: 20px;
}

.social-icons a img {
  width: 20px;
  height: 20px;
}

.content {
  flex: 2 1 500px;
  font-size: 14px;
  line-height: 1.5;
}
footer {
  background-color: #292929;
}
.footer-wrapper {
  background-color: #1F1F1F;
  padding: 10px 20px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 68.75rem;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer > div {
  margin: 5px 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .footainer {
    flex-direction: column;
    align-items: flex-start;
  }

  .content {
    flex: 1 1 100%;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (min-width: 769px) {
  .vs-info {
    flex: 1 1 250px;
  }
}
/* end footer */
