        html {
          scroll-behavior: smooth;
        }


        /* --- Global Reset --- */
        *, *::before, *::after {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
        }

        body {
          font-family: var(--font-outfit);
          color: var(--color-text-dark);
          background-color: var(--color-surface);
          line-height: 1.6;
          min-width: 375px;
          zoom: 0.9;
        }

        img { display: block; max-width: 100%; height: auto; }
        a { text-decoration: none; color: inherit; transition: color 0.3s; }

        /* --- Utility Classes --- */
        .container {
          width: 100%;
          max-width: var(--max-width);
          margin: 0 auto;
          padding-left: var(--space-s);
          padding-right: var(--space-s);
        }

        .text-center { text-align: center; }
        .text-light { color: var(--color-white); }
        .text-medium { color: var(--color-text-medium); }

        .heading-1 {
          font-family: var(--font-outfit);
          font-weight: 600;
          font-size: clamp(2.5rem, 4vw + 1rem, 6.25rem);
          line-height: 1;
          margin-bottom: var(--space-m);
        }
        .heading-1 .italic {
          font-family: var(--font-newsreader-italic);
          font-style: italic;
        }

        .button-primary {
          background-color: var(--button-primary-bg);
          border-radius: var(--border-radius-full);
          padding: 20px 34px;
          font-size: 20px;
          font-weight: 400;
          color: var(--button-primary-text);
          display: flex;
          align-items: center;
          gap: var(--space-s);
          transition: opacity 0.2s;
        }

        .button-primary:hover {
          opacity: 0.8;
        }

        .button-secondary {
          background-color: var(--button-secondary-bg);
          backdrop-filter: blur(25px);
          border-radius: var(--border-radius-full);
          padding: 20px 34px;
          font-size: 20px;
          font-weight: 400;
          color: var(--button-secondary-text);
          display: flex;
          align-items: center;
          gap: var(--space-s);
          transition: background-color 0.2s;
        }

/* Navigation */
.navbar {
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--navbar-border);
  border-radius: 16px;
  padding: 16px 24px;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1400px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--navbar-gradient-border), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar:hover::before {
  opacity: 1;
}

.nav-logo-link {
  height: 40px;
  width: 180px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.nav-logo-link:hover {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: var(--navbar-link-color);
  font-size: 15px;
  font-weight: 400;
  padding: 10px 18px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  letter-spacing: -0.01em;
}

.nav-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: var(--navbar-link-hover-bg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-white);
}

.nav-links a:hover::before {
  opacity: 1;
}

.nav-contact-btn {
  background: var(--color-primary) !important;
  color: var(--color-black) !important;
  font-weight: 500 !important;
  padding: 12px 28px !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 12px var(--button-primary-shadow);
  position: relative;
  overflow: hidden;
}

.nav-contact-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--button-primary-hover-shadow);
}

.nav-contact-btn:hover::before {
  opacity: 1;
}

/* Mobile Hamburger Menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 100;
}

.nav-hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-links a {
    font-size: 14px;
    padding: 8px 14px;
  }
  
  .nav-contact-btn {
    padding: 10px 22px !important;
  }
}

@media (max-width: 768px) {
  body {
    zoom: 1;
    overflow-x: hidden;
  }
  
  .navbar {
    padding: 12px 16px;
    width: calc(100% - 32px);
    flex-wrap: nowrap;
  }
  
  .nav-logo-link {
    width: 140px;
    height: 32px;
    z-index: 100;
  }
  
  .nav-hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: rgba(var(--color-black-rgb), 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--navbar-border);
    box-shadow: -10px 0 40px rgba(var(--color-black-rgb), 0.5);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    width: 100%;
    font-size: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--navbar-border);
  }
  
  .nav-links a::before {
    display: none;
  }
  
  .nav-contact-btn {
    margin-top: 20px;
    padding: 14px 24px !important;
    font-size: 16px !important;
    text-align: center;
    border-radius: 12px !important;
    border-bottom: none !important;
  }
}
    /* Hero Section */
    .hero-section {
      position: relative;
      overflow: hidden;
      min-height: 115vh;
      background-color: var(--color-background-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding-top: 100px;
      padding-bottom: 100px;
    }
    .hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* darker overlay */
  z-index: 5; /* higher than slides */
  pointer-events: none; /* make sure it doesn’t block clicks */
}

