        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: 9998;
  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 {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.mobile-menu-logo {
  display: none;
}

.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-white) !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;
  position: relative;
  z-index: 10000;
  pointer-events: auto;
  padding: 10px;
  border-radius: 4px;
  touch-action: manipulation;
  user-select: none;
}

.nav-hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.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;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .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: 75vw;
    max-width: 400px;
    background: #F5F1E9;
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 0;
    margin: 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);
    z-index: 9999;
    overflow-y: auto;
  }

  .nav-links::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
  }

  .nav-links.active::before {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-logo {
    width: 100%;
    padding: 0 0 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--navbar-border);
    text-align: center;
  }

  .mobile-menu-logo img {
    width: 180px;
    height: auto;
    display: inline-block;
  }

  .nav-links.active {
    top: -30% !important;
    right: -10% !important;
  }

  .nav-links a {
    width: 100%;
    font-size: 17px;
    padding: 18px 0;
    border-bottom: 1px solid var(--navbar-border);
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    padding-left: 10px;
    color: var(--color-accent);
  }

  .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: 100dvh;
      background-color: var(--color-background-dark);
      display: flex;
      align-items: center;
      justify-content: flex-start;
      flex-direction: column;
      padding: 160px 0 140px;
    }
    .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: 780px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 36px;
      text-align: center;
      padding: 0 48px;
      margin: 0 auto;
    }

    .hero-title {
      font-size: clamp(52px, 7vw, 96px);
      line-height: 0.95;
      margin: 0;
      font-weight: 600;
      letter-spacing: -0.04em;
      opacity: 0;
      transform: translateY(40px);
      animation: fadeInUp 1s cubic-bezier(0.32, 0.72, 0, 1) 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(17px, 1.8vw, 22px);
      max-width: 560px;
      line-height: 1.6;
      opacity: 0;
      font-weight: 400;
      color: rgba(255,255,255,0.7);
      transform: translateY(30px);
      animation: fadeInUp 1s cubic-bezier(0.32, 0.72, 0, 1) 0.55s forwards;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      margin-top: 8px;
      flex-wrap: wrap;
      justify-content: flex-start;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s cubic-bezier(0.32, 0.72, 0, 1) 0.8s 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%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }



      .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 — Bento Grid */
        .secteurs-section {
          padding: clamp(60px, 8vw, 120px) 20px;
          background: var(--color-surface);
          overflow: hidden;
          width: 100%;
          box-sizing: border-box;
        }

        .secteurs-header {
          text-align: center;
          max-width: 900px;
          margin: 0 auto clamp(40px, 5vw, 80px) auto;
          padding: 0 clamp(16px, 3vw, 40px);
        }

        .secteurs-title {
          font-size: clamp(36px, 5vw, 72px);
          line-height: 1.05;
          margin: 0 0 20px;
          font-weight: 600;
          letter-spacing: -0.03em;
          opacity: 0;
          transform: translateY(30px);
          animation: fadeInUp 0.8s cubic-bezier(0.32, 0.72, 0, 1) forwards;
        }

        .title-normal {
          font-family: var(--font-outfit);
          font-style: normal;
        }

        .title-italic {
          font-family: var(--font-newsreader-italic);
          font-style: italic;
          font-weight: 600;
        }

        .secteurs-subtitle {
          font-family: var(--font-manrope);
          font-size: clamp(15px, 1.4vw, 18px);
          color: var(--color-text-medium);
          line-height: 1.6;
          margin: 0 auto;
          max-width: 520px;
          opacity: 0;
          transform: translateY(20px);
          animation: fadeInUp 0.8s cubic-bezier(0.32, 0.72, 0, 1) 0.15s forwards;
        }

        .secteurs-content {
          position: relative;
          max-width: 1400px;
          margin: 0 auto;
          padding: 0 clamp(12px, 2vw, 24px);
        }

        /* BENTO GRID — 12-column asymmetric */
        .secteurs-bento {
          display: grid;
          grid-template-columns: repeat(12, 1fr);
          grid-auto-rows: 180px;
          gap: 20px;
          max-width: 1400px;
          margin: 0 auto;
        }

        .bento-card {
          position: relative;
          border-radius: 2rem;
          overflow: hidden;
          border: 1px solid rgba(var(--color-black-rgb), 0.06);
          background: var(--color-surface);
          opacity: 0;
          transform: translateY(40px) scale(0.97);
          animation: bentoReveal 0.9s cubic-bezier(0.32, 0.72, 0, 1) forwards;
          transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1),
                      box-shadow 0.5s cubic-bezier(0.32, 0.72, 0, 1);
          will-change: transform;
        }

        .bento-card:hover {
          transform: translateY(-6px) scale(1.01);
          box-shadow: 0 24px 60px rgba(var(--color-black-rgb), 0.08),
                      0 8px 20px rgba(var(--color-primary-rgb), 0.06);
        }

        @keyframes bentoReveal {
          to {
            opacity: 1;
            transform: translateY(0) scale(1);
          }
        }

        /* Staggered cascade delays */
        .bento-card:nth-child(1) { animation-delay: 0.08s; }
        .bento-card:nth-child(2) { animation-delay: 0.16s; }
        .bento-card:nth-child(3) { animation-delay: 0.24s; }
        .bento-card:nth-child(4) { animation-delay: 0.32s; }
        .bento-card:nth-child(5) { animation-delay: 0.40s; }
        .bento-card:nth-child(6) { animation-delay: 0.48s; }
        .bento-card:nth-child(7) { animation-delay: 0.56s; }
        .bento-card:nth-child(8) { animation-delay: 0.64s; }

        /* Grid placements — asymmetric bento */
        .bento-feature    { grid-column: 1 / 7;  grid-row: 1 / 4; }
        .bento-tall       { grid-column: 7 / 10; grid-row: 1 / 3; }
        .bento-small      { grid-column: 10 / 13; }
        .bento-card:nth-child(3) { grid-row: 1 / 2; }
        .bento-card:nth-child(4) { grid-row: 2 / 3; }
        .bento-card:nth-child(5) { grid-column: 7 / 9; grid-row: 3 / 4; }
        .bento-card:nth-child(6) { grid-column: 1 / 5; grid-row: 4 / 6; }
        .bento-wide       { grid-column: 5 / 9; grid-row: 4 / 6; }
        .bento-large-right{ grid-column: 9 / 13; grid-row: 3 / 6; }

        /* Image container */
        .bento-image {
          position: relative;
          width: 100%;
          height: 100%;
          overflow: hidden;
        }

        .bento-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1);
          display: block;
        }

        .bento-card:hover .bento-image img {
          transform: scale(1.06);
        }

        /* Perpetual micro-motion on images */
        .bento-image::after {
          content: '';
          position: absolute;
          inset: 0;
          background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 35%,
            rgba(0, 0, 0, 0.5) 100%
          );
          pointer-events: none;
          z-index: 1;
        }

        /* Overlay content */
        .bento-overlay {
          position: absolute;
          inset: 0;
          z-index: 2;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          padding: clamp(16px, 2vw, 28px);
          pointer-events: none;
        }

        .bento-location {
          display: inline-flex;
          align-items: center;
          gap: 6px;
          background: rgba(255, 255, 255, 0.95);
          padding: 8px 14px;
          border-radius: 100px;
          font-family: var(--font-outfit);
          font-size: 12px;
          font-weight: 600;
          color: var(--color-text-dark);
          backdrop-filter: blur(12px);
          letter-spacing: 0.02em;
          width: fit-content;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .bento-location svg {
          width: 16px;
          height: 16px;
          flex-shrink: 0;
          color: var(--color-text-dark);
        }

        .bento-meta {
          display: flex;
          flex-direction: column;
          gap: 8px;
        }

        .bento-name {
          font-family: var(--font-outfit);
          font-size: clamp(18px, 2vw, 28px);
          font-weight: 600;
          margin: 0;
          color: #fff;
          line-height: 1.2;
          letter-spacing: -0.02em;
          text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
        }

        .bento-feature .bento-name {
          font-size: clamp(24px, 3vw, 40px);
        }

        .bento-description {
          font-family: var(--font-manrope);
          font-size: clamp(12px, 1vw, 15px);
          line-height: 1.5;
          margin: 0;
          color: rgba(255, 255, 255, 0.85);
          max-width: 360px;
          text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
        }

        .bento-small .bento-description {
          display: none;
        }

        .bento-rating {
          display: inline-flex;
          align-items: center;
          gap: 6px;
          font-family: var(--font-outfit);
          font-size: 13px;
          font-weight: 600;
          color: #fff;
          background: rgba(255, 255, 255, 0.15);
          backdrop-filter: blur(8px);
          padding: 6px 12px;
          border-radius: 100px;
          width: fit-content;
          border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .bento-rating svg {
          width: 14px;
          height: 14px;
          color: #fbbf24;
          fill: #fbbf24;
        }

        /* Tablet — 6 column collapse */
        @media (max-width: 1024px) {
          .secteurs-bento {
            grid-template-columns: repeat(6, 1fr);
            grid-auto-rows: 160px;
            gap: 16px;
          }

          .bento-feature    { grid-column: 1 / 4; grid-row: 1 / 4; }
          .bento-tall       { grid-column: 4 / 7; grid-row: 1 / 3; }
          .bento-card:nth-child(3) { grid-column: 4 / 7; grid-row: 3 / 4; }
          .bento-card:nth-child(4) { grid-column: 1 / 3; grid-row: 4 / 5; }
          .bento-card:nth-child(5) { grid-column: 3 / 5; grid-row: 4 / 5; }
          .bento-card:nth-child(6) { grid-column: 5 / 7; grid-row: 4 / 6; }
          .bento-wide       { grid-column: 1 / 5; grid-row: 5 / 6; }
          .bento-large-right{ grid-column: 1 / 7; grid-row: 6 / 8; }
        }

        /* Mobile — single column */
        @media (max-width: 768px) {
          .secteurs-section {
            padding: 60px 16px;
          }

          .secteurs-header {
            margin-bottom: 32px;
            padding: 0;
          }

          .secteurs-title {
            font-size: 32px;
          }

          .secteurs-bento {
            grid-template-columns: 1fr;
            grid-auto-rows: 280px;
            gap: 16px;
            padding: 0;
          }

          .bento-feature,
          .bento-tall,
          .bento-small,
          .bento-wide,
          .bento-large-right,
          .bento-card:nth-child(3),
          .bento-card:nth-child(4),
          .bento-card:nth-child(5),
          .bento-card:nth-child(6) {
            grid-column: 1 / -1;
            grid-row: auto;
          }

          .bento-name {
            font-size: 22px;
          }

          .bento-feature .bento-name {
            font-size: 28px;
          }

          .bento-description {
            font-size: 14px;
            max-width: 100%;
          }

          .bento-small .bento-description {
            display: block;
          }
        }

        @media (max-width: 480px) {
          .secteurs-bento {
            grid-auto-rows: 240px;
          }

          .bento-overlay {
            padding: 16px;
          }
        }


.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-text-dark);
            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-white);
        }

        /* 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: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 700;
            color: var(--color-text-dark);
            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-text-dark);
        }

        .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: 750px;
                height: auto;
            }

            .slide-inner {
                flex-direction: column;
                height: auto;
                min-height: 750px;
            }

            .slide-image-side {
                width: 100%;
                height: 300px;
                flex-shrink: 0;
            }

            .slide-content-side {
                width: 100%;
                height: auto;
                flex: 1;
                padding: var(--space-m) var(--space-m) var(--space-l) var(--space-m);
            }

            .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-category {
                margin-bottom: 16px;
            }

            .slide-title {
                font-size: 28px;
                margin-bottom: 16px;
            }

            .slide-description {
                font-size: 16px;
                margin-bottom: 20px;
                line-height: 1.6;
            }

            .slide-link {
                margin-top: 12px;
            }

            .slideshow-nav {
                bottom: 20px;
                padding: 12px 20px;
                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-wrapper {
                min-height: 700px;
            }

            .slide-inner {
                min-height: 700px;
            }

            .slide-image-side {
                height: 250px;
            }

            .slide-content-side {
                padding: 24px 20px 60px 20px;
            }

            .slide-title {
                font-size: 24px;
                margin-bottom: 12px;
            }

            .slide-description {
                font-size: 15px;
                margin-bottom: 16px;
            }

            .slideshow-nav {
                bottom: 16px;
                padding: 10px 16px;
                gap: 10px;
            }

            .nav-button {
                width: 38px;
                height: 38px;
            }

            .slide-indicators {
                gap: 6px;
            }

            .indicator {
                width: 8px;
                height: 8px;
            }

            .indicator.active {
                width: 24px;
            }
        }

        /* --- Prices Section --- */

.formules-section {
  background-color: var(--color-text-dark);
  position: relative;
  width: 100%;
  padding: 120px 0 100px;
  overflow: hidden;
}

.formules-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}


/* 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 */
.formules-section .section-header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.9s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

.formules-section .section-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 auto 20px auto;
}

.formules-section .section-title {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 600;
    color: var(--color-white);
    margin: 0 auto 20px auto;
    letter-spacing: -0.03em;
    line-height: 1.05;
    max-width: 700px;
}

.formules-section .section-title .italic {
    font-family: var(--font-newsreader-italic);
    font-style: italic;
    font-weight: 500;
    position: relative;
    display: inline-block;
    color: var(--color-accent);
}

.formules-section .section-description {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.formules-section .guarantee-badge {
    margin-top: 32px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--color-white);
    box-shadow: none;
}

@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-white);
    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: 1fr;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    align-items: stretch;
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.32, 0.72, 0, 1) 0.3s forwards;
}

/* Individual Card */
.formule-card {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.03);
    border-radius: 24px;
    padding: 0;
    height: auto;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.32, 0.72, 0, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.formule-card.animate-in {
    animation: cardSlideIn 0.8s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

@keyframes cardSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.formule-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
}

/* Recommended Badge */
.recommended-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-primary);
    color: var(--color-text-dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}

/* Coming Soon Badge */
.coming-soon-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-accent);
    color: var(--color-white);
    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-accent-rgb), 0.4);
    z-index: 2;
}

/* Card Header */
.card-header {
    background: transparent;
    padding: 40px 40px 30px;
    text-align: left;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.formule-card.recommended .card-header {
    background: transparent;
}

/* 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-white);
}

.formule-name {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.formule-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    line-height: 1.6;
    max-width: 100%;
}

/* Commission Display with Counter Animation */
.commission-display {
    padding: 32px 40px;
    text-align: left;
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--color-primary);
    border-top: none;
}

.commission-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    margin-bottom: 12px;
}

.commission-value {
    font-size: 64px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: -0.04em;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.commission-percent {
    font-size: 28px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
}

.commission-note {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
    font-weight: 400;
}

/* Features Section */
.card-body {
    padding: 32px 40px;
    flex:1;
}

.features-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-medium);
    line-height: 1.6;
    font-weight: 400;
}

.feature-item span {
    padding-top: 1px;
}

/* 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;
}
select.form-field:focus {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23D4AF37' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.feature-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--color-primary);
    stroke-width: 2.5px;
}

/* Card Footer */
.card-footer {
    padding: 0 40px 40px;
    margin-top: auto;
}

.select-button {
    width: 100%;
    padding: 18px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.15);
    background: var(--color-white);
    color: var(--color-text-dark);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-outfit);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.select-button:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-dark);
    transform: translateY(-2px);
}

.select-button svg {
    transition: transform 0.3s ease;
}

.select-button:hover svg {
    transform: translateX(5px);
}

/* Bottom Section - 2 Column Layout */
.bottom-section {
    margin-top: 100px;
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.32, 0.72, 0, 1) 1s forwards;
}

.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

/* Left Column - Brand Text */
.brand-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-logo {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.brand-logo svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
}

.brand-column h3 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.brand-column p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    font-weight: 400;
}

.brand-column .highlight {
    color: var(--color-primary);
    font-weight: 500;
}

/* Right Column - One-Liner Cards */
.benefits-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    border: 1px solid rgba(255,255,255,0.06);
}

.benefits-card:hover {
  transform: translateX(4px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}

.benefit-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary);
}

.benefit-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.benefit-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

/* Question Section - Wide Card with Margins */
.question-section {
    margin-top: 60px;
    padding: 0;
}

.question-card {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid rgba(255,255,255,0.08);
}

.question-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.question-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

.question-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--color-primary);
    color: var(--color-text-dark);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    font-family: var(--font-outfit);
    border: none;
}

.question-button:hover {
    transform: translateY(-2px);
    background: var(--color-accent);
}