.hero-content {
  position: relative;
  z-index: 10; /* ensure text stays on top */
}

    /* Image Slider Background */
    .hero-slider {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .hero-slide {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
    }

    .hero-slide-image {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .hero-slider::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 1); /* Dark overlay */
        z-index: 1;
        }


    /* Hero Content */
    .hero-content {
      position: relative;
      z-index: 10;
      max-width: 900px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
      text-align: center;
      padding: 0 24px;
    }

    .hero-title {
      font-size: clamp(48px, 8vw, 80px);
      line-height: 1.1;
      margin: 0;
      font-weight: 600;
      letter-spacing: -0.02em;
      opacity: 0;
      transform: translateY(40px);
      animation: fadeInUp 1s ease-out 0.3s forwards;
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(40px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }


    .hero-title .italic {
      font-style: italic;
      font-weight: 500;
      position: relative;
      display: inline-block;
    }

    .hero-title .italic::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 0%;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--hero-title-underline), transparent);
      animation: underlineGrow 1s ease-out 1.5s forwards, shimmer 3s infinite 2.5s;
    }

    @keyframes underlineGrow {
      to {
        width: 100%;
      }
    }

    @keyframes shimmer {
      0%, 100% { opacity: 0.3; }
      50% { opacity: 1; }
    }

    .hero-subtitle {
      font-size: clamp(18px, 2.5vw, 24px);
      max-width: 700px;
      line-height: 1.6;
      opacity: 0;
      font-weight: 300;
      transform: translateY(30px);
      animation: fadeInUp 1s ease-out 0.6s forwards;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      margin-top: 16px;
      flex-wrap: wrap;
      justify-content: center;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s ease-out 0.9s forwards;
    }

    .button-primary,
    .button-secondary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 36px;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .button-primary {
      background: var(--button-primary-bg);
      color: var(--button-primary-text);
      box-shadow: 0 4px 20px var(--button-primary-shadow);
    }

    .button-primary::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s ease, height 0.6s ease;
    }

    .button-primary:hover::before {
      width: 300px;
      height: 300px;
    }

    .button-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px var(--button-primary-hover-shadow);
    }

    .button-primary svg {
      transition: transform 0.3s ease;
      position: relative;
      z-index: 1;
    }

    .button-primary:hover svg {
      transform: translateX(4px);
    }

    .button-secondary {
      background: var(--button-secondary-bg);
      color: var(--button-secondary-text);
      border: 1px solid var(--button-secondary-border);
      backdrop-filter: blur(10px);
    }

    .button-secondary:hover {
      background: var(--button-secondary-hover-bg);
      border-color: var(--button-secondary-hover-border);
      transform: translateY(-2px);
    }

    .button-secondary svg {
      transition: transform 0.3s ease;
    }

    .button-secondary:hover svg {
      transform: translateY(4px);
    }

    /* Benefit Slider */
    .benefit-slider {
      position: relative;
      z-index: 10;
      width: 100%;
      max-width: var(--max-width);
      margin-top: 60px;
      overflow: visible;
      padding: 40px 0;
      mask-image: linear-gradient(
        to right,
        transparent,
        black 30%,
        black 70%,
        transparent
      );
      -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 30%,
        black 70%,
        transparent
      );
      opacity: 0;
      animation: fadeInUp 1s ease-out 1.2s forwards;
    }

    .benefit-slider-track {
      display: flex;
      gap: var(--space-s);
      animation: slide 25s linear infinite;
      width: fit-content;
    }

    @keyframes slide {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-50%));
      }
    }

    .benefit-slider:hover .benefit-slider-track {
      animation-play-state: paused;
    }

    .benefit-card {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      padding: 24px 48px;
      background: var(--benefit-card-bg);
      border: 1px solid var(--benefit-card-border);
      border-radius: 16px;
      min-width: 320px;
      backdrop-filter: blur(20px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    .benefit-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      padding: 1px;
      background: linear-gradient(135deg, var(--benefit-card-gradient), transparent);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .benefit-card:hover {
      transform: translateY(-4px) scale(1.05);
      background: var(--benefit-card-hover-bg);
      border-color: var(--benefit-card-hover-border);
      box-shadow: var(--shadow-heavy);
    }

    .benefit-card:hover::before {
      opacity: 1;
    }

    .benefit-card p {
      margin: 0;
      color: var(--color-white);
      font-size: 18px;
      font-weight: 500;
      text-align: center;
      letter-spacing: -0.01em;
      white-space: nowrap;
    }

    .benefit-card svg {
      padding-right: 5px;
      width: 35px;
      height: 22px;
      color: var(--color-primary);
      opacity: 0.9;
      transition: all 0.3s ease;
    }

    .benefit-card:hover svg {
      opacity: 1;
      transform: scale(1.1) rotate(5deg);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .navbar {
        padding: 1em 5%;
      }

      .nav-hamburger {
        display: flex;
      }

      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2em;
        transition: right 0.4s ease;
        padding: 2em;
      }

      .nav-links.active {
        right: 0;
      }

      .nav-links a {
        font-size: 18px;
      }

      .hero-section {
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 60px;
      }

      .hero-content {
        gap: 24px;
      }

      .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
      }

      .button-primary,
      .button-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
      }

      .benefit-slider {
        margin-top: 40px;
        mask-image: linear-gradient(
          to right,
          transparent,
          black 15%,
          black 85%,
          transparent
        );
        -webkit-mask-image: linear-gradient(
          to right,
          transparent,
          black 15%,
          black 85%,
          transparent
        );
      }

      .benefit-card {
        min-width: 260px;
        padding: 20px 36px;
      }

      .benefit-card p {
        font-size: 16px;
      }
    }
        /* Secteurs Section */
        .secteurs-section {
          padding: 40px 20px;
          background: var(--color-surface);
          overflow: hidden;
          width: 100%;
          box-sizing: border-box;
        }

        .secteurs-header {
          text-align: center;
          max-width: 900px;
          margin: 0 auto 60px;
        }

        /* Title with animation */
        .secteurs-title {
          font-size: 64px;
          line-height: 1.1;
          margin: 0 0 20px;
          font-weight: 500;
          opacity: 0;
          transform: translateY(30px);
          animation: fadeInUp 0.8s ease-out forwards;
        }

        .title-normal {
          font-family: var(--font-outfit);
          font-style: normal;
        }

        .title-italic {
          font-family: var(--font-newsreader-italic);
          font-style: italic;
          font-weight: 400;
        }

        /* Subtitle with animation */
        .secteurs-subtitle {
          font-family: var(--font-outfit);
          font-size: 16px;
          color: var(--color-text-medium);
          line-height: 1.6;
          margin: 0;
          opacity: 0;
          transform: translateY(20px);
          animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }

        .secteurs-content {
          position: relative;
          max-width: 1400px;
          margin: 0 auto;
          padding: 0 20px;
        }

        /* DYNAMIC GRID - This is the magic! */
        .secteurs-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 32px;
          justify-items: center;
        }

        /* Ensure cards don't get too wide when there are only 1-3 cards */
        .secteur-card {
          width: 100%;
          max-width: 400px;
          display: flex;
          flex-direction: column;
          gap: 20px;
          opacity: 0;
          transform: translateY(40px);
        }

        /* Animation when card comes into view */
        .secteur-card.animate-in {
          animation: fadeInUp 0.8s ease-out forwards;
        }

        /* Stagger animation delays */
        .secteur-card:nth-child(1) { animation-delay: 0.3s; }
        .secteur-card:nth-child(2) { animation-delay: 0.5s; }
        .secteur-card:nth-child(3) { animation-delay: 0.7s; }
        .secteur-card:nth-child(4) { animation-delay: 0.9s; }
        .secteur-card:nth-child(5) { animation-delay: 1.1s; }
        .secteur-card:nth-child(6) { animation-delay: 1.3s; }

        /* Image Container */
        .secteur-image {
          position: relative;
          width: 100%;
          aspect-ratio: 3/4;
          overflow: hidden;
          border-radius: 20px;
          box-shadow: var(--shadow-soft);
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          cursor: pointer;
        }

        .secteur-image:hover {
          transform: translateY(-8px);
          box-shadow: var(--shadow-hover);
        }

        .secteur-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .secteur-image:hover img {
          transform: scale(1.05);
        }

        /* Overlay on Image */
        .secteur-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(to bottom, var(--secteur-overlay-start) 0%, var(--secteur-overlay-end) 30%);
          pointer-events: none;
        }

        .secteur-location {
          position: absolute;
          top: 20px;
          left: 20px;
          display: flex;
          align-items: center;
          gap: 8px;
          background: var(--secteur-location-bg);
          padding: 10px 16px;
          border-radius: 50px;
          font-family: var(--font-outfit);
          font-size: 15px;
          font-weight: 500;
          color: var(--secteur-location-text);
          box-shadow: var(--shadow-medium);
          backdrop-filter: blur(8px);
        }

        .secteur-location svg {
          width: 18px;
          height: 18px;
          flex-shrink: 0;
          color: var(--color-black);
        }

        /* Info Section */
        .secteur-info {
          display: flex;
          flex-direction: column;
          gap: 12px;
        }

        .secteur-name {
          font-family: var(--font-outfit);
          font-size: 22px;
          font-weight: 600;
          margin: 0;
          color: var(--color-text-dark);
          line-height: 1.3;
        }

        .secteur-description {
          font-family: var(--font-outfit);
          font-size: 15px;
          line-height: 1.6;
          margin: 0;
          color: var(--color-text-medium);
        }

        /* Stats Row */
        .secteur-stats {
          display: flex;
          align-items: center;
          gap: 20px;
          margin-top: 4px;
        }

        .secteur-stat {
          display: flex;
          align-items: center;
          gap: 6px;
          font-family: var(--font-outfit);
          font-size: 14px;
          font-weight: 500;
          color: var(--color-text-medium);
        }

        .secteur-stat svg {
          width: 16px;
          height: 16px;
          color: var(--color-text-medium);
        }

        .secteur-stat:last-child svg {
          fill: var(--color-star-rating);
          color: var(--color-star-rating);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
          .secteurs-title {
            font-size: 56px;
            padding-top: 4rem;
          }
          
          .secteurs-grid {
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
          }
        }

        @media (max-width: 768px) {
          .secteurs-section {
            padding: 60px 16px;
          }
          
          .secteurs-header {
            margin-bottom: 40px;
          }
          
          .secteurs-title {
            font-size: 40px;
          }
          
          .secteurs-subtitle {
            font-size: 14px;
          }
          
          .secteurs-grid {
            grid-template-columns: 1fr;
            gap: 32px;
          }
          
          .secteur-card {
            max-width: 100%;
          }
          
          .secteur-name {
            font-size: 20px;
          }
          
          .secteur-description {
            font-size: 14px;
          }
        }

        @media (max-width: 480px) {
          .secteurs-title {
            font-size: 32px;
          }
          
          .secteur-location {
            padding: 8px 12px;
            font-size: 14px;
          }
        }


.section-divider-svg {
  position: relative;
  width: 100%;
  height: 120px;
  margin-bottom: 0;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  transform: rotate(180deg);
}

.section-divider-svg svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateZ(0);
}

.section-divider-svg.divider-bottom {
  margin-bottom: 0;
  margin-top: -10px;
  transform: rotate(180deg);
}

.section-divider-svg.shallow {
  height: 50px;
}

.section-divider-svg.deep {
  height: 120px;
}

.section-divider-svg.extra-deep {
  height: 150px;
}

@media (max-width: 768px) {
  .section-divider-svg {
    height: 40px;
    margin-top: -4rem;
    visibility: hidden;
  }
  
  .section-divider-svg.deep {
    height: 40px;
  }
  
  .section-divider-svg.extra-deep {
    height: 50px;
  }
  
  .secteurs-section {
    padding-top: 80px !important;
  }
}

@media (max-width: 480px) {
  .section-divider-svg {
    height: 30px;
  }
  
  .section-divider-svg.shallow {
    height: 25px;
  }
  
  .section-divider-svg.deep {
    height: 35px;
  }
}
 
        /* Services Timeline Section */
        .services-timeline-section {
            position: relative;
            background: var(--color-background-light);
            padding: var(--space-l) 0 var(--space-m) 0;
            overflow: hidden;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            padding: 20px var(--space-m);
            margin-bottom: var(--space-l);
            position: relative;
            z-index: 2;
        }

        .services-timeline-section .section-title {
            font-size: clamp(42px, 6vw, 64px);
            line-height: 1.1;
            margin-bottom: var(--space-s);
            font-weight: 600;
            letter-spacing: -0.02em;
            color: var(--color-text-dark);
        }

        .section-title .italic {
            font-style: italic;
            font-weight: 500;
            position: relative;
            display: inline-block;
        }

        .section-title .italic::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(var(--color-primary-rgb), 0.6), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .section-subtitle {
            font-size: clamp(16px, 2vw, 20px);
            color: var(--color-text-light);
            max-width: 700px;
            margin: 0 auto var(--space-m) auto;
            line-height: 1.6;
        }

        /* Category Filter Buttons */
        .category-filters {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: var(--space-m);
        }

        .filter-button {
            padding: 12px 28px;
            border-radius: 30px;
            background: rgba(var(--color-white-rgb), 0.1);
            border: 2px solid rgba(var(--color-black-rgb), 0.2);
            color: var(--color-black);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: var(--font-outfit);
        }

        .filter-button:hover {
            background: rgba(var(--color-white-rgb), 0.15);
            border-color: rgba(var(--color-primary-rgb), 0.5);
            transform: translateY(-2px);
        }

        .filter-button.active {
            background: var(--color-primary);
            border-color: var(--color-primary);
            color: var(--color-black);
        }

        /* Slideshow Container */
        .slideshow-wrapper {
            position: relative;
            height: 85vh;
            min-height: 600px;
            max-height: 700px;
            overflow: hidden;
        }

        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Slide */
        .service-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }

        .service-slide.prev {
            z-index: 1;
        }

        /* Slide Inner */
        .slide-inner {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: stretch;
            background: var(--color-white);
        }

        /* Slide Image Side */
        .slide-image-side {
            position: relative;
            width: 50%;
            height: 100%;
            overflow: hidden;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 8s ease-out;
        }

        .service-slide.active .slide-image {
            transform: scale(1.1);
        }

        .slide-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to right,
                transparent 0%,
                rgba(var(--color-black-rgb), 0.3) 80%,
                rgba(var(--color-black-rgb), 0.6) 100%
            );
        }

        /* Slide Number Badge */
        .slide-number {
            position: absolute;
            top: var(--space-m);
            left: var(--space-m);
            width: 80px;
            height: 80px;
            background: var(--color-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 700;
            color: var(--color-black);
            box-shadow: var(--shadow-soft);
            z-index: 3;
            transform: scale(0.8);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .service-slide.active .slide-number {
            transform: scale(1);
            opacity: 1;
            transition-delay: 0.3s;
        }

        /* Slide Content Side */
        .slide-content-side {
            width: 50%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: var(--space-l);
            background: var(--color-white);
            position: relative;
        }

        .slide-content-side::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--color-primary);
            transform: scaleY(0);
            transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .service-slide.active .slide-content-side::before {
            transform: scaleY(1);
            transition-delay: 0.2s;
        }

        .slide-category {
            display: inline-block;
            padding: 10px 24px;
            background: rgba(var(--color-primary-rgb), 0.15);
            color: var(--color-text-dark);
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: var(--space-m);
            width: fit-content;
            transform: translateX(-30px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .service-slide.active .slide-category {
            transform: translateX(0);
            opacity: 1;
            transition-delay: 0.4s;
        }

        .slide-title {
            font-size: clamp(32px, 4vw, 56px);
            font-weight: 600;
            color: var(--color-text-dark);
            margin-bottom: var(--space-m);
            line-height: 1.2;
            letter-spacing: -0.02em;
            transform: translateX(-30px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .service-slide.active .slide-title {
            transform: translateX(0);
            opacity: 1;
            transition-delay: 0.5s;
        }

        .slide-description {
            font-size: 18px;
            color: var(--color-text-medium);
            line-height: 1.7;
            margin-bottom: var(--space-m);
            transform: translateX(-30px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .service-slide.active .slide-description {
            transform: translateX(0);
            opacity: 1;
            transition-delay: 0.6s;
        }

        .slide-link {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            color: var(--color-text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 20px;
            padding: 16px 0;
            border-bottom: 3px solid var(--color-primary);
            width: fit-content;
            transition: all 0.3s ease;
            transform: translateX(-30px);
            opacity: 0;
        }

        .service-slide.active .slide-link {
            transform: translateX(0);
            opacity: 1;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            transition-delay: 0.7s;
        }

        .slide-link:hover {
            color: var(--color-primary);
            gap: 24px;
        }

        .slide-link svg {
            transition: transform 0.3s ease;
        }

        .slide-link:hover svg {
            transform: translateX(8px);
        }

        /* Navigation Controls */
        .slideshow-nav {
            position: absolute;
            bottom: var(--space-m);
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 16px;
            z-index: 10;
            padding: 12px 20px;
            background: rgba(var(--color-white-rgb), 0.95);
            backdrop-filter: blur(20px);
            border-radius: 40px;
            box-shadow: var(--shadow-medium);
        }

        .nav-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--color-white);
            border: 2px solid rgba(var(--color-black-rgb), 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--color-text-dark);
        }

        .nav-button:hover {
            background: var(--color-primary);
            border-color: var(--color-primary);
            transform: scale(1.1);
            color: var(--color-black);
        }

        .nav-button svg {
            width: 18px;
            height: 18px;
        }

        /* Slide Indicators */
        .slide-indicators {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(var(--color-black-rgb), 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            width: 28px;
            border-radius: 4px;
            background: var(--color-primary);
        }

        .indicator:hover:not(.active) {
            background: rgba(var(--color-black-rgb), 0.4);
            transform: scale(1.2);
        }

        /* Progress Bar */
        .progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(var(--color-black-rgb), 0.1);
            z-index: 11;
        }

        .progress-bar-fill {
            height: 100%;
            background: var(--color-primary);
            width: 0%;
            transition: width 0.3s ease;
        }

        .progress-bar-fill.animating {
            transition: width 5s linear;
        }

        /* CTA Section */
        .services-cta {
            text-align: center;
            padding: var(--space-l) var(--space-m);
        }

        .cta-title {
            font-size: clamp(28px, 5vw, 42px);
            font-weight: 600;
            color: var(--color-text-dark);
            margin-bottom: var(--space-m);
            letter-spacing: -0.01em;
        }

        .button-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 36px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--button-primary-bg);
            color: var(--button-primary-text);
            box-shadow: 0 4px 20px var(--button-primary-shadow);
            border: none;
            cursor: pointer;
        }

        .button-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px var(--button-primary-hover-shadow);
        }

        .button-primary svg {
            transition: transform 0.3s ease;
        }

        .button-primary:hover svg {
            transform: translateX(4px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .services-timeline-section {
                padding: var(--space-l) 0;
            }

            .section-header {
                margin-bottom: var(--space-l);
            }

            .slideshow-wrapper {
                min-height: 600px;
            }

            .slide-inner {
                flex-direction: column;
            }

            .slide-image-side,
            .slide-content-side {
                width: 100%;
                height: 50%;
            }

            .slide-number {
                width: 60px;
                height: 60px;
                font-size: 24px;
                top: var(--space-s);
                left: var(--space-s);
            }

            .slide-image-overlay {
                background: linear-gradient(
                    to bottom,
                    transparent 0%,
                    rgba(var(--color-black-rgb), 0.3) 60%,
                    rgba(var(--color-black-rgb), 0.7) 100%
                );
            }

            .slide-content-side {
                padding: var(--space-m);
            }

            .slide-title {
                font-size: 28px;
            }

            .slide-description {
                font-size: 16px;
            }

            .slideshow-nav {
                bottom: var(--space-m);
                padding: 16px 24px;
                gap: var(--space-s);
            }

            .nav-button {
                width: 44px;
                height: 44px;
            }

            .nav-button svg {
                width: 20px;
                height: 20px;
            }

            .indicator {
                width: 10px;
                height: 10px;
            }

            .indicator.active {
                width: 30px;
            }

            .services-cta {
                padding: var(--space-l) var(--space-s);
            }
        }

        @media (max-width: 480px) {
            .slideshow-nav {
                padding: 12px 16px;
                gap: 12px;
            }

            .nav-button {
                width: 40px;
                height: 40px;
            }

            .slide-indicators {
                gap: 8px;
            }

            .indicator {
                width: 8px;
                height: 8px;
            }

            .indicator.active {
                width: 24px;
            }
        }

        /* --- Prices Section --- */

.formules-section {
  background-color: #f5f5f5;
  position: relative;
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
}

/* Simple visible grid */
.formules-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.5;
}


/* Content container with max-width */
.formules-section > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  z-index: 1;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.9s ease-out forwards;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-title .italic {
    font-family: var(--font-newsreader-italic);
    font-style: italic;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

/* Underline animation under 'solution' */
.section-title .italic::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.section-description {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--color-text-medium);
    max-width: 800px;
    margin: 0 auto 35px;
    line-height: 1.7;
    font-weight: 300;
}

/* Guarantee Badge - Continuous Bouncy Animation + Enhanced Shadow */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(var(--color-primary-rgb), 0.85) 100%);
    color: var(--color-black);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 30px rgba(var(--color-primary-rgb), 0.5),
                0 4px 15px rgba(var(--color-primary-rgb), 0.4),
                0 2px 8px rgba(var(--color-black-rgb), 0.2);
    opacity: 0;
    transform: scale(0.8);
}

.guarantee-badge.animate-in {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s forwards,
               floatBounce 3.5s ease-in-out 1.3s infinite;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    25% {
        transform: translateY(-8px) scale(1.05);
    }
    50% {
        transform: translateY(0px) scale(1);
    }
    75% {
        transform: translateY(-4px) scale(1.02);
    }
}

.guarantee-badge svg {
    width: 20px;
    height: 20px;
}

/* Dynamic Grid */
.formules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 5px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
    opacity: 0;
    animation: fadeInUp 0.9s ease-out 0.3s forwards;
}