.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-card {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .formules-section {
        padding: 80px 0 60px;
    }

    .formules-section > * {
        padding-left: 20px;
        padding-right: 20px;
    }

    .formules-grid,
    .formules-grid.two-cards {
        grid-template-columns: 1fr;
    }

    .commission-value {
        font-size: 48px;
    }

    .commission-percent {
        font-size: 24px;
    }

    .card-header, .card-body, .card-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .question-card {
        padding: 28px 24px;
    }

    .question-content h4 {
        font-size: 18px;
    }

    .question-content p {
        font-size: 14px;
    }
}

        /* --- Who We Are Section — Premium Editorial Redesign --- */
        .who-we-are-section {
            background: var(--color-background-light);
            position: relative;
            overflow: hidden;
            padding: 120px 0 140px;
        }

        .who-we-are-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
            pointer-events: none;
            opacity: 0.6;
        }

        .about-editorial-wrapper {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--space-m);
            position: relative;
            z-index: 1;
        }

        /* Eyebrow tag */
        .about-eyebrow {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-family: var(--font-outfit);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--color-primary);
            margin: 0 auto 28px auto;
            width: fit-content;
            opacity: 0;
            transform: translateY(16px);
        }

        .about-eyebrow.animate-in {
            animation: fadeInUp 0.7s cubic-bezier(0.32, 0.72, 0, 1) forwards;
        }

        .about-eyebrow-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--color-primary);
            animation: eyebrowPulse 2.5s ease-in-out infinite;
        }

        @keyframes eyebrowPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.3); }
        }

        /* Headline */
        .about-headline {
            font-family: var(--font-outfit);
            font-size: clamp(42px, 6vw, 80px);
            font-weight: 600;
            line-height: 1.05;
            color: var(--color-text-dark);
            text-align: center;
            margin: 0 auto 80px;
            letter-spacing: -0.03em;
            max-width: 900px;
            opacity: 0;
            transform: translateY(30px);
        }

        .about-headline.animate-in {
            animation: fadeInUp 0.9s cubic-bezier(0.32, 0.72, 0, 1) 0.1s forwards;
        }

        .about-headline .italic {
            font-family: var(--font-newsreader-italic);
            font-style: italic;
            font-weight: 500;
            position: relative;
            display: inline-block;
        }

        .about-headline .italic::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent), transparent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.8s cubic-bezier(0.32, 0.72, 0, 1) 0.6s;
        }

        .about-headline.animate-in .italic::after {
            transform: scaleX(1);
        }

        /* Editorial Grid: Asymmetric Split */
        .about-editorial-grid {
            display: grid;
            grid-template-columns: 5fr 7fr;
            gap: 80px;
            align-items: start;
            margin-bottom: 100px;
        }

        /* Double-Bezel Image Frame */
        .about-image-shell {
            position: relative;
            padding: 10px;
            background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.08) 0%, rgba(var(--color-accent-rgb), 0.04) 100%);
            border-radius: 28px;
            border: 1px solid rgba(var(--color-primary-rgb), 0.12);
            opacity: 0;
            transform: translateX(-40px);
        }

        .about-image-shell.animate-in {
            animation: slideInLeft 1s cubic-bezier(0.32, 0.72, 0, 1) 0.2s forwards;
        }

        .about-image-core {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: var(--color-text-dark);
            box-shadow:
                inset 0 1px 1px rgba(255, 255, 255, 0.08),
                0 20px 60px rgba(var(--color-black-rgb), 0.12);
        }

        .about-image-core img {
            width: 100%;
            height: auto;
            aspect-ratio: 4/5;
            object-fit: cover;
            display: block;
            transition: transform 0.8s cubic-bezier(0.32, 0.72, 0, 1);
        }

        .about-image-shell:hover .about-image-core img {
            transform: scale(1.03);
        }

        .about-image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 24px 24px;
            background: linear-gradient(to top, rgba(var(--color-black-rgb), 0.85) 0%, transparent 100%);
        }

        .about-image-caption span {
            font-family: var(--font-outfit);
            font-size: 14px;
            font-weight: 500;
            color: var(--color-white);
            letter-spacing: 0.02em;
        }

        /* Story Content */
        .about-story {
            padding-top: 20px;
            opacity: 0;
            transform: translateX(40px);
        }

        .about-story.animate-in {
            animation: slideInRight 1s cubic-bezier(0.32, 0.72, 0, 1) 0.35s forwards;
        }

        .about-lead {
            font-family: var(--font-outfit);
            font-size: clamp(20px, 2vw, 24px);
            font-weight: 500;
            color: var(--color-text-dark);
            line-height: 1.6;
            margin: 0 0 28px 0;
            letter-spacing: -0.01em;
        }

        .about-body {
            font-family: var(--font-manrope);
            font-size: 17px;
            color: var(--color-text-medium);
            line-height: 1.8;
            margin: 0 0 20px 0;
            font-weight: 400;
        }

        .about-body:last-of-type {
            margin-bottom: 48px;
        }

        /* Pillars */
        .about-pillars {
            display: flex;
            flex-direction: column;
            gap: 28px;
            border-top: 1px solid var(--color-border);
            padding-top: 36px;
        }

        .about-pillar {
            position: relative;
            padding-left: 20px;
        }

        .about-pillar-line {
            position: absolute;
            left: 0;
            top: 4px;
            bottom: 4px;
            width: 3px;
            background: var(--color-primary);
            border-radius: 2px;
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
        }

        .about-story.animate-in .about-pillar:nth-child(1) .about-pillar-line {
            animation: pillarGrow 0.5s cubic-bezier(0.32, 0.72, 0, 1) 0.7s forwards;
        }
        .about-story.animate-in .about-pillar:nth-child(2) .about-pillar-line {
            animation: pillarGrow 0.5s cubic-bezier(0.32, 0.72, 0, 1) 0.85s forwards;
        }
        .about-story.animate-in .about-pillar:nth-child(3) .about-pillar-line {
            animation: pillarGrow 0.5s cubic-bezier(0.32, 0.72, 0, 1) 1s forwards;
        }

        @keyframes pillarGrow {
            to { transform: scaleY(1); }
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .about-pillar h4 {
            font-family: var(--font-outfit);
            font-size: 16px;
            font-weight: 600;
            color: var(--color-text-dark);
            margin: 0 0 6px 0;
            letter-spacing: -0.01em;
        }

        .about-pillar p {
            font-family: var(--font-manrope);
            font-size: 15px;
            color: var(--color-text-medium);
            line-height: 1.6;
            margin: 0;
        }

        /* Stats Bar */
        .about-stats-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            background: var(--color-white);
            border-radius: 24px;
            padding: 48px 40px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(var(--color-black-rgb), 0.06);
            opacity: 0;
            transform: translateY(30px);
        }

        .about-stats-bar.animate-in {
            animation: fadeInUp 0.8s cubic-bezier(0.32, 0.72, 0, 1) 0.5s forwards;
        }

        .about-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 0 48px;
            flex: 1;
            text-align: center;
        }

        .about-stat-number {
            font-family: var(--font-outfit);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 600;
            color: var(--color-text-dark);
            letter-spacing: -0.03em;
            line-height: 1;
        }

        .about-stat-label {
            font-family: var(--font-manrope);
            font-size: 14px;
            font-weight: 500;
            color: var(--color-text-medium);
            letter-spacing: 0.02em;
        }

        .about-stat-divider {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, transparent, var(--color-border), transparent);
            flex-shrink: 0;
        }

        /* --- Responsive --- */
        @media (max-width: 1024px) {
            .who-we-are-section {
                padding: 80px 0 100px;
            }

            .about-editorial-grid {
                grid-template-columns: 1fr;
                gap: 48px;
                margin-bottom: 60px;
            }

            .about-image-shell {
                max-width: 480px;
                margin: 0 auto;
                width: 100%;
            }

            .about-headline {
                margin-bottom: 48px;
            }

            .about-story {
                padding-top: 0;
            }

            .about-stats-bar {
                flex-wrap: wrap;
                gap: 32px;
                padding: 36px 24px;
            }

            .about-stat {
                padding: 0 24px;
                min-width: 120px;
            }

            .about-stat-divider {
                display: none;
            }
        }

        @media (max-width: 600px) {
            .who-we-are-section {
                padding: 60px 0 80px;
            }

            .about-editorial-wrapper {
                padding: 0 var(--space-s);
            }

            .about-headline {
                font-size: clamp(32px, 8vw, 42px);
                margin-bottom: 36px;
            }

            .about-image-shell {
                padding: 6px;
                border-radius: 20px;
            }

            .about-image-core {
                border-radius: 14px;
            }

            .about-pillars {
                gap: 20px;
                padding-top: 28px;
            }

            .about-stats-bar {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
                padding: 28px 20px;
            }

            .about-stat {
                padding: 0;
            }

            .about-stat-number {
                font-size: 28px;
            }
        }

        /* FAQ Section — Premium Asymmetric Redesign */
        .faq-section {
            padding: clamp(80px, 10vw, 140px) 20px;
            background: var(--color-background-light);
            position: relative;
            overflow: hidden;
        }

        .faq-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .faq-title {
            font-family: var(--font-outfit);
            font-size: clamp(42px, 5vw, 72px);
            font-weight: 600;
            text-align: center;
            margin: 0 auto 20px;
            color: var(--color-text-dark);
            letter-spacing: -0.03em;
            line-height: 1.05;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s cubic-bezier(0.32, 0.72, 0, 1) forwards;
        }

        .faq-subtitle {
            font-family: var(--font-manrope);
            font-size: 17px;
            text-align: center;
            color: var(--color-text-medium);
            max-width: 520px;
            margin: 0 auto 80px;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s cubic-bezier(0.32, 0.72, 0, 1) 0.15s forwards;
        }

        /* Asymmetric 2-column layout */
        .faq-layout {
            display: grid;
            grid-template-columns: 2fr 3fr;
            gap: 60px;
            align-items: start;
        }

        /* Left visual column */
        .faq-visual {
            position: sticky;
            top: 120px;
        }

        .faq-visual-image {
            width: 100%;
            aspect-ratio: 3/4;
            border-radius: 2rem;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(var(--color-black-rgb), 0.06);
            box-shadow: 0 20px 60px rgba(var(--color-black-rgb), 0.08);
        }

        .faq-visual-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1);
        }

        .faq-visual-image:hover img {
            transform: scale(1.04);
        }

        .faq-visual-badge {
            position: absolute;
            bottom: 24px;
            left: 24px;
            right: 24px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 20px 24px;
            border-radius: 1.25rem;
            border: 1px solid rgba(var(--color-black-rgb), 0.06);
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 8px 24px rgba(var(--color-black-rgb), 0.06);
        }

        .faq-badge-number {
            font-family: var(--font-outfit);
            font-size: 32px;
            font-weight: 600;
            color: var(--color-primary);
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .faq-badge-label {
            font-family: var(--font-manrope);
            font-size: 13px;
            font-weight: 500;
            color: var(--color-text-medium);
            line-height: 1.4;
        }

        /* FAQ Accordion */
        .faq-items {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--color-surface);
            border: 1px solid rgba(var(--color-black-rgb), 0.06);
            border-radius: 1.5rem;
            padding: 0;
            cursor: pointer;
            transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1),
                        box-shadow 0.5s cubic-bezier(0.32, 0.72, 0, 1),
                        border-color 0.4s ease;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px) scale(0.98);
        }

        .faq-item.animate-in {
            animation: faqItemReveal 0.7s cubic-bezier(0.32, 0.72, 0, 1) forwards;
        }

        @keyframes faqItemReveal {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .faq-item:nth-child(1) { animation-delay: 0.08s; }
        .faq-item:nth-child(2) { animation-delay: 0.16s; }
        .faq-item:nth-child(3) { animation-delay: 0.24s; }
        .faq-item:nth-child(4) { animation-delay: 0.32s; }
        .faq-item:nth-child(5) { animation-delay: 0.40s; }
        .faq-item:nth-child(6) { animation-delay: 0.48s; }
        .faq-item:nth-child(7) { animation-delay: 0.56s; }
        .faq-item:nth-child(8) { animation-delay: 0.64s; }

        .faq-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(var(--color-black-rgb), 0.06);
            border-color: rgba(var(--color-black-rgb), 0.1);
        }

        .faq-item.active {
            border-color: rgba(var(--color-primary-rgb), 0.15);
            box-shadow: 0 24px 60px rgba(var(--color-black-rgb), 0.08),
                        0 8px 20px rgba(var(--color-primary-rgb), 0.04);
            transform: translateY(-2px);
        }

        .faq-question-row {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 20px;
            align-items: center;
            padding: 24px 28px;
        }

        .faq-number {
            font-family: var(--font-outfit);
            font-size: 13px;
            font-weight: 600;
            color: var(--color-primary);
            background: rgba(var(--color-primary-rgb), 0.08);
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            letter-spacing: 0.02em;
            flex-shrink: 0;
        }

        .faq-question {
            font-family: var(--font-outfit);
            font-size: 16px;
            font-weight: 500;
            color: var(--color-text-dark);
            line-height: 1.4;
            letter-spacing: -0.01em;
        }

        .faq-question span {
            display: block;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(var(--color-black-rgb), 0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1),
                        background 0.3s ease;
        }

        .faq-icon svg {
            width: 14px;
            height: 14px;
            color: var(--color-text-dark);
            transition: color 0.3s ease;
        }

        .faq-icon svg path {
            stroke: currentColor;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            background: var(--color-primary);
        }

        .faq-item.active .faq-icon svg {
            color: var(--color-white);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.32, 0.72, 0, 1);
        }

        .faq-answer p {
            padding: 0 28px 24px 84px;
            margin: 0;
            font-family: var(--font-manrope);
            font-size: 15px;
            line-height: 1.7;
            color: var(--color-text-medium);
            opacity: 0;
            transform: translateY(-8px);
            transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
        }

        .faq-item.active .faq-answer p {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .faq-layout {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .faq-visual {
                position: relative;
                top: 0;
                max-width: 400px;
                margin: 0 auto;
            }

            .faq-visual-image {
                aspect-ratio: 4/3;
            }

            .faq-subtitle {
                margin-bottom: 48px;
            }
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 60px 16px;
            }

            .faq-title {
                font-size: 32px;
            }

            .faq-subtitle {
                font-size: 15px;
                margin-bottom: 40px;
            }

            .faq-item {
                border-radius: 1.25rem;
            }

            .faq-question-row {
                padding: 20px;
                gap: 14px;
            }

            .faq-question {
                font-size: 15px;
            }

            .faq-number {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }

            .faq-answer p {
                padding: 0 20px 20px 66px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .faq-visual-badge {
                padding: 14px 18px;
                gap: 12px;
            }

            .faq-badge-number {
                font-size: 24px;
            }

            .faq-badge-label {
                font-size: 12px;
            }
        }

/*-- REVIEWS SECTION — Premium Slider Redesign --*/
.reviews-section {
    background: linear-gradient(135deg, var(--reviews-bg-start) 0%, var(--reviews-bg-end) 100%);
    padding: clamp(80px, 10vw, 140px) 20px;
    position: relative;
    overflow: hidden;
}

/* Subtle background texture */
.reviews-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(var(--color-white-rgb), 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(var(--color-white-rgb), 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 60px;
}

.reviews-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 600;
    line-height: 1.05;
    margin: 0 0 16px 0;
    color: var(--color-white);
    font-family: var(--font-outfit);
    letter-spacing: -0.03em;
}

.reviews-title-italic {
    font-family: var(--font-newsreader-italic);
    font-style: italic;
    font-weight: 600;
}

.reviews-subtitle {
    font-size: 17px;
    color: rgba(var(--color-white-rgb), 0.8);
    margin: 0;
    line-height: 1.6;
    font-family: var(--font-manrope);
    max-width: 400px;
}

/* Rating aggregate */
.reviews-rating {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(var(--color-white-rgb), 0.3);
    margin-left: -12px;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.reviews-section.animate-in .avatars img:nth-child(1) { animation: popIn 0.5s cubic-bezier(0.32, 0.72, 0, 1) 0.5s forwards; }
.reviews-section.animate-in .avatars img:nth-child(2) { animation: popIn 0.5s cubic-bezier(0.32, 0.72, 0, 1) 0.6s forwards; }
.reviews-section.animate-in .avatars img:nth-child(3) { animation: popIn 0.5s cubic-bezier(0.32, 0.72, 0, 1) 0.7s forwards; }
.reviews-section.animate-in .avatars img:nth-child(4) { animation: popIn 0.5s cubic-bezier(0.32, 0.72, 0, 1) 0.8s forwards; }
.reviews-section.animate-in .avatars img:nth-child(5) { animation: popIn 0.5s cubic-bezier(0.32, 0.72, 0, 1) 0.9s forwards; }

@keyframes popIn {
    0% { opacity: 0; transform: scale(0); }
    60% { transform: scale(1.15); }
    100% { opacity: 1; transform: scale(1); }
}

.avatars img:hover {
    transform: scale(1.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 rgba(var(--color-white-rgb), 0.3);
    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);
}

.reviews-section.animate-in .avatar-more {
    animation: popIn 0.5s cubic-bezier(0.32, 0.72, 0, 1) 1.0s forwards;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rating-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    font-family: var(--font-outfit);
    letter-spacing: -0.01em;
}

.stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 2px;
}

.reviews-section.animate-in .stars {
    animation: starPulse 2s ease-in-out infinite 1.2s;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Reviews Slider */
.reviews-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.reviews-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1);
    will-change: transform;
    cursor: grab;
}