.formules-grid.two-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}

/* Individual Card */
.formule-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 24px;
    padding: 0;
    height: auto;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    border: 2px solid transparent;
}

.formule-card.animate-in {
    animation: cardSlideIn 0.8s ease-out forwards;
}

.formule-card:nth-child(1) { animation-delay: 0.4s; }
.formule-card:nth-child(2) { animation-delay: 0.55s; }
.formule-card:nth-child(3) { animation-delay: 0.7s; }

@keyframes cardSlideIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.formule-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--color-primary);
}

/* Recommended Badge */
.recommended-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-text-light);
    color: var(--color-black);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.4);
    z-index: 2;
}

/* Card Header */
.card-header {
    background: linear-gradient(135deg, var(--color-text-dark) 0%, #2a2a2a 100%);
    padding: 35px 30px 25px;
    text-align: center;
    position: relative;
}

.formule-card.recommended .card-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(var(--color-primary-rgb), 0.9) 100%);
}

/* Icon with Continuous 3D Bouncy Animation */
.formule-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.5);
}

.formule-card.animate-in .formule-icon {
    animation: iconBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.6s forwards,
               floatBounce 3s ease-in-out 1.4s infinite;
}

/* Different durations and delays for each card to be out of sync */
.formule-card:nth-child(1).animate-in .formule-icon {
    animation: iconBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.6s forwards,
               floatBounce 2.8s ease-in-out 1.4s infinite;
}

.formule-card:nth-child(2).animate-in .formule-icon {
    animation: iconBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.6s forwards,
               floatBounce 3.3s ease-in-out 1.7s infinite;
}

.formule-card:nth-child(3).animate-in .formule-icon {
    animation: iconBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.6s forwards,
               floatBounce 2.5s ease-in-out 2s infinite;
}

@keyframes iconBounce {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-180deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(10deg);
    }
    70% {
        transform: scale(0.9) rotate(-5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.formule-card:hover .formule-icon {
    transform: scale(1.15) rotate(10deg);
    animation-play-state: paused;
}

.formule-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-white);
}

.formule-card.recommended .formule-icon svg {
    stroke: var(--color-black);
}

.formule-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.formule-card.recommended .formule-name {
    color: var(--color-black);
}

.formule-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.4;
}

.formule-card.recommended .formule-tagline {
    color: rgba(0, 0, 0, 0.7);
}

/* Commission Display with Counter Animation */
.commission-display {
    padding: 30px 30px;
    text-align: center;
    background: var(--color-background-light);
    border-top: 3px solid var(--color-primary);
}

.commission-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-medium);
    font-weight: 600;
    margin-bottom: 12px;
}

.commission-value {
    font-size: 64px;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1;
    letter-spacing: -0.03em;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.commission-percent {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text-medium);
}

.commission-note {
    font-size: 13px;
    color: var(--color-text-medium);
    margin-top: 8px;
    font-weight: 400;
}

/* Features Section */
.card-body {
    padding: 30px 30px 25px;
    flex:1;
}

.features-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-medium);
    line-height: 1.5;
    font-weight: 400;
}

/* Plus Icon */
.feature-icon {
    min-width: 22px;
    width: 22px;
    height: 22px;
    background: rgba(var(--color-primary-rgb), 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.feature-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--color-primary);
    stroke-width: 2.5px;
}

/* Card Footer */
.card-footer {
    padding: 25px 30px 35px;
    margin-top: auto;
}

.select-button {
    width: 100%;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--color-text-dark);
    background: var(--color-text-dark);
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-outfit);
    text-decoration: none;
}

.select-button:hover {
    background: transparent;
    color: var(--color-text-dark);
    transform: translateY(-3px);
}

.formule-card.recommended .select-button {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-black);
    box-shadow: 0 6px 25px rgba(var(--color-primary-rgb), 0.3);
}

.formule-card.recommended .select-button:hover {
    background: transparent;
    color: var(--color-primary);
    box-shadow: none;
}

.select-button svg {
    transition: transform 0.3s ease;
}

.select-button:hover svg {
    transform: translateX(5px);
}

/* Bottom Section - 2 Column Layout */
.bottom-section {
    margin-top: 80px;
    opacity: 0;
    animation: fadeInUp 0.9s ease-out 1s forwards;
}

.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--color-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

/* Left Column - Brand Text */
.brand-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.brand-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(var(--color-primary-rgb), 0.8) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.3);
}

.brand-logo svg {
    width: 45px;
    height: 45px;
    stroke: var(--color-black);
}

.brand-column h3 {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.brand-column p {
    font-size: 17px;
    color: var(--color-text-medium);
    line-height: 1.7;
    font-weight: 300;
}

.brand-column .highlight {
    color: var(--color-primary);
    font-weight: 600;
}

/* Right Column - One-Liner Cards */
.benefits-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits-card {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: var(--color-background-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefits-card:hover {
  transform: translateY(-4px) scale(1.05);
  background: var(--benefit-card-hover-bg);
  border-color: var(--benefit-card-hover-border);
  box-shadow: var(--shadow-heavy);
}

.benefit-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    background: rgba(var(--color-primary-rgb), 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
}

.benefit-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.benefit-content p {
    font-size: 14px;
    color: var(--color-text-medium);
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

/* Question Section - Wide Card with Margins */
.question-section {
    margin-top: 40px;
    padding: 0 120px;
}

.question-card {
    background: linear-gradient(135deg, var(--color-text-dark) 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--shadow-soft);
}

.question-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.question-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    font-weight: 300;
    margin: 0;
}

.question-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--color-primary);
    color: var(--color-black);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-outfit);
    box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.3);
}

.question-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.4);
}

.question-button svg {
    transition: transform 0.3s ease;
}

.question-button:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .bottom-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .question-section {
        padding: 0 60px;
    }

    .question-card {
        flex-direction: column;
        text-align: center;
        padding: 35px 40px;
    }
}

@media (max-width: 768px) {
    .formules-section > * {
        padding-left: 20px;
        padding-right: 20px;
    }

    .formules-grid,
    .formules-grid.two-cards {
        grid-template-columns: 1fr;
    }

    .commission-value {
        font-size: 56px;
    }

    .commission-percent {
        font-size: 28px;
    }

    .bottom-grid {
        padding: 35px 25px;
    }

    .question-section {
        padding: 0 20px;
    }

    .question-card {
        padding: 30px 25px;
    }

    .question-content h4 {
        font-size: 18px;
    }

    .question-content p {
        font-size: 13px;
    }
}

        /* --- Who We Are Section --- */
        .who-we-are-section {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: var(--space-xl) var(--space-m);
            position: relative;
            overflow: visible;
        }

        /* Conteneur de grille principal (2 colonnes) */
        .who-we-are-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-l);
            position: relative;
            z-index: 2;
        }

        /* --- Colonne de gauche avec animations --- */
        .left-column {
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: translateX(-50px);
        }

        .left-column.animate-in {
            animation: slideInLeft 1s ease-out forwards;
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .main-title {
            font-family: var(--font-outfit);
            font-size: clamp(60px, 8vw, 100px);
            font-weight: 600;
            line-height: 0.9;
            color: var(--color-text-dark);
            margin: 0 0 var(--space-m) 0;
            letter-spacing: -0.02em;
        }

        .main-title .italic {
            font-family: var(--font-newsreader-italic);
            font-style: italic;
            font-weight: 600;
            position: relative;
            display: inline-block;
        }

        .main-title .italic::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--hero-title-underline), transparent);
        }

        .left-column.animate-in .main-title .italic::after {
            animation: underlineGrow 1s ease-out 0.5s forwards, shimmer 3s infinite 1.5s;
        }

        @keyframes underlineGrow {
            to {
                width: 100%;
            }
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .team-card {
            background: linear-gradient(135deg, var(--team-card-bg-start) 0%, var(--team-card-bg-end) 100%);
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-heavy);
            overflow: hidden;
            position: relative;
            flex: 1;
            border: 1px solid var(--team-card-border);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px var(--shadow-hover), var(--shadow-heavy);
            border-color: var(--team-card-hover-border);
        }

        .team-card-image-wrapper {
            width: 100%;
            height: 100%;
            flex: 1;
            background: linear-gradient(135deg, rgba(30, 30, 30, 1) 0%, rgba(var(--color-black-rgb), 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .team-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            transition: transform 0.6s ease;
        }

        .team-card:hover .team-card-image {
            transform: scale(1.05);
        }

        .team-card-image-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, var(--team-card-gradient) 0%, transparent 70%);
            z-index: 1;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 0.7; }
        }

        .team-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: var(--space-m);
            background: linear-gradient(to top, rgba(var(--color-black-rgb), 0.9) 0%, transparent 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 10;
            opacity: 0;
            transform: translateY(20px);
        }

        .left-column.animate-in .team-card-overlay {
            animation: fadeInUp 0.8s ease-out 0.8s forwards;
        }

        .team-card-avatar-placeholder {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--team-card-avatar-bg-start) 0%, var(--team-card-avatar-bg-end) 100%);
            border-radius: 50%;
            border: 5px solid var(--team-card-avatar-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: var(--color-black);
            box-shadow: 0 8px 30px var(--button-primary-shadow);
            transition: all 0.3s ease;
            margin-bottom: var(--space-s);
            overflow: hidden;
        }

        .team-card-avatar-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .team-card:hover .team-card-avatar-placeholder {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 40px var(--button-primary-hover-shadow);
        }

        .team-card-name {
            font-family: var(--font-outfit);
            color: var(--color-white);
            font-size: 32px;
            font-weight: 500;
            text-align: center;
            margin: 0 0 8px 0;
            letter-spacing: -0.01em;
        }

        .team-card-signature {
            font-family: var(--font-signature);
            font-size: 28px;
            color: var(--team-card-signature);
            opacity: 0.9;
            text-align: center;
            margin: 0;
        }

        /* --- Colonne de droite avec animations --- */
        .right-column {
            display: flex;
            flex-direction: column;
            gap: var(--space-m);
            opacity: 0;
            transform: translateX(50px);
        }

        .right-column.animate-in {
            animation: slideInRight 1s ease-out 0.3s forwards;
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .content-block {
            flex: 1;
            opacity: 0;
            transform: translateY(20px);
        }

        .right-column.animate-in .content-block:nth-child(1) {
            animation: fadeInUp 0.8s ease-out 0.5s forwards;
        }

        .right-column.animate-in .content-block:nth-child(3) {
            animation: fadeInUp 0.8s ease-out 0.9s forwards;
        }

        .content-block h2 {
            font-family: var(--font-outfit);
            font-size: clamp(24px, 3vw, 28px);
            color: var(--color-text-dark);
            font-weight: 600;
            margin: 0 0 var(--space-s) 0;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        .content-block p {
            font-family: var(--font-outfit);
            font-size: 16px;
            color: var(--color-text-medium);
            line-height: 1.7;
            margin: 0 0 var(--space-s) 0;
            font-weight: 300;
        }

        .info-box {
            background: linear-gradient(135deg, var(--info-box-bg-start) 0%, var(--info-box-bg-end) 100%);
            border-radius: 20px;
            padding: var(--space-m);
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .right-column.animate-in .info-box {
            opacity: 1;
            transform: translateY(0);
        }

        .info-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .info-box:hover {
            transform: translateX(4px);
            box-shadow: var(--shadow-medium);
        }

        .info-box:hover::before {
            width: 4px;
        }

        .info-box h3 {
            font-family: var(--font-outfit);
            font-size: 20px;
            color: var(--color-text-dark);
            font-weight: 600;
            margin: 0 0 var(--space-s) 0;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        .info-box p {
            font-size: 16px;
            color: var(--color-text-medium);
            line-height: 1.7;
            margin: 0;
            font-weight: 300;
        }

        /* --- Responsive --- */
        @media (max-width: 1024px) {
            .who-we-are-grid {
                grid-template-columns: 1fr;
            }
            
            .team-card {
                min-height: 600px;
            }

            .right-column {
                transform: translateX(0);
            }

            .right-column.animate-in {
                animation: fadeInUp 1s ease-out 0.5s forwards;
            }
        }

        @media (max-width: 600px) {
            .who-we-are-section {
                padding: var(--space-l) var(--space-s);
            }
            
            .main-title {
                font-size: 60px;
            }
            
            .team-card {
                min-height: 500px;
            }
        }

        /* FAQ Section */
        .faq-section {
            min-height: 50rem;
            padding: 20px 40px 120px 40px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, var(--faq-bg-start) 0%, var(--faq-bg-end) 100%);
        }

        .faq-container {
            max-width: 1480px;
            margin: 0 auto;
            position: relative;
        }

        /* Title animations */
        .faq-title {
            font-family: var(--font-outfit);
            font-size: clamp(50px, 6vw, 100px);
            font-weight: 600;
            text-align: center;
            margin: 0 0 45px;
            color: var(--color-black);
            letter-spacing: -0.02em;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .faq-subtitle {
            font-family: var(--font-manrope);
            font-size: 26px;
            text-align: center;
            color: var(--color-text-medium);
            margin: 0 auto 60px;
            max-width: 664px;
            line-height: 1.6;
            font-weight: 300;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }

        .faq-items {
            max-width: 664px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        /* FAQ Item with scroll animations */
        .faq-item {
            background: transparent;
            backdrop-filter: none;
            border: none;
            border-bottom: 1px solid rgba(var(--color-black-rgb), 0.1);
            border-radius: 0;
            padding: 28px 0;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            display: grid;
            grid-template-columns: auto 1fr auto;
            grid-template-rows: auto auto;
            gap: 0 24px;
            align-items: center;
        }

        .faq-item:first-child {
            border-top: 1px solid rgba(var(--color-black-rgb), 0.1);
        }

        .faq-item.animate-in {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Stagger animation delays */
        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.2s; }
        .faq-item:nth-child(3) { animation-delay: 0.3s; }
        .faq-item:nth-child(4) { animation-delay: 0.4s; }
        .faq-item:nth-child(5) { animation-delay: 0.5s; }
        .faq-item:nth-child(6) { animation-delay: 0.6s; }
        .faq-item:nth-child(7) { animation-delay: 0.7s; }
        .faq-item:nth-child(8) { animation-delay: 0.8s; }

        .faq-item::before {
            display: none;
        }

        .faq-item:hover {
            background: transparent;
            border-color: rgba(var(--color-black-rgb), 0.15);
            transform: translateY(0);
            box-shadow: none;
        }

        .faq-item.active {
            background: transparent;
            border-color: rgba(var(--color-black-rgb), 0.1);
            box-shadow: none;
        }

        /* Question number */
        .faq-number {
            font-family: var(--font-outfit);
            font-size: 24px;
            font-weight: 400;
            color: var(--color-black);
            grid-column: 1;
            grid-row: 1;
        }

        .faq-question {
            display: flex;
            align-items: center;
            gap: 0;
            font-family: var(--font-manrope);
            font-size: 20px;
            font-weight: 400;
            color: var(--color-black);
            grid-column: 2;
            grid-row: 1;
        }

        .faq-question span {
            flex: 1;
            line-height: 1.4;
            letter-spacing: -0.01em;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            background: var(--color-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            grid-column: 3;
            grid-row: 1;
        }

        .faq-icon path {
            transition: stroke 0.3s ease;
            stroke: var(--color-black);
        }

        .faq-item:hover .faq-icon {
            transform: scale(1.05);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            grid-column: 2 / 4;
            grid-row: 2;
        }

        .faq-answer p {
            padding: 16px 0 0 0;
            margin: 0;
            font-family: var(--font-manrope);
            font-size: 17px;
            line-height: 1.7;
            color: var(--color-text-medium);
            font-weight: 400;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
        }

        .faq-item.active .faq-answer p {
            opacity: 1;
            transform: translateY(0);
        }

        /* Images with enhanced animations */
        .faq-images {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .faq-image {
            position: absolute;
            border-radius: 16px;
            object-fit: cover;
            box-shadow: 0 8px 32px rgba(var(--color-black-rgb), 0.12);
            opacity: 0;
            transform: translateY(40px) scale(0.95);
            transition: all 0.8s ease;
        }

        .faq-image.animate-in {
            opacity: 0.9;
            transform: translateY(0) scale(1);
        }

        .faq-image:hover {
            opacity: 1;
            transform: scale(1.05) translateY(-4px);
            box-shadow: 0 12px 40px rgba(var(--color-black-rgb), 0.18);
        }

        /* Left side images: small (top) → large (middle) → medium (bottom) */
        .faq-image-1 {
            width: 220px;
            height: 200px;
            top: 100px;
            left: 20px;
            transition-delay: 0.5s;
        }

        .faq-image-2 {
            width: 340px;
            height: 300px;
            top: 360px;
            left: 00px;
            transition-delay: 1.5s;
        }

        .faq-image-3 {
            width: 260px;
            height: 240px;
            bottom: 180px;
            left: 0;
            transition-delay: 2.5s;
        }

        /* Right side images: large (top) → medium (middle) → small (bottom) */
        .faq-image-4 {
            width: 340px;
            height: 300px;
            top: 80px;
            right: 20px;
            transition-delay: 1.0s;
        }

        .faq-image-5 {
            width: 280px;
            height: 240px;
            top: 440px;
            right: 60px;
            transition-delay: 2.0s;
        }

        .faq-image-6 {
            width: 220px;
            height: 200px;
            bottom: 160px;
            right: 0;
            transition-delay: 3.0s;
        }

        /* Parallax effect on images */
        .faq-image-1, .faq-image-4 {
            transform-origin: center;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .faq-images {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 60px 20px;
            }
            
            .faq-title {
                font-size: 48px;
                margin-bottom: 30px;
            }

            .faq-subtitle {
                font-size: 18px;
                margin-bottom: 40px;
            }

            .faq-item {
                padding: 24px 0;
                gap: 16px 16px;
                grid-template-columns: auto 1fr;
            }

            .faq-number {
                font-size: 20px;
                grid-column: 1;
                grid-row: 1;
            }

            .faq-question {
                font-size: 17px;
                grid-column: 2;
                grid-row: 1;
            }

            .faq-icon {
                width: 36px;
                height: 36px;
                grid-column: 2;
                grid-row: 1;
                justify-self: end;
                margin-left: auto;
            }

            .faq-icon svg {
                width: 18px;
                height: 18px;
            }

            .faq-answer {
                grid-column: 1 / 3;
                grid-row: 2;
            }

            .faq-answer p {
                font-size: 16px;
                padding-top: 12px;
            }
        }

        @media (max-width: 480px) {
            .faq-item {
                padding: 20px 0;
                grid-template-columns: 40px 1fr 36px;
            }

            .faq-number {
                font-size: 18px;
            }

            .faq-question {
                font-size: 16px;
                grid-column: 2;
            }

            .faq-icon {
                grid-column: 3;
                width: 32px;
                height: 32px;
            }

            .faq-answer {
                grid-column: 2 / 4;
            }

            .faq-answer p {
                font-size: 15px;
            }
        }

/*-- REVIEWS SECTION --*/
.reviews-section {
    background: linear-gradient(135deg, var(--reviews-bg-start) 0%, var(--reviews-bg-end) 100%);
    padding: 10px 20px 80px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease, transform 1s ease;
}

.reviews-section.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Airbnb Logo Background */
.reviews-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    background: url("./images/airbnbGhost.svg") no-repeat center/contain;
    opacity: 1;
    transition: opacity 1.5s ease 0.5s;
    z-index: 0;
}

.reviews-section.animate-in::before {
    opacity: 1;
    animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg); 
    }
    50% { 
        transform: translate(-50%, -48%) scale(1.05) rotate(2deg); 
    }
}

/* Additional rotating gradient overlay */
.reviews-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, var(--reviews-gradient-overlay) 0%, transparent 70%);
    opacity: 0;
    max-width: 1400px;
    max-height: 1400px;
    z-index: 0;
}

.reviews-section.animate-in::after {
    opacity: 1;
    animation: rotateGradient 25s linear infinite;
}

@keyframes rotateGradient {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Floating Decorative Circles */
.floating-decorations {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--reviews-decoration-bg);
    border: 2px solid var(--reviews-decoration-border);
    opacity: 0;
    transition: opacity 1s ease;
}

.reviews-section.animate-in .decoration-circle {
    opacity: 1;
}

.decoration-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 10%;
    animation: float1 12s ease-in-out infinite 1s;
}

.decoration-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 5%;
    animation: float2 15s ease-in-out infinite 1.5s;
}