.reviews-slider-track:active {
    cursor: grabbing;
}

.reviews-slider-track.dragging {
    transition: none;
}

/* Review Card */
.review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    background: var(--review-card-bg);
    border-radius: 2rem;
    border: 1px solid rgba(var(--color-white-rgb), 0.1);
    box-shadow: 0 4px 20px rgba(var(--color-black-rgb), 0.08);
    transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1),
                box-shadow 0.5s cubic-bezier(0.32, 0.72, 0, 1),
                border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 60px rgba(var(--color-black-rgb), 0.12),
                0 8px 20px rgba(var(--color-primary-rgb), 0.06);
    border-color: rgba(var(--color-white-rgb), 0.2);
}

.review-card-inner {
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 260px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(var(--color-primary-rgb), 0.3);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.review-card:hover .reviewer-avatar {
    transform: scale(1.08);
}

.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);
    letter-spacing: -0.01em;
}

.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: 15px;
    line-height: 1.7;
    color: var(--color-text-medium);
    margin: 0;
    font-family: var(--font-manrope);
    font-weight: 400;
    flex: 1;
}

/* Slider Navigation */
.reviews-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.reviews-nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(var(--color-white-rgb), 0.1);
    border: 1px solid rgba(var(--color-white-rgb), 0.15);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.reviews-nav-btn:hover {
    background: rgba(var(--color-white-rgb), 0.2);
    border-color: rgba(var(--color-white-rgb), 0.3);
    transform: scale(1.08);
}

.reviews-nav-btn:active {
    transform: scale(0.96);
}

.reviews-nav-btn svg {
    width: 20px;
    height: 20px;
}

.reviews-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(var(--color-white-rgb), 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    padding: 0;
}

.reviews-dot:hover {
    background: rgba(var(--color-white-rgb), 0.5);
}

.reviews-dot.active {
    width: 32px;
    border-radius: 4px;
    background: var(--color-white);
}

/* Responsive */
@media (max-width: 1024px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .review-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 16px;
    }

    .reviews-header {
        margin-bottom: 40px;
    }

    .reviews-title {
        font-size: 32px;
    }

    .review-card {
        flex: 0 0 100%;
    }
    
    .review-card-inner {
        padding: 24px;
        min-height: auto;
    }
    
    .reviews-nav-btn {
        width: 44px;
        height: 44px;
    }
    
    .reviews-slider-nav {
        margin-top: 32px;
    }
}

/* 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);
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Custom scrollbar for modal on mobile */
.contact-form::-webkit-scrollbar {
  width: 6px;
}

.contact-form::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.contact-form::-webkit-scrollbar-thumb {
  background: var(--color-yellow);
  border-radius: 10px;
}

.contact-form::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

.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-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
  font-family: var(--font-outfit);
  font-weight: 400;
  color: var(--color-text-dark);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  position: relative;
  animation: fieldFadeIn 0.6s ease-out backwards;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.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: #9ca3af;
  opacity: 1;
  transition: all 0.3s ease;
  font-weight: 400;
}

.form-field:focus::placeholder {
  opacity: 0.5;
  transform: translateX(4px);
}

.form-field:focus {
  background: var(--color-white);
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(252, 176, 69, 0.08),
              0 4px 16px rgba(252, 176, 69, 0.15);
  transform: translateY(-1px);
}

.form-field:hover:not(:focus) {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

textarea.form-field {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-outfit);
  line-height: 1.6;
  padding-top: 14px;
}

select.form-field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 48px;
  cursor: pointer;
}


select.form-field option {
  padding: 12px;
  background: var(--color-white);
  color: var(--color-text-dark);
}


@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: #F5F1E9;
  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-modal {
    padding: 20px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .contact-form {
    grid-template-columns: 1fr;
    max-width: 600px;
    max-height: calc(100vh - 40px);
    border-radius: 24px;
    overflow-y: auto;
    overflow-x: hidden;
    margin: auto 0;
  }

  .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: 20px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .contact-form {
    padding: 0;
    max-width: 100%;
    max-height: calc(100vh - 40px);
    border-radius: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    margin: auto 0;
  }

  .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;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .contact-modal {
    padding: 16px;
  }

  .contact-form {
    max-height: calc(100vh - 32px);
    border-radius: 16px;
  }

  .form-content {
    padding: 20px 16px;
    gap: 16px;
  }

  .form-field {
    padding: 14px 16px;
    font-size: 14px;
  }

  .close-modal {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .close-modal svg {
    width: 20px;
    height: 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: 2rem;
          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: 80px;
          height: 60px;
          object-fit: contain;
          border-radius: 8px;
        }

        .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-text-dark);
          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-text-dark);
          text-decoration: none;
          font-size: 18px;
        }

        /* --- Responsiveness (Tablet and Mobile) --- */
        @media (max-width: 1200px) {
          .navbar {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            gap: var(--space-s);
            padding: 20px;
          }
          
          
          .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: 48px;
            height: 48px;
          }
          
          .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;
}

/* ============================================================
   DESIGN SYSTEM REFINEMENTS — Anti-Template Overrides
   ============================================================ */

/* FAQ Overrides */
.faq-section {
    padding: 120px 0 140px !important;
    min-height: auto !important;
    background: var(--color-background-light) !important;
}

.faq-container {
    max-width: var(--max-width) !important;
    padding: 0 var(--space-m) !important;
}

.faq-title {
    text-align: center !important;
    font-size: clamp(42px, 6vw, 72px) !important;
    font-weight: 600 !ivar(--space-m) !important;
    gap: 60px !important;
}

.footer-left {
    max-width: 400px !important;
}

.footer-left h2 {
    font-size: clamp(28px, 3vw, 36px) !important;
    font-weight: 600 !important;
    color: var(--color-white) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 16px !important;
}

.footer-tagline {
    font-size: 15px !important;
    color: rgba(255,255,255,0.5) !important;
    line-height: 1.6 !important;
    margin: 0 0 24px 0 !important;
}