.decoration-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    animation: float3 18s ease-in-out infinite 2s;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-30px, 20px); }
    66% { transform: translate(20px, -30px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(25px, -25px); }
    66% { transform: translate(-20px, 30px); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, 15px) scale(1.1); }
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.reviews-header {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.reviews-section.animate-in .reviews-header {
    opacity: 1;
    transform: translateY(0);
}

.reviews-title {
    font-size: clamp(48px, 8vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 10px 0;
    color: var(--color-text-dark);
    font-family: var(--font-outfit);
    letter-spacing: -0.02em;
}

.reviews-title-italic {
    font-family: var(--font-newsreader-italic);
    font-style: italic;
    font-weight: 600;
    position: relative;
    display: inline-block;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(var(--color-black-rgb), 0.1); }
    50% { text-shadow: 0 0 30px rgba(var(--color-black-rgb), 0.2); }
}

.reviews-title-italic::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-text-dark), transparent);
    transition: width 1s ease 0.8s;
}

.reviews-section.animate-in .reviews-title-italic::after {
    width: 100%;
    animation: shimmerDark 3s infinite 1.8s;
}

@keyframes shimmerDark {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.reviews-subtitle {
    font-size: 16px;
    color: var(--color-text-medium);
    margin: 15px 0 30px 0;
    line-height: 1.6;
    font-family: var(--font-outfit);
}

.highlight {
    color: var(--color-text-dark);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.reviews-section.animate-in .reviews-rating {
    opacity: 1;
    transform: translateX(0);
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--reviewer-avatar-border);
    margin-left: -12px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

.reviews-section.animate-in .avatars img:nth-child(1) { 
    animation: popIn 0.5s ease 0.9s forwards;
}
.reviews-section.animate-in .avatars img:nth-child(2) { 
    animation: popIn 0.5s ease 1s forwards;
}
.reviews-section.animate-in .avatars img:nth-child(3) { 
    animation: popIn 0.5s ease 1.1s forwards;
}
.reviews-section.animate-in .avatars img:nth-child(4) { 
    animation: popIn 0.5s ease 1.2s forwards;
}
.reviews-section.animate-in .avatars img:nth-child(5) { 
    animation: popIn 0.5s ease 1.3s forwards;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.avatars img:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(var(--color-black-rgb), 0.2);
    z-index: 10;
}

.avatars img:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-white);
    border: 3px solid var(--reviewer-avatar-border);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-dark);
    font-family: var(--font-outfit);
    opacity: 0;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.reviews-section.animate-in .avatar-more {
    animation: popIn 0.5s ease 1.4s forwards;
}