.footer-logo {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.footer-logo-img {
    width: 120px !important;
    height: auto !important;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-links {
    gap: 60px !important;
}

.footer-link-group h3 {
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    color: rgba(255,255,255,0.4) !important;
    margin-bottom: 20px !important;
}

.footer-link-list a {
    font-size: 15px !important;
    color: rgba(255,255,255,0.7) !important;
    transition: color 0.3s ease !important;
}

.footer-link-list a:hover {
    color: var(--color-white) !important;
}

.footer-bottom {
    max-width: var(--max-width) !important;
    margin: 60px auto 0 !important;
    padding: 24px var(--space-m) 0 !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
}

.footer-copyright {
    font-size: 14px !important;
    color: rgba(255,255,255,0.4) !important;
}

.footer-legal a {
    font-size: 14px !important;
    color: rgba(255,255,255,0.4) !important;
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.7) !important;
}

.footer-contact a {
    font-size: 14px !important;
    color: rgba(255,255,255,0.5) !important;
}

.footer-social a {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    transition: all 0.3s ease !important;
}

.footer-social a:hover {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    opacity: 1 !important;
}

/* Blog Header Left Align */
.blog-header {
    text-align: center !important;
    margin-bottom: 60px !important;
}

.blog-title {
    letter-spacing: -0.03em !important;
}

.blog-subtitle {
    margin: 0 auto !important;
}

/* Services Header Left Align */
.services-timeline-section .section-header {
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: var(--max-width) !important;
    margin: 0 auto 60px !important;
    padding: 0 20px !important;
}

.services-timeline-section .section-title {
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.services-timeline-section .section-subtitle {
    margin: 0 auto !important;
    max-width: 520px !important;
}

/* Global Button Refinements */
.button-primary {
    border-radius: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em !important;
}

.button-secondary {
    border-radius: 12px !important;
    font-weight: 500 !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column !important;
        gap: 40px !important;
    }
    
    .faq-title {
        font-size: 42px !important;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 0 var(--space-s) !important;
    }
    
    .footer-bottom {
        padding: 20px var(--space-s) 0 !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .faq-title {
        font-size: 36px !important;
    }
    
    .faq-question {
        font-size: 16px !important;
    }
}

/* Stitch Taste Hero Redesign */
.navbar {
    top: clamp(1rem, 2vw, 1.5rem);
    width: min(calc(100% - clamp(2rem, 6vw, 5rem)), 1320px);
    min-height: 74px;
    padding: 10px 12px 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(251, 248, 243, 0.16);
    background:
        linear-gradient(135deg, rgba(251, 248, 243, 0.12), rgba(251, 248, 243, 0.035)),
        rgba(24, 24, 27, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 18px 60px rgba(7, 6, 5, 0.22);
    backdrop-filter: blur(24px) saturate(1.18);
    -webkit-backdrop-filter: blur(24px) saturate(1.18);
}

.navbar::before {
    display: none;
}

.nav-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 172px;
    height: 50px;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
}

.nav-logo {
    height: 38px;
    max-width: 136px;
}

.nav-links {
    gap: 2px;
    min-height: 50px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(12, 13, 13, 0.2);
    box-shadow: inset 0 0 0 1px rgba(251, 248, 243, 0.08);
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 15px;
    border-radius: 999px;
    color: rgba(251, 248, 243, 0.76);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0 !important;
    transition: color 0.28s cubic-bezier(0.32, 0.72, 0, 1), background 0.28s cubic-bezier(0.32, 0.72, 0, 1), transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
}

.nav-links a::before {
    display: none;
}

.nav-links a:hover {
    color: #fbf8f3;
    background: rgba(251, 248, 243, 0.1);
    transform: translate3d(0, -1px, 0);
}

.nav-links a:active {
    transform: translate3d(0, 1px, 0);
}

.nav-contact-btn {
    min-height: 42px;
    margin-left: 4px;
    padding: 0 22px !important;
    border-radius: 999px !important;
    background: #c79a77 !important;
    color: #18181b !important;
    box-shadow: none;
    font-weight: 700 !important;
}

.nav-call-btn {
    min-height: 42px;
    margin-left: 4px;
    padding: 0 20px !important;
    border-radius: 999px !important;
    background: rgba(251, 248, 243, 0.94) !important;
    color: #18181b !important;
    box-shadow: inset 0 0 0 1px rgba(24, 24, 27, 0.08);
    font-weight: 800 !important;
}

.nav-call-btn:hover {
    background: #ffffff !important;
    color: #18181b !important;
    box-shadow: inset 0 0 0 1px rgba(24, 24, 27, 0.12);
}

.nav-contact-btn:hover {
    background: #d2a985 !important;
    color: #18181b !important;
    box-shadow: none;
}

.nav-hamburger {
    appearance: none;
    border: 0;
    background: rgba(251, 248, 243, 0.92);
    width: 48px;
    height: 48px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav-hamburger span {
    width: 18px;
    height: 2px;
    background: #18181b;
}

.hero-section {
    position: relative;
    min-height: 100dvh;
    display: block;
    padding: 0;
    background: #18181b;
    overflow: hidden;
    isolation: isolate;
}

.hero-section + .section-divider-svg {
    position: relative;
    z-index: 2;
    margin-top: -3.5rem !important;
}

.hero-shell {
    position: relative;
    z-index: 2;
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: clamp(8rem, 12vw, 11rem) clamp(1.25rem, 4vw, 3.5rem) clamp(5rem, 8vw, 7rem);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.hero-content {
    max-width: 820px;
    margin: 0;
    padding: 0;
    align-items: flex-start;
    text-align: left;
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

.hero-kicker {
    margin: 0;
    color: rgba(250, 248, 246, 0.68);
    font-size: clamp(0.82rem, 1vw, 0.95rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}

.hero-title {
    display: grid;
    gap: 0.04em;
    font-size: clamp(2.7rem, 6.8vw, 6.55rem);
    line-height: 0.94;
    letter-spacing: 0 !important;
    font-weight: 700;
    color: #fbf8f3;
    max-width: 840px;
    padding: 0 !important;
}

.hero-title > span,
.hero-title-word {
    display: block;
}

.hero-title-line {
    display: inline-flex !important;
    align-items: center;
    gap: clamp(0.45rem, 1vw, 0.95rem);
    max-width: 100%;
    white-space: nowrap;
}

.hero-inline-media {
    display: inline-flex;
    width: clamp(5.75rem, 11vw, 10rem);
    height: 0.72em;
    min-height: 3.3rem;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    flex: 0 0 auto;
}

.hero-inline-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-inline-logo {
    background: transparent;
    padding: 0.12em 0.32em;
}

.hero-inline-logo img {
    object-fit: contain;
}

.hero-subtitle {
    max-width: 58ch;
    font-size: clamp(1rem, 1.5vw, 1.22rem);
    line-height: 1.65;
    color: rgba(250, 248, 246, 0.74) !important;
}

.hero-buttons {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: clamp(-0.75rem, -1vw, -0.25rem);
    display: flex;
    justify-content: center;
}

.hero-buttons .button-primary {
    min-height: 64px;
    border-radius: 8px !important;
    padding: 20px 38px;
    background: #c79a77;
    color: #18181b;
    box-shadow: none;
    font-size: 1.08rem;
    letter-spacing: 0 !important;
    transform: translateZ(0);
}

.hero-buttons .button-primary::before {
    display: none;
}

.hero-buttons .button-primary:hover {
    opacity: 1;
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 14px 34px rgba(7, 6, 5, 0.24);
}

.hero-buttons .button-primary:active {
    transform: translate3d(0, 1px, 0);
}

.hero-image-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(251, 248, 243, 0.18);
    background: rgba(24, 24, 27, 0.42);
    box-shadow: 0 24px 80px rgba(7, 6, 5, 0.22);
}

.hero-image-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 13, 13, 0.04), rgba(12, 13, 13, 0.22));
    pointer-events: none;
}

.hero-image-track {
    display: flex;
    width: 100%;
    height: 100%;
    animation: heroImageTrackSlide 20s infinite;
    animation-timing-function: cubic-bezier(0.32, 0.72, 0, 1);
    will-change: transform;
}

.hero-image-slide {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    flex: 0 0 100%;
}

@keyframes heroImageTrackSlide {
    0%,
    16% {
        transform: translate3d(0, 0, 0);
    }

    21%,
    37% {
        transform: translate3d(-100%, 0, 0);
    }

    42%,
    58% {
        transform: translate3d(-200%, 0, 0);
    }

    63%,
    79% {
        transform: translate3d(-300%, 0, 0);
    }

    84%,
    99.8% {
        transform: translate3d(-400%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    border-radius: 0;
    background: #18181b;
    pointer-events: none;
}

.hero-slider::after {
    background:
        linear-gradient(90deg, rgba(12, 13, 13, 0.82) 0%, rgba(12, 13, 13, 0.58) 48%, rgba(12, 13, 13, 0.34) 100%),
        linear-gradient(180deg, rgba(12, 13, 13, 0.42) 0%, rgba(12, 13, 13, 0.18) 42%, rgba(12, 13, 13, 0.68) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    display: none;
}

.hero-proof-grid {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    margin: clamp(1rem, 3vw, 2.25rem) 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr) minmax(0, 1.05fr);
    gap: clamp(1rem, 3vw, 2.5rem);
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
    animation: fadeInUp 1s cubic-bezier(0.32, 0.72, 0, 1) 0.95s forwards;
}

.hero-proof-grid .benefit-card {
    min-width: 0;
    padding: 18px 0 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(250, 248, 246, 0.18);
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), border-color 0.3s ease;
}

.hero-proof-grid .benefit-card::before {
    display: none;
}

.hero-proof-grid .benefit-card:hover {
    transform: translate3d(0, -2px, 0);
    background: transparent;
    border-color: rgba(199, 154, 119, 0.72);
    box-shadow: none;
}

.benefit-marker {
    color: #c79a77;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.4;
}

.hero-proof-grid .benefit-card p {
    margin: 0;
    color: rgba(250, 248, 246, 0.78);
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
    line-height: 1.45;
    font-weight: 500;
    text-align: left;
    white-space: normal;
    letter-spacing: 0;
}

@media (max-width: 1080px) {
    .navbar {
        width: min(calc(100% - 2rem), 920px);
    }

    .nav-logo-link {
        width: 152px;
    }

    .nav-links a {
        padding: 0 11px;
        font-size: 13px;
    }

    .nav-contact-btn {
        padding: 0 18px !important;
    }

    .nav-call-btn {
        padding: 0 16px !important;
    }

    .hero-shell {
        grid-template-columns: minmax(0, 1fr);
        padding-top: clamp(7rem, 14vw, 10rem);
    }

    .hero-title {
        max-width: 840px;
    }

    .hero-image-slider {
        max-width: 640px;
        width: min(100%, 420px);
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 14px;
        width: calc(100% - 24px);
        min-height: 64px;
        padding: 8px;
        border-radius: 999px;
    }

    .nav-logo-link {
        width: 138px;
        height: 48px;
        margin: 0;
        padding: 0;
    }

    .nav-logo {
        height: 34px;
        max-width: 112px;
    }

    .nav-hamburger {
        display: inline-flex;
        flex-shrink: 0;
    }

    .nav-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        left: auto;
        width: min(100%, 390px);
        max-width: none;
        height: auto;
        max-height: calc(100dvh - 96px);
        padding: 10px;
        gap: 2px;
        border: 1px solid rgba(251, 248, 243, 0.14);
        border-radius: 24px;
        background:
            linear-gradient(135deg, rgba(37, 32, 28, 0.94), rgba(24, 24, 27, 0.94)),
            rgba(24, 24, 27, 0.94);
        box-shadow: 0 24px 80px rgba(7, 6, 5, 0.42);
        transform: translate3d(0, -8px, 0) scale(0.98);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        transition: opacity 0.28s cubic-bezier(0.32, 0.72, 0, 1), transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
    }

    .nav-links::before {
        display: none;
    }

    .nav-links.active {
        top: calc(100% + 12px) !important;
        right: 0 !important;
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        min-height: 48px;
        width: 100%;
        padding: 0 16px;
        border-bottom: 0;
        justify-content: flex-start;
        color: rgba(251, 248, 243, 0.78);
        font-size: 15px;
    }

    .nav-links a:hover {
        padding-left: 16px;
        color: #fbf8f3;
    }

    .nav-call-btn,
    .nav-contact-btn {
        justify-content: center !important;
        margin: 8px 0 0;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-shell {
        padding: 6.8rem 1rem 4rem;
        gap: 2rem;
    }

    .hero-content {
        gap: 1.1rem;
    }

    .hero-title {
        max-width: 100%;
        font-size: clamp(2.35rem, 11.4vw, 4.15rem);
        line-height: 0.98;
    }

    .hero-title-line {
        flex-wrap: wrap;
        white-space: normal;
        gap: 0 0.28em;
    }

    .hero-title-word {
        order: 1;
    }

    .hero-inline-media {
        order: 2;
        width: min(100%, 18rem);
        height: 6.8rem;
        margin-top: 0.4rem;
        border-radius: 8px;
        flex-basis: 100%;
    }

    .hero-buttons {
        width: 100%;
        max-width: none;
        margin-top: 0;
    }

    .hero-buttons .button-primary {
        width: 100%;
        justify-content: center;
    }

    .hero-image-slider {
        max-width: none;
        width: 100%;
    }

    .hero-proof-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Footer Repair */
.footer {
    background: #18181b !important;
    color: #fbf8f3 !important;
    padding: clamp(4rem, 8vw, 6.5rem) clamp(1rem, 4vw, 4rem) clamp(2rem, 4vw, 3rem) !important;
}

.footer-top {
    width: min(100%, var(--max-width)) !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr) !important;
    gap: clamp(2.5rem, 7vw, 6rem) !important;
    align-items: start !important;
}

.footer-left {
    max-width: 620px !important;
}

.footer-left h2 {
    color: #fbf8f3 !important;
}

.footer-tagline {
    max-width: 42ch !important;
    color: rgba(251, 248, 243, 0.68) !important;
}

.footer-links {
    justify-content: flex-start !important;
}

.footer-link-list {
    gap: 12px !important;
}

.footer-bottom {
    width: min(100%, var(--max-width)) !important;
    color: rgba(251, 248, 243, 0.58) !important;
}

.footer-legal,
.footer-contact {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
}

.footer-social {
    width: min(100%, var(--max-width)) !important;
    margin: 0 auto !important;
}

.footer-social a {
    color: #fbf8f3 !important;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr !important;
        padding: 0 !important;
    }

    .footer-bottom {
        align-items: flex-start !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .footer-social {
        justify-content: flex-start !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* ===========================================
   Infinity Process Section (animated)
   =========================================== */
.infinity-process-section {
    --infinity-cream: #FBF7F1;
    --infinity-cream-deep: #F3EAD9;
    --infinity-gold: #B8886E;
    --infinity-gold-deep: #8B6F5C;
    --infinity-gold-warm: #D4A574;
    --infinity-ink: #1A1412;
    --infinity-text-muted: #6B5D54;
    --infinity-ease: cubic-bezier(0.32, 0.72, 0, 1);

    position: relative;
    isolation: isolate;
    background: linear-gradient(180deg, var(--infinity-cream) 0%, var(--infinity-cream-deep) 100%);
    padding: clamp(80px, 12vw, 160px) clamp(20px, 4vw, 60px) clamp(80px, 10vw, 130px);
    overflow: hidden;
}

.infinity-process-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 30% 35%, rgba(212, 165, 116, 0.16) 0%, transparent 70%),
        radial-gradient(ellipse 55% 45% at 70% 65%, rgba(184, 136, 110, 0.12) 0%, transparent 70%);
}

.infinity-process-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(184, 136, 110, 0.15) 1px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.35;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 80%);
}

.infinity-process-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.infinity-process-header {
    text-align: center;
    margin-bottom: clamp(50px, 7vw, 90px);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.infinity-process-eyebrow {
    display: inline-block;
    font-family: var(--font-outfit);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--infinity-gold);
    background: rgba(184, 136, 110, 0.07);
    padding: 9px 20px;
    border-radius: 100px;
    border: 1px solid rgba(184, 136, 110, 0.18);
    margin-bottom: 26px;
    backdrop-filter: blur(8px);
}

.infinity-process-title {
    font-family: var(--font-outfit);
    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: var(--infinity-ink);
    margin-bottom: 22px;
}

.infinity-process-title .italic {
    font-family: var(--font-newsreader-italic);
    font-style: italic;
    font-weight: 500;
    color: var(--infinity-gold);
    position: relative;
    display: inline-block;
}

.infinity-process-title .italic::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 6%;
    width: 88%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--infinity-gold-warm), transparent);
    border-radius: 999px;
    opacity: 0.7;
}

.infinity-process-subtitle {
    font-family: var(--font-outfit);
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--infinity-text-muted);
    line-height: 1.75;
    font-weight: 300;
    max-width: 640px;
    margin: 0 auto;
}

/* Stage */
.infinity-stage {
    position: relative;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

@media (min-width: 961px) {
    .infinity-stage {
        display: grid;
        grid-template-columns: minmax(660px, 1.45fr) minmax(360px, 0.7fr);
        gap: clamp(28px, 4vw, 58px);
        align-items: center;
    }

}

.infinity-svg {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 500;
    overflow: visible;
}

@media (min-width: 961px) {
    .infinity-svg {
        width: min(112%, 900px);
        margin-left: max(-6vw, -80px);
    }
}

/* Path */
.infinity-track {
    fill: none;
    stroke: #ecdcc0;
    stroke-width: 3;
    stroke-dasharray: 9 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.infinity-glow-path {
    fill: none;
    stroke: url(#pathGradient);
    stroke-width: 14;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.18;
    filter: blur(10px);
}

/* Points */
.infinity-point {
    cursor: pointer;
    pointer-events: all;
    outline: none;
}

.infinity-point-halo {
    fill: rgba(212, 165, 116, 0);
    transition: fill 0.6s var(--infinity-ease), r 0.6s var(--infinity-ease);
}

.infinity-point-bg {
    fill: #FFFFFF;
    transition:
        fill 0.6s var(--infinity-ease),
        r 0.6s var(--infinity-ease),
        filter 0.6s var(--infinity-ease);
    filter: drop-shadow(0 6px 14px rgba(184, 136, 110, 0.18))
            drop-shadow(0 1px 2px rgba(26, 20, 18, 0.06));
}

.infinity-point-ring {
    fill: none;
    stroke: rgba(184, 136, 110, 0.4);
    stroke-width: 1.4;
    transition:
        stroke 0.6s var(--infinity-ease),
        stroke-width 0.6s var(--infinity-ease),
        r 0.6s var(--infinity-ease);
}

.infinity-point-number {
    font-family: var(--font-outfit);
    font-size: 17px;
    font-weight: 600;
    fill: var(--infinity-gold);
    text-anchor: middle;
    dominant-baseline: central;
    pointer-events: none;
    user-select: none;
    transition: fill 0.6s var(--infinity-ease);
    letter-spacing: -0.02em;
}

/* Hover state (non-active) */
.infinity-point:hover .infinity-point-ring,
.infinity-point:focus-visible .infinity-point-ring {
    stroke: var(--infinity-gold);
    stroke-width: 2;
}

.infinity-point:hover .infinity-point-bg,
.infinity-point:focus-visible .infinity-point-bg {
    filter: drop-shadow(0 10px 22px rgba(184, 136, 110, 0.28))
            drop-shadow(0 1px 2px rgba(26, 20, 18, 0.08));
}

/* Active state */
.infinity-point.active .infinity-point-halo {
    fill: rgba(212, 165, 116, 0.18);
    r: 38;
    animation: infinityPulse 2.6s var(--infinity-ease) infinite;
}

.infinity-point.active .infinity-point-bg {
    fill: var(--infinity-gold);
    r: 26;
    filter: drop-shadow(0 14px 32px rgba(184, 136, 110, 0.45))
            drop-shadow(0 0 18px rgba(212, 165, 116, 0.4));
}

.infinity-point.active .infinity-point-ring {
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1.5;
    r: 26;
}

.infinity-point.active .infinity-point-number {
    fill: #FFFFFF;
}

@keyframes infinityPulse {
    0%, 100% {
        opacity: 0.7;
        r: 38;
    }
    50% {
        opacity: 1;
        r: 44;
    }
}

/* Cursor */
.infinity-cursor {
    pointer-events: none;
    transform-box: fill-box;
}

.infinity-cursor-halo {
    animation: cursorHaloBreathe 3.2s ease-in-out infinite;
}

.infinity-cursor-blur {
    animation: cursorBlurBreathe 2.4s ease-in-out infinite;
}

.infinity-cursor-spark {
    animation: cursorSparkBlink 2s ease-in-out infinite;
}

@keyframes cursorHaloBreathe {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.18); }
}

@keyframes cursorBlurBreathe {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 0.75; }
}