.avatar-more:hover {
    transform: scale(1.15);
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rating-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
    font-family: var(--font-outfit);
}

.stars {
    color: var(--color-text-dark);
    font-size: 14px;
    letter-spacing: 2px;
}

.reviews-section.animate-in .stars {
    animation: starPulse 2s ease-in-out infinite 1.5s;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.review-badge {
    background: var(--review-badge-bg);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(var(--color-black-rgb), 0.15);
    width: fit-content;
    margin: -5rem auto 20px auto;
    font-family: var(--font-outfit);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
    position: relative;
    overflow: hidden;
}

.reviews-section.animate-in .review-badge {
    opacity: 1;
    transform: translateY(0);
}

.review-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--color-primary-rgb), 0.2), transparent);
    transition: left 0.6s ease;
}

.review-badge:hover::before {
    left: 100%;
}

.review-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(var(--color-black-rgb), 0.2);
}

.badge-icon {
    color: var(--review-badge-icon);
    font-weight: bold;
    font-size: 16px;
}

/* Reviews Slider */
.reviews-slider {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 30px;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.reviews-slider-track {
    display: flex;
    gap: 24px;
    width: fit-content;
    animation-play-state: paused;
}

.reviews-section.animate-in .reviews-slider-track {
    animation: slideReviews 35s linear infinite 1.2s;
}

@keyframes slideReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

.reviews-slider:hover .reviews-slider-track {
    animation-play-state: paused;
}

.review-card {
    background: var(--review-card-bg);
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(var(--color-black-rgb), 0.1);
    min-width: 380px;
    max-width: 380px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.review-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--review-card-border), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(var(--color-black-rgb), 0.2);
    border-color: var(--review-card-hover-border);
}

.review-card:hover::before {
    opacity: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--reviewer-avatar-border);
    transition: transform 0.3s ease;
}

.review-card:hover .reviewer-avatar {
    transform: scale(1.1) rotate(5deg);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text-dark);
    font-family: var(--font-outfit);
}

.review-stars {
    color: var(--color-primary);
    font-size: 12px;
    letter-spacing: 1px;
}

.review-card:hover .review-stars {
    animation: starShine 0.6s ease;
}

@keyframes starShine {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-medium);
    margin: 0;
    font-family: var(--font-outfit);
    font-weight: 300;
}

/* Responsive */
@media (max-width: 968px) {
    .reviews-section {
        padding: 50px 15px 60px;
        overflow-x: hidden;
    }
    
    .reviews-title {
        font-size: 48px;
    }
    
    .review-card {
        min-width: 320px;
        max-width: 320px;
        padding: 24px;
    }
    
    .decoration-circle {
        display: none;
    }
    
    .reviews-slider {
        mask-image: linear-gradient(
            to right,
            transparent,
            black 5%,
            black 95%,
            transparent
        );
        -webkit-mask-image: linear-gradient(
            to right,
            transparent,
            black 5%,
            black 95%,
            transparent
        );
    }
}

@media (max-width: 600px) {
    .reviews-section {
        padding: 40px 15px 50px;
    }
    
    .reviews-header {
        margin-bottom: 30px;
    }
    
    .reviews-rating {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .review-badge {
        margin: -3rem auto 20px auto;
    }
}

/* Contact Modal */
.contact-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 9999;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-modal.active {
  display: flex;
  animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.contact-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
}

/* Contact Form Container */
.contact-form {
  position: relative;
  background: var(--color-white);
  border-radius: 32px;
  padding: 0;
  max-width: 1200px;
  width: 100%;
  z-index: 10;
  box-shadow: 0 25px 80px -15px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  transform: scale(0.85) translateY(40px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-modal.active .contact-form {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Animated gradient border */
.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--color-yellow) 0%,
    var(--color-gold) 25%,
    var(--color-yellow) 50%,
    var(--color-gold) 75%,
    var(--color-yellow) 100%
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  z-index: 1;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
}

/* Decorative corner elements */
.contact-form::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(252, 176, 69, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.close-modal:hover {
  background: var(--color-text-light);
  border-color: var(--color-yellow);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 20px rgba(252, 176, 69, 0.3);
}

.close-modal:active {
  transform: rotate(90deg) scale(0.95);
}

.close-modal svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-text-dark);
  transition: stroke 0.3s ease;
}

.close-modal:hover svg {
  stroke: var(--color-black);
}

/* Form Image Side */
.form-image {
  background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-gold) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.form-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    transparent 50%,
    rgba(252, 176, 69, 0.2) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
  0%, 100% {
    transform: scale(1.05) translateY(0);
  }
  50% {
    transform: scale(1.08) translateY(-10px);
  }
}

.contact-form:hover .form-image img {
  transform: scale(1.1);
}

.form-image-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top left,
    rgba(252, 176, 69, 0.3) 0%,
    transparent 60%
  );
  z-index: 3;
  pointer-events: none;
  animation: overlayPulse 4s ease-in-out infinite;
}

@keyframes overlayPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Decorative shapes on image */
.form-image::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 4;
  animation: floatShape 8s ease-in-out infinite;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, -20px) scale(1.1);
  }
}

/* Form Content Side */
.form-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(32px, 5vw, 60px);
  position: relative;
  animation: contentSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

@keyframes contentSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Decorative element behind form */
.form-content::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(252, 176, 69, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  animation: bgFloat 10s ease-in-out infinite;
}

@keyframes bgFloat {
  0%, 100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-45%) scale(1.1);
  }
}

/* Form Title */
.form-title {
  font-family: var(--font-outfit);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
  animation: titleSlideIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes titleSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-title .italic {
  font-family: var(--font-newsreader-italic);
  font-style: italic;
  font-weight: 600;
  position: relative;
  display: inline-block;
  color: var(--color-yellow);
  text-shadow: 0 2px 10px rgba(252, 176, 69, 0.2);
}

.form-title .italic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-yellow), var(--color-gold));
  animation: underlineExpand 1s ease-out 0.5s forwards;
}

@keyframes underlineExpand {
  to {
    width: 100%;
  }
}

/* Form Fields */
.form-field {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 16px;
  font-family: var(--font-outfit);
  font-weight: 400;
  color: var(--color-text-dark);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  position: relative;
  animation: fieldFadeIn 0.6s ease-out backwards;
}

.form-field:nth-child(2) { animation-delay: 0.4s; }
.form-field:nth-child(3) { animation-delay: 0.5s; }
.form-field:nth-child(4) { animation-delay: 0.6s; }
.form-field:nth-child(5) { animation-delay: 0.7s; }