@keyframes cursorSparkBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; }
}

/* Card */
.infinity-card-container {
    margin-top: clamp(36px, 5vw, 64px);
    display: flex;
    justify-content: center;
    padding: 0 8px;
}

@media (min-width: 961px) {
    .infinity-card-container {
        margin-top: 0;
        padding: 0;
        justify-content: flex-end;
    }
}

.infinity-card-shell {
    position: relative;
    width: 100%;
    max-width: 660px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(245, 232, 215, 0.6) 100%);
    border: 1px solid rgba(184, 136, 110, 0.14);
    border-radius: 32px;
    padding: 8px;
    box-shadow:
        0 30px 70px -25px rgba(184, 136, 110, 0.32),
        0 8px 24px -8px rgba(26, 20, 18, 0.06),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.infinity-card-core {
    position: relative;
    background: #FFFFFF;
    border-radius: calc(32px - 8px);
    padding: clamp(28px, 3.5vw, 44px) clamp(28px, 3.5vw, 48px);
    overflow: hidden;
    min-height: 220px;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(184, 136, 110, 0.06);
}

.infinity-card-core::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at top right, rgba(212, 165, 116, 0.12), transparent 70%);
    pointer-events: none;
}

.infinity-card-content {
    position: relative;
    transition:
        opacity 0.42s var(--infinity-ease),
        transform 0.42s var(--infinity-ease),
        filter 0.42s var(--infinity-ease);
}

.infinity-card-content.is-leaving {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(4px);
}

.infinity-card-step {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.infinity-card-step-num {
    font-family: var(--font-newsreader-italic);
    font-style: italic;
    font-weight: 500;
    font-size: 15px;
    color: var(--infinity-gold);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.infinity-card-step-divider {
    flex: 1 1 0;
    height: 1px;
    background: linear-gradient(to right,
        rgba(184, 136, 110, 0.55),
        rgba(184, 136, 110, 0.08));
    max-width: 180px;
}

.infinity-card-step-total {
    font-family: var(--font-outfit);
    font-size: 12px;
    font-weight: 500;
    color: rgba(107, 93, 84, 0.5);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.infinity-card-title {
    font-family: var(--font-outfit);
    font-size: clamp(24px, 2.6vw, 30px);
    font-weight: 500;
    color: var(--infinity-ink);
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.infinity-card-description {
    font-family: var(--font-outfit);
    font-size: clamp(15px, 1.4vw, 17px);
    color: var(--infinity-text-muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 56ch;
}

/* Progress dots */
.infinity-card-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: clamp(22px, 3vw, 30px);
    padding-top: clamp(20px, 2.5vw, 26px);
    border-top: 1px solid rgba(184, 136, 110, 0.08);
}

.infinity-card-progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(184, 136, 110, 0.22);
    border: none;
    padding: 0;
    cursor: pointer;
    transition:
        background 0.45s var(--infinity-ease),
        width 0.45s var(--infinity-ease),
        opacity 0.45s var(--infinity-ease);
}

.infinity-card-progress-dot:hover {
    background: rgba(184, 136, 110, 0.45);
}

.infinity-card-progress-dot.active {
    background: var(--infinity-gold);
    width: 28px;
}

.infinity-card-progress-dot:focus-visible {
    outline: 2px solid var(--infinity-gold-warm);
    outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .infinity-cursor-halo,
    .infinity-cursor-blur,
    .infinity-cursor-spark,
    .infinity-point.active .infinity-point-halo {
        animation: none;
    }
}

/* Tablet */
@media (max-width: 960px) {
    .infinity-stage {
        max-width: 760px;
    }

    .infinity-point-bg,
    .infinity-point-ring {
        r: 24;
    }

    .infinity-point.active .infinity-point-bg,
    .infinity-point.active .infinity-point-ring {
        r: 28;
    }

    .infinity-point-number {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .infinity-process-section {
        padding: 70px 16px 80px;
    }

    .infinity-process-header {
        margin-bottom: 44px;
    }

    .infinity-stage {
        max-width: 100%;
        padding: 0 4px;
    }

    .infinity-track {
        stroke-dasharray: 4 7;
    }

    .infinity-point-halo,
    .infinity-point.active .infinity-point-halo {
        display: none;
    }

    .infinity-point-bg {
        r: 26;
    }

    .infinity-point-ring {
        r: 26;
        stroke-width: 1.6;
    }

    .infinity-point.active .infinity-point-bg,
    .infinity-point.active .infinity-point-ring {
        r: 30;
    }

    .infinity-point-number {
        font-size: 20px;
    }

    .infinity-cursor-halo {
        r: 28;
    }

    .infinity-cursor-blur {
        r: 12;
    }

    .infinity-cursor-core {
        r: 8;
    }

    .infinity-card-shell {
        border-radius: 26px;
    }

    .infinity-card-core {
        border-radius: 20px;
        padding: 24px 22px;
        min-height: 200px;
    }

    .infinity-card-step-divider {
        max-width: 80px;
    }

    .infinity-card-step-total {
        display: none;
    }
}

@media (max-width: 420px) {
    .infinity-process-title {
        font-size: clamp(30px, 9vw, 38px);
    }

    .infinity-card-progress {
        gap: 6px;
    }

    .infinity-card-progress-dot {
        width: 7px;
        height: 7px;
    }

    .infinity-card-progress-dot.active {
        width: 22px;
    }
}