@keyframes fieldFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-field::placeholder {
  color: var(--color-text-medium);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.form-field:focus::placeholder {
  opacity: 0.3;
}

.form-field:focus {
  background: var(--color-white);
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 4px rgba(252, 176, 69, 0.1),
              0 8px 20px -8px rgba(252, 176, 69, 0.3);
  transform: translateY(-3px);
}

.form-field:hover:not(:focus) {
  background: var(--color-white);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

textarea.form-field {
  min-height: 130px;
  resize: none;
  font-family: var(--font-outfit);
  line-height: 1.6;
}


@keyframes buttonSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shine effect on button */
.form-content .button-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.form-content .button-primary:hover::before {
  left: 100%;
}

.form-content .button-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px -8px rgba(252, 176, 69, 0.6);
}

.form-content .button-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.form-content .button-primary svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-content .button-primary:hover svg {
  transform: translateX(6px);
}

/* Toast Notification Styles */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  max-width: 350px;
  max-height: 60px;
  background: white;
  padding: 18px 28px;
  border-radius: 14px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--color-border);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.success {
  border-color: var(--color-yellow);
  background: linear-gradient(135deg, rgba(252, 176, 69, 0.1), white);
}

.toast svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-yellow);
  flex-shrink: 0;
}

.toast span {
  font-family: var(--font-outfit);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-form {
    grid-template-columns: 1fr;
    max-width: 600px;
    border-radius: 24px;
  }
  
  .form-image {
    min-height: 250px;
    order: -1;
  }

  .form-content {
    padding: 32px 28px;
  }

  .close-modal {
    top: 16px;
    right: 16px;
  }
}

@media (max-width: 600px) {
  .contact-modal {
    padding: 15px;
  }

  .contact-form {
    padding: 0;
    max-width: 100%;
    border-radius: 20px;
  }
  
  .form-content {
    padding: 24px 20px;
    gap: 18px;
  }
  
  .form-field {
    padding: 16px 18px;
    font-size: 15px;
  }

  .close-modal {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .form-content .button-primary {
    padding: 18px 32px;
    font-size: 16px;
  }

  .toast {
    bottom: 20px;
    right: 20px;
    left: 20px;
    padding: 16px 20px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .contact-modal,
  .contact-form,
  .form-field,
  .button-primary,
  .form-image img,
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .contact-form {
    border: 3px solid var(--color-text-dark);
  }
  
  .form-field:focus {
    border-width: 3px;
  }
}

/* Toast Notifications */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-outfit);
  pointer-events: auto;
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  background: linear-gradient(135deg, #10b981, #059669);
}

.toast.error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.toast svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-modal .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-image {
    min-height: 300px;
  }
}
@media (max-width: 1024px) {
  .toast {
    right: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
  }
  
}
        /* Footer */
        .footer {
          padding: 100px 124px 50px;
          background: var(--footer-bg);
        }

        .footer-tagline {
          font-size: 3rem;
          font-weight: 400;
          color: var(--color-text-dark);
          margin: 10px 0 30px 0;
          font-family: var(--font-outfit);
          line-height: 1.4;
        }

        .footer-logo {
          background: var(--footer-logo-bg);
          border-radius: 50px;
          padding: 10px 20px;
          display: inline-flex;
          align-items: center;
          gap: 10px;
        }

        .footer-logo-img {
          width: 40px;
          height: 40px;
          object-fit: contain;
          border-radius: 8px;
          background: var(--footer-logo-img-bg);
        }

        .footer-logo-text {
          font-size: 20px;
          font-family: var(--font-outfit);
          font-weight: 500;
          color: var(--color-text-dark);
        }

        .footer-top {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 80px;
          margin-bottom: 80px;
        }

        .footer-left h2 {
          font-size: clamp(40px, 4vw, 65px);
          line-height: 100%;
          margin-bottom: 44px;
        }

        .footer-links {
          display: flex;
          gap: 50px;
        }

        .footer-link-group h3 {
          font-weight: 600;
          text-transform: uppercase;
          margin-bottom: 22px;
        }

        .footer-link-list {
          display: flex;
          flex-direction: column;
          gap: 10px;
        }

        .footer-link-list a {
          color: var(--color-black);
          text-decoration: none;
          font-size: 18px;
        }

        .footer-disclaimer {
          font-size: 14px;
          opacity: 0.5;
          margin-top: 30px;
        }

        .footer-bottom {
          padding-top: 30px;
          border-top: 1px solid var(--footer-border);
          display: flex;
          justify-content: space-between;
          align-items: center;
          flex-wrap: wrap;
          gap: 20px;
        }

        .footer-copyright {
          font-size: 18px;
        }

        .footer-legal {
          display: flex;
          gap: 17px;
          align-items: center;
        }

        .footer-legal a {
          color: var(--color-black);
          text-decoration: none;
          font-size: 18px;
        }

        /* --- Responsiveness (Tablet and Mobile) --- */
        @media (max-width: 1200px) {
          .navbar {
            flex-direction: column;
            gap: var(--space-s);
            padding: 20px;
          }
          
          .nav-links {
            gap: var(--space-s);
            flex-wrap: wrap;
          }
          
          .nav-links a { font-size: 20px; }
          .nav-logo-link { margin-bottom: var(--space-s); }
          .hero-title { font-size: clamp(2.5rem, 6vw + 1rem, 6.25rem); padding-top: 6rem; }
          
          .services-grid-main { flex-direction: column; align-items: center; }
          .services-text-col, .services-cards-col { max-width: 100%; text-align: center; align-items: center; }
          .service-card { flex-direction: column; text-align: center; padding: 20px; }
          .service-card-image-wrapper { min-width: 100%; height: 300px; }
          .service-card-text { max-width: 100%; text-align: center; align-items: center; }
          
          .footer-top { flex-direction: column; align-items: flex-start; gap: var(--space-l); }
        }

        @media (max-width: 768px) {
          :root {
            --space-s: 15px;
            --space-m: 30px;
            --space-l: 60px;
            --space-xl: 90px;
          }
          .hero-buttons { flex-direction: column; width: 100%; }
          .hero-buttons .button-primary, .hero-buttons .button-secondary { width: 100%; justify-content: center; }
          .benefit-container { flex-direction: column; gap: var(--space-s); }
          
          .footer {
            padding: 60px 20px 30px;
          }
          
          .footer-top {
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 40px;
          }
          
          .footer-left h2 {
            font-size: 32px;
            margin-bottom: 24px;
          }
          
          .footer-tagline {
            font-size: 1.5rem;
            margin: 10px 0 20px 0;
          }
          
          .footer-links {
            flex-direction: column;
            gap: 30px;
          }
          
          .footer-link-group h3 {
            font-size: 14px;
            margin-bottom: 16px;
          }
          
          .footer-link-list a {
            font-size: 16px;
          }
          
          .footer-disclaimer {
            font-size: 12px;
            margin-top: 20px;
          }
          
          .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            padding-top: 20px;
          }
          
          .footer-copyright {
            font-size: 14px;
          }
          
          .footer-legal {
            flex-wrap: wrap;
            gap: 12px;
          }
          
          .footer-legal a {
            font-size: 14px;
          }
        }
        
        @media (max-width: 480px) {
          .footer {
            padding: 40px 16px 20px;
          }
          
          .footer-left h2 {
            font-size: 28px;
          }
          
          .footer-tagline {
            font-size: 1.25rem;
          }
          
          .footer-logo {
            padding: 8px 16px;
          }
          
          .footer-logo-img {
            width: 32px;
            height: 32px;
          }
          
          .footer-logo-text {
            font-size: 16px;
          }
        }
        
        /* Services Section Mobile Order Fix */
        @media (max-width: 1200px) {
          .services-grid-main {
            display: flex;
            flex-direction: column;
          }
          
          
          .services-text-col {
            order: unset;
          }
          
          .services-cards-col {
            order: unset;
          }
        }
        .section-divider-svg svg {
  height: 160px;
}