    :root {
      --blanc-chaud: #FAFAF6;
      --vert-foret: #1B3D2F;
      --vert-foret-mid: #244A39;
      --vert-foret-light: #2E5C46;
      --lime: #C9D55A;
      --lime-dim: rgba(201, 213, 90, 0.15);
      --lime-glow: rgba(201, 213, 90, 0.25);
      --text-on-dark: rgba(250, 250, 246, 0.85);
      --text-on-dark-muted: rgba(250, 250, 246, 0.7);
      --text-on-dark-faint: rgba(250, 250, 246, 0.25);
      --border-dark: rgba(250, 250, 246, 0.08);
      --border-glow: rgba(201, 213, 90, 0.12);
      --font-heading: 'Alegreya', serif;
      --font-subheading: 'Geist Mono', monospace;
      --font-body: 'Plus Jakarta Sans', sans-serif;

      /* Système d'ombres en couches */
      --shadow-sm: 0 1px 2px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.06);
      --shadow-md: 0 4px 12px rgba(0,0,0,0.1), 0 8px 32px rgba(0,0,0,0.08);
      --shadow-lg: 0 8px 24px rgba(0,0,0,0.12), 0 16px 56px rgba(0,0,0,0.1);
      --shadow-xl: 0 12px 40px rgba(0,0,0,0.15), 0 24px 80px rgba(0,0,0,0.12);
      --shadow-glow: 0 0 20px rgba(201, 213, 90, 0.15), 0 0 60px rgba(201, 213, 90, 0.08);
      --shadow-glow-strong: 0 0 30px rgba(201, 213, 90, 0.25), 0 0 80px rgba(201, 213, 90, 0.12);

      /* Easing premium */
      --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
      --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
    }
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
    body {
      font-family: var(--font-body);
      background: var(--vert-foret);
      color: var(--blanc-chaud);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }
    .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

    /* Barre de progression du scroll — au-dessus du noise overlay (z-index: 999) */
    .scroll-progress {
      position: fixed;
      top: 0; left: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--lime), #E8F090);
      z-index: 1000;
      transform-origin: left;
      transform: scaleX(0);
      will-change: transform;
      box-shadow: 0 0 10px rgba(201, 213, 90, 0.5);
    }

    /* Protection globale des images */
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Transitions globales pour les éléments interactifs */
    a, button { cursor: pointer; }

    /* Surface de clic minimale sur les boutons (accessibilité mobile) */
    button, .btn, a.cta, .nav-cta-btn, .product-preorder-btn, .signup-form button, .whatsapp-btn, .nav-mobile-cta {
      min-height: 44px;
    }

    /* Accessibilité clavier — focus-visible */
    a:focus-visible, button:focus-visible, input:focus-visible {
      outline: 2px solid var(--lime);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* Noise overlay — GPU-composited pour éviter les repaints */
    body::before {
      content: '';
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 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.9' 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;
      z-index: 999;
      will-change: transform;
      transform: translateZ(0);
      backface-visibility: hidden;
    }

    /* Animations */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes pulseGlow {
      0%, 100% { opacity: 0.3; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.05); }
    }
    /* Respect des préférences d'accessibilité
       → On supprime les mouvements (transform) mais on garde
         un fondu doux (opacity) pour que les reveals restent visibles */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
      }
      .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-fade {
        clip-path: none !important;
        transform: none !important;
        filter: none !important;
        transition: opacity 0.8s ease-out !important;
      }
      [data-stagger] > * {
        clip-path: none !important;
        transform: none !important;
        filter: none !important;
        transition: opacity 0.6s ease-out !important;
      }
      .hero-content > .hero-badge,
      .hero-content > .hero-title,
      .hero-content > .hero-subtitle,
      .hero-content > .sp-trust-bar,
      .hero-content > .hero-cta-btn {
        clip-path: none !important;
        transform: none !important;
        filter: none !important;
        animation: none !important;
        opacity: 1 !important;
      }
    }

    /* ============================================
       SYSTÈME DE REVEAL AU SCROLL — Version moderne
       Utilise clip-path pour un effet de "dévoilement"
       combiné à un mouvement et un flou subtil.

       - .reveal       → dévoile du bas vers le haut
       - .reveal-left  → dévoile de la droite vers la gauche
       - .reveal-right → dévoile de la gauche vers la droite
       - .reveal-scale → zoom avec dévoilement circulaire
       - .reveal-fade  → fondu avec flou (pas de clip-path)
       - [data-stagger] → enfants décalés avec le même effet
       ============================================ */

    /* --- REVEAL UP (par défaut) --- */
    .reveal {
      clip-path: inset(40% 0% 0% 0%);
      opacity: 0;
      transform: translateY(30px);
      filter: blur(4px);
      transition: clip-path 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                  opacity 0.35s ease-out,
                  transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                  filter 0.4s ease-out;
      will-change: clip-path, opacity, transform, filter;
    }
    .reveal.visible {
      clip-path: inset(0% 0% 0% 0%);
      opacity: 1;
      transform: translateY(0);
      filter: blur(0px);
    }

    /* --- REVEAL LEFT (vient de la gauche) --- */
    .reveal-left {
      clip-path: inset(0% 40% 0% 0%);
      opacity: 0;
      transform: translateX(-30px);
      filter: blur(4px);
      transition: clip-path 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                  opacity 0.35s ease-out,
                  transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                  filter 0.4s ease-out;
      will-change: clip-path, opacity, transform, filter;
    }
    .reveal-left.visible {
      clip-path: inset(0% 0% 0% 0%);
      opacity: 1;
      transform: translateX(0);
      filter: blur(0px);
    }

    /* --- REVEAL RIGHT (vient de la droite) --- */
    .reveal-right {
      clip-path: inset(0% 0% 0% 40%);
      opacity: 0;
      transform: translateX(30px);
      filter: blur(4px);
      transition: clip-path 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                  opacity 0.35s ease-out,
                  transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                  filter 0.4s ease-out;
      will-change: clip-path, opacity, transform, filter;
    }
    .reveal-right.visible {
      clip-path: inset(0% 0% 0% 0%);
      opacity: 1;
      transform: translateX(0);
      filter: blur(0px);
    }

    /* --- REVEAL SCALE (zoom + cercle qui s'ouvre) --- */
    .reveal-scale {
      clip-path: circle(0% at 50% 50%);
      opacity: 0;
      transform: scale(0.92);
      filter: blur(3px);
      transition: clip-path 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                  opacity 0.3s ease-out,
                  transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                  filter 0.35s ease-out;
      will-change: clip-path, opacity, transform, filter;
    }
    .reveal-scale.visible {
      clip-path: circle(75% at 50% 50%);
      opacity: 1;
      transform: scale(1);
      filter: blur(0px);
    }

    /* --- REVEAL FADE (flou qui se dissipe, sans masque) --- */
    .reveal-fade {
      opacity: 0;
      filter: blur(6px);
      transition: opacity 0.5s ease-out,
                  filter 0.5s ease-out;
      will-change: opacity, filter;
    }
    .reveal-fade.visible {
      opacity: 1;
      filter: blur(0px);
    }

    /* --- STAGGER : enfants décalés, même effet clip-path --- */
    [data-stagger] > * {
      clip-path: inset(25% 0% 0% 0%);
      opacity: 0;
      transform: translateY(20px);
      filter: blur(3px);
      transition: clip-path 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                  opacity 0.3s ease-out,
                  transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                  filter 0.35s ease-out;
      transition-delay: var(--stagger-delay, 0s);
      will-change: clip-path, opacity, transform, filter;
    }
    [data-stagger].visible > * {
      clip-path: inset(0% 0% 0% 0%);
      opacity: 1;
      transform: translateY(0);
      filter: blur(0px);
    }

    /* NAV */
    .nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 300; padding: 18px 24px;
      transition: padding 0.4s var(--ease-out-expo);
      will-change: padding;
    }
    .nav.scrolled {
      padding: 10px 24px;
    }
    .nav.scrolled .nav-inner {
      background: rgba(27, 61, 47, 0.82);
      backdrop-filter: blur(32px) saturate(1.4); -webkit-backdrop-filter: blur(32px) saturate(1.4);
      border: 1px solid rgba(201, 213, 90, 0.1);
      border-radius: 100px;
      padding: 10px 12px 10px 28px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25),
                  0 0 0 1px rgba(250, 250, 246, 0.04) inset,
                  0 1px 0 rgba(250, 250, 246, 0.06) inset;
    }
    .nav-inner {
      display: flex; justify-content: space-between; align-items: center;
      max-width: 1120px; margin: 0 auto;
      padding: 6px 0;
      border-radius: 100px;
      transition: background 0.4s var(--ease-out-expo),
                  border 0.4s var(--ease-out-expo),
                  padding 0.4s var(--ease-out-expo),
                  box-shadow 0.4s var(--ease-out-expo);
      position: relative;
    }
    /* Logo : deux versions, swap au scroll */
    .nav-logo {
      text-decoration: none; display: flex; align-items: center;
      position: relative; transition: opacity 0.2s ease;
    }
    .nav-logo:hover { opacity: 0.85; }
    .nav-logo-dark {
      height: 28px; width: auto; display: block;
      transition: opacity 0.35s var(--ease-out-expo);
    }
    .nav-logo-light {
      height: 28px; width: auto; display: block;
      position: absolute; top: 0; left: 0;
      opacity: 0;
      transition: opacity 0.35s var(--ease-out-expo);
    }
    .nav.scrolled .nav-logo-dark {
      opacity: 0;
    }
    .nav.scrolled .nav-logo-light {
      opacity: 1;
    }
    .nav-links { display: flex; gap: 12px; align-items: center; position: absolute; left: 50%; transform: translateX(-50%); }
    .nav-link {
      font-family: var(--font-body); font-weight: 400; font-size: 0.84rem;
      letter-spacing: 0.03em;
      color: rgba(27, 61, 47, 0.65); text-decoration: none;
      padding: 8px 18px; border-radius: 100px;
      transition: color 0.25s ease, background 0.25s ease;
      position: relative;
    }
    .nav-link:hover {
      color: var(--vert-foret);
      background: rgba(27, 61, 47, 0.06);
    }
    .nav.scrolled .nav-link {
      color: var(--text-on-dark-muted);
    }
    .nav.scrolled .nav-link:hover {
      color: var(--blanc-chaud);
      background: rgba(250, 250, 246, 0.08);
    }
    .nav-link::before {
      content: ''; position: absolute;
      bottom: 4px; left: 50%; transform: translateX(-50%);
      width: 4px; height: 4px; border-radius: 50%;
      background: var(--vert-foret); opacity: 0;
      transition: opacity 0.25s ease, background 0.25s ease;
    }
    .nav.scrolled .nav-link::before {
      background: var(--lime);
    }
    .nav-link:hover::before {
      opacity: 1;
    }
    .nav-cta-btn {
      font-family: var(--font-body); font-weight: 500; font-size: 0.82rem;
      letter-spacing: 0.04em; color: var(--vert-foret);
      background: var(--lime); border: none;
      padding: 10px 26px; border-radius: 100px;
      cursor: pointer;
      transition: background 0.3s var(--ease-out-expo),
                  transform 0.3s var(--ease-out-expo),
                  box-shadow 0.3s var(--ease-out-expo),
                  color 0.35s var(--ease-out-expo);
      text-decoration: none; position: relative; overflow: hidden;
      text-align: center; display: inline-flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 12px rgba(201, 213, 90, 0.25);
    }
    .nav-cta-btn::before {
      content: ''; position: absolute;
      top: 50%; left: 50%; width: 0; height: 0;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%; transform: translate(-50%, -50%);
      transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo);
    }
    .nav-cta-btn:hover::before {
      width: 200px; height: 200px;
    }
    .nav-cta-btn:hover {
      background: #d4df6a; transform: scale(1.05);
      box-shadow: 0 4px 20px rgba(201, 213, 90, 0.35);
    }
    .nav.scrolled .nav-cta-btn {
      background: var(--lime);
      color: var(--vert-foret);
    }
    .nav.scrolled .nav-cta-btn:hover {
      background: #d4df6a;
      box-shadow: 0 4px 20px rgba(201, 213, 90, 0.3);
    }

    /* HAMBURGER MOBILE */
    .nav-hamburger {
      display: none; background: none; border: none; cursor: pointer;
      width: 44px; height: 44px; position: relative; z-index: 201;
      flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    }
    .nav-hamburger span {
      display: block; width: 22px; height: 2px; background: var(--vert-foret);
      border-radius: 2px; transition: all 0.2s ease;
    }
    .nav.scrolled .nav-hamburger span {
      background: var(--blanc-chaud);
    }
    .nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-hamburger.active span:nth-child(2) { opacity: 0; }
    .nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .nav-mobile-menu {
      display: none; position: fixed; top: 72px; left: 16px; right: 16px;
      background: rgba(27, 61, 47, 0.95); backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      z-index: 200; flex-direction: column; align-items: stretch; gap: 0;
      border-radius: 16px;
      border: 1px solid rgba(201, 213, 90, 0.1);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
      padding: 8px 0;
      opacity: 0; transform: translateY(-8px);
      transition: opacity 0.25s ease, transform 0.25s var(--ease-out-expo);
    }
    .nav-mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); }
    .nav-mobile-link {
      font-family: var(--font-body); font-size: 0.92rem; font-weight: 400;
      color: var(--blanc-chaud); text-decoration: none; letter-spacing: 0.02em;
      padding: 14px 24px;
      transition: background 0.15s ease, color 0.15s ease;
    }
    .nav-mobile-link:hover { color: var(--lime); background: rgba(250, 250, 246, 0.06); }
    .nav-mobile-cta {
      font-family: var(--font-body); font-weight: 500; font-size: 0.88rem;
      letter-spacing: 0.04em; color: var(--vert-foret);
      background: var(--lime); border: none;
      padding: 12px 24px; border-radius: 10px;
      cursor: pointer; transition: all 0.2s ease;
      text-decoration: none; margin: 8px 16px 12px;
      text-align: center;
    }
    .nav-mobile-cta:hover { background: var(--blanc-chaud); }

    /* MARQUEE */
    .marquee-wrap {
      overflow: hidden;
      border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark);
      padding: 16px 0;
      background: linear-gradient(180deg, rgba(250, 250, 246, 0.03) 0%, rgba(250, 250, 246, 0.01) 100%);
      position: relative;
    }
    .marquee-wrap::before, .marquee-wrap::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
      pointer-events: none;
    }
    .marquee-wrap::before {
      left: 0;
      background: linear-gradient(90deg, var(--vert-foret), transparent);
    }
    .marquee-wrap::after {
      right: 0;
      background: linear-gradient(-90deg, var(--vert-foret), transparent);
    }
    .marquee-track {
      display: flex; width: max-content; animation: marquee 30s linear infinite;
    }
    .marquee-track:hover { animation-play-state: paused; }
    .marquee-item {
      display: flex; align-items: center; gap: 12px; padding: 0 28px;
      white-space: nowrap; font-family: var(--font-body); font-weight: 400;
      font-size: 0.82rem; letter-spacing: 0.1em;
      color: var(--text-on-dark-muted);
    }
    .marquee-item .star { color: var(--lime); font-size: 0.9rem; }

    /* HERO */
    .hero {
      min-height: 100vh; display: flex; flex-direction: column;
      justify-content: center; align-items: center;
      padding: 140px 24px 0; position: relative; overflow: visible;
      background:
        linear-gradient(175deg,
          var(--blanc-chaud) 0%,
          #f5f6ec 35%,
          #ebefda 60%,
          #dde5c8 85%,
          #cdd8b0 100%);
    }
    .hero::before, .hero::after { display: none; }
    .hero-inner {
      display: flex; flex-direction: column; align-items: center;
      gap: 0; max-width: 1200px; width: 100%;
      position: relative; z-index: 1;
    }
    .hero-content {
      flex: 1 1 auto; text-align: center; min-width: 0;
      display: flex; flex-direction: column; align-items: center;
      padding-bottom: 0;
    }
    .hero-product {
      flex: 0 0 380px; position: relative;
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      transform: translateX(30px);
      animation: productIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    }
    /* Hero stagger — chaque enfant entre séquentiellement via --hero-d */
    .hero-content > .hero-badge,
    .hero-content > .hero-title,
    .hero-content > .hero-subtitle,
    .hero-content > .sp-trust-bar,
    .hero-content > .hero-cta-btn {
      clip-path: inset(40% 0% 0% 0%);
      opacity: 0;
      transform: translateY(25px);
      filter: blur(4px);
      animation: heroIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      animation-delay: var(--hero-d, 0s);
    }
    @keyframes heroIn {
      to {
        clip-path: inset(0% 0% 0% 0%);
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
      }
    }
    .hero-content > .hero-cta-group,
    .hero-content > .hero-product-img {
      clip-path: inset(40% 0% 0% 0%);
      opacity: 0;
      transform: translateY(25px);
      filter: blur(4px);
      animation: heroIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      animation-delay: var(--hero-d, 0s);
    }
    .hero-content > .hero-badge     { --hero-d: 0.1s; }
    .hero-content > .hero-title     { --hero-d: 0.22s; }
    .hero-content > .hero-subtitle  { --hero-d: 0.34s; }
    .hero-content > .sp-trust-bar   { --hero-d: 0.44s; }
    .hero-content > .hero-cta-group { --hero-d: 0.54s; }
    .hero-content > .hero-product-img { --hero-d: 0.66s; }

    /* HERO PRODUCT IMAGE — bas colle a la limite de la section suivante */
    .hero-product-img {
      display: block;
      width: 100%;
      max-width: 420px;
      height: auto;
      margin: 32px auto 0;
      position: relative;
      z-index: 10;
      filter: drop-shadow(0 30px 60px rgba(27, 61, 47, 0.4));
    }
    @media (max-width: 600px) {
      .hero-product-img { max-width: 280px; margin-top: 24px; }
    }
    @media (max-width: 380px) {
      .hero-product-img { max-width: 240px; margin-top: 20px; }
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-subheading); font-size: 0.75rem; font-weight: 300;
      letter-spacing: 0.1em; color: var(--vert-foret);
      background: rgba(27, 61, 47, 0.05);
      border: 1px solid rgba(27, 61, 47, 0.1);
      padding: 8px 20px; border-radius: 100px;
      margin-bottom: 32px;
      position: relative; z-index: 1;
    }
    .hero-badge::before {
      content: ''; width: 6px; height: 6px; background: var(--vert-foret); border-radius: 50%;
      opacity: 0.4;
    }
    .hero-title {
      font-family: var(--font-heading); font-weight: 400;
      font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: 1.2;
      letter-spacing: -0.04em; color: var(--vert-foret);
      margin-bottom: 28px; padding-bottom: 0.05em;
      position: relative; z-index: 1;
    }
    .hero-break {
      display: block; /* retour à la ligne sur desktop */
    }
    @media (max-width: 600px) {
      .hero-break { display: block; } /* saut de ligne entre Essentiel et d'un régime */
    }
    .hero-title .accent {
      color: var(--vert-foret);
      -webkit-text-fill-color: var(--vert-foret);
      position: relative; font-style: italic;
    }
    .hero-title .accent::after {
      display: none;
    }
    .hero-subtitle .accent {
      color: var(--vert-foret);
      font-weight: 500;
    }
    .hero-form-sub .accent {
      color: var(--lime);
      background: linear-gradient(to top, rgba(201, 213, 90, 0.12) 30%, transparent 30%);
      -webkit-box-decoration-break: clone;
      box-decoration-break: clone;
      padding: 0 4px;
    }
    .hero-subtitle {
      font-family: var(--font-body); font-size: clamp(1rem, 1.8vw, 1.2rem);
      font-weight: 400; font-style: normal; line-height: 1.7;
      color: rgba(27, 61, 47, 0.75); max-width: 560px; margin: 0 0 28px;
      letter-spacing: 0.02em;
      position: relative; z-index: 1;
    }

    /* HERO CTA BUTTON */
    .hero-cta-btn {
      display: inline-block;
      font-family: var(--font-body); font-weight: 500; font-size: 0.9rem;
      letter-spacing: 0.04em; color: var(--vert-foret);
      background: var(--lime); border: none;
      padding: 16px 36px; border-radius: 10px;
      text-decoration: none;
      position: relative; z-index: 1;
      transition: background 0.3s var(--ease-out-expo),
                  transform 0.3s var(--ease-out-expo),
                  box-shadow 0.3s var(--ease-out-expo);
      box-shadow: 0 4px 20px rgba(201, 213, 90, 0.3);
    }
    .hero-cta-btn:hover {
      background: #d4df6a;
      transform: scale(1.04);
      box-shadow: 0 6px 24px rgba(201, 213, 90, 0.4), 0 0 40px rgba(201, 213, 90, 0.15);
    }

    /* HERO CTA GROUP */
    .hero-cta-group {
      display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
      margin-bottom: 20px;
    }
    .hero-cta-btn--primary {
      background: var(--lime);
      color: var(--vert-foret);
      font-weight: 500;
      box-shadow: 0 4px 20px rgba(201, 213, 90, 0.3), 0 0 0 0 rgba(201, 213, 90, 0);
      transition: background 0.3s var(--ease-out-expo),
                  transform 0.3s var(--ease-out-expo),
                  box-shadow 0.3s var(--ease-out-expo);
    }
    .hero-cta-btn--primary:hover {
      background: #d4df6a;
      transform: scale(1.04);
      box-shadow: 0 6px 28px rgba(201, 213, 90, 0.4), 0 0 50px rgba(201, 213, 90, 0.12);
    }
    /* Ancien style dark conservé comme fallback */
    .hero-cta-btn--dark {
      background: var(--vert-foret);
      color: var(--blanc-chaud);
      box-shadow: 0 4px 20px rgba(27, 61, 47, 0.2);
    }
    .hero-cta-btn--dark:hover {
      background: #244a38;
      transform: scale(1.04);
      box-shadow: 0 6px 28px rgba(27, 61, 47, 0.3);
    }

    /* HERO COUNTER — beside CTA button, renforcé visuellement */
    .hero-counter {
      display: flex; align-items: center; gap: 8px;
      padding: 10px 18px; border-radius: 10px;
      border: 1px solid rgba(27, 61, 47, 0.08);
      background: rgba(27, 61, 47, 0.02);
      position: relative;
      opacity: 0.75;
      transition: opacity 0.3s ease;
    }
    .hero-counter:hover {
      opacity: 1;
    }
    .hero-counter__pulse {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--lime);
      position: relative; flex-shrink: 0;
      animation: counterPulse 2s ease-in-out infinite;
    }
    .hero-counter__pulse::after {
      content: ''; position: absolute; inset: -3px;
      border-radius: 50%;
      background: rgba(201, 213, 90, 0.3);
      animation: counterPulseRing 2s ease-in-out infinite;
    }
    @keyframes counterPulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.6; }
    }
    @keyframes counterPulseRing {
      0%, 100% { transform: scale(1); opacity: 0.4; }
      50% { transform: scale(1.8); opacity: 0; }
    }
    .hero-counter__number {
      font-family: 'Geist Mono', monospace; font-size: 1rem; font-weight: 400;
      color: var(--vert-foret);
      letter-spacing: -0.01em;
      font-variant-numeric: tabular-nums;
    }
    .hero-counter__label {
      font-family: var(--font-body); font-size: 0.82rem;
      color: rgba(27, 61, 47, 0.55);
    }

    /* HERO SOCIAL PROOF */
    .hero-social-proof {
      font-family: var(--font-body);
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
      letter-spacing: 0.02em;
    }
    .hero-social-proof .sp-trust-count {
      color: var(--lime);
      font-weight: 700;
      font-size: 1.1rem;
    }


    /* HERO PRODUCT IMAGE */
    .hero-product__glow {
      position: absolute;
      width: 320px; height: 320px;
      background: radial-gradient(circle, rgba(27, 61, 47, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      animation: productGlow 4s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes productGlow {
      0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
      50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
    }
    .hero-product__img {
      width: 300px; height: auto;
      position: relative; z-index: 2;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
      animation: productFloat 6s ease-in-out infinite;
    }
    .hero-product__badges {
      position: absolute; inset: 0;
      z-index: 3; pointer-events: none;
    }

    /* NUTRIENT BADGES orbiting the product */
    .nutrient-badge {
      position: absolute;
      font-family: var(--font-subheading);
      font-size: 0.68rem; font-weight: 500;
      letter-spacing: 0.06em;
      padding: 6px 14px; border-radius: 100px;
      background: rgba(30, 64, 49, 0.85);
      border: 1px solid rgba(201, 213, 90, 0.25);
      color: var(--lime);
      backdrop-filter: blur(8px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 12px rgba(201, 213, 90, 0.1);
      animation: badgeOrbit 6s ease-in-out infinite;
      white-space: nowrap;
    }
    @keyframes badgeOrbit {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }
    .nutrient-badge--b12 {
      top: 8%; left: -15%;
      animation-delay: 0s;
    }
    .nutrient-badge--d3 {
      top: 5%; right: -10%;
      animation-delay: 1s;
    }
    .nutrient-badge--k2 {
      top: 40%; right: -20%;
      animation-delay: 2s;
    }
    .nutrient-badge--zinc {
      bottom: 25%; right: -12%;
      animation-delay: 3s;
    }
    .nutrient-badge--iode {
      bottom: 10%; left: -12%;
      animation-delay: 4s;
    }
    .nutrient-badge--selenium {
      top: 55%; left: -22%;
      animation-delay: 5s;
    }

    /* Hero product entrance animation — legacy fallback */
    @keyframes productIn {
      to { opacity: 1; transform: translateX(0); }
    }

    /* SOCIAL PROOF SECTION (hors du hero) */
    .social-proof-section {
      background: #1e4031;
      padding: clamp(64px, 10vw, 120px) 0;
      border-top: 1px solid rgba(201, 213, 90, 0.12);
    }
    .social-proof-section .section-title-huge.text-light { color: var(--blanc-chaud); }
    .social-proof-section .text-lime { color: var(--lime); }

    /* SWIPE DECK — Tinder-like */
    .swipe-label {
      font-family: var(--font-subheading);
      font-size: 0.72rem;
      font-weight: 300;
      letter-spacing: 0.08em;
      color: var(--text-on-dark-muted);
      text-align: center;
      margin-bottom: 24px;
    }
    .swipe-zone {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      position: relative;
    }
    .swipe-deck {
      position: relative;
      width: 320px;
      height: 420px;
      perspective: 800px;
    }
    .swipe-card {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      border-radius: 20px;
      overflow: hidden;
      background: #24503b;
      border: 1px solid rgba(250, 250, 246, 0.1);
      box-shadow: var(--shadow-lg);
      display: flex;
      flex-direction: column;
      cursor: grab;
      user-select: none;
      touch-action: pan-y;
      transition: box-shadow 0.3s ease;
      will-change: transform;
      backface-visibility: hidden;
    }
    .swipe-card.grabbing { cursor: grabbing; }
    /* Empilage : la carte du dessus est visible, les suivantes sont légèrement décalées */
    .swipe-card[data-stack="0"] { z-index: 10; opacity: 1; }
    .swipe-card[data-stack="1"] {
      z-index: 9; opacity: 0.7;
      transform: scale(0.95) translateY(10px);
      pointer-events: none;
    }
    .swipe-card[data-stack="2"] {
      z-index: 8; opacity: 0.4;
      transform: scale(0.90) translateY(20px);
      pointer-events: none;
    }
    .swipe-card[data-stack="hidden"] {
      z-index: 1; opacity: 0;
      transform: scale(0.85) translateY(30px);
      pointer-events: none;
    }
    /* Animation de sortie */
    .swipe-card.swiping-left {
      transition: transform 0.4s var(--ease-out-expo), opacity 0.4s ease;
      transform: translateX(-140%) rotate(-15deg);
      opacity: 0;
    }
    .swipe-card.swiping-right {
      transition: transform 0.4s var(--ease-out-expo), opacity 0.4s ease;
      transform: translateX(140%) rotate(15deg);
      opacity: 0;
    }
    /* Transition douce pour les cartes qui remontent dans la pile */
    .swipe-card.stack-transition {
      transition: transform 0.4s var(--ease-out-expo), opacity 0.4s ease;
    }

    .swipe-card__img {
      height: 55%;
      overflow: hidden;
      position: relative;
    }
    .swipe-card__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .swipe-card__body {
      flex: 1;
      padding: 18px 20px 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .swipe-card__stars {
      font-size: 0.72rem;
      color: var(--lime);
      letter-spacing: 2px;
      margin-bottom: 8px;
      text-shadow: 0 0 6px rgba(201, 213, 90, 0.3);
    }
    .swipe-card__quote {
      font-family: var(--font-heading);
      font-size: 0.9rem;
      font-style: italic;
      font-weight: 400;
      line-height: 1.55;
      color: var(--text-on-dark);
      margin: 0 0 12px;
      flex: 1;
    }
    .swipe-card__footer {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .swipe-card__name {
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--blanc-chaud);
    }
    .swipe-card__tag {
      font-family: var(--font-subheading);
      font-size: 0.6rem;
      font-weight: 300;
      letter-spacing: 0.06em;
      color: var(--lime);
      background: rgba(201, 213, 90, 0.1);
      border: 1px solid rgba(201, 213, 90, 0.2);
      padding: 3px 10px;
      border-radius: 100px;
    }

    /* Flèches desktop */
    .swipe-arrow {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(250, 250, 246, 0.15);
      background: rgba(250, 250, 246, 0.06);
      color: var(--blanc-chaud);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s ease;
      flex-shrink: 0;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .swipe-arrow:hover {
      background: rgba(201, 213, 90, 0.15);
      border-color: rgba(201, 213, 90, 0.3);
      color: var(--lime);
      transform: scale(1.08);
    }
    .swipe-arrow:active {
      transform: scale(0.95);
    }

    /* Compteur */
    .swipe-counter {
      text-align: center;
      margin-top: 20px;
      font-family: var(--font-subheading);
      font-size: 0.7rem;
      font-weight: 300;
      letter-spacing: 0.06em;
      color: var(--text-on-dark-muted);
    }

    @media (max-width: 768px) {
      .swipe-arrow { display: none; }
      .swipe-deck { width: 280px; height: 380px; }
    }
    @media (max-width: 400px) {
      .swipe-deck { width: 260px; height: 360px; }
      .swipe-card__body { padding: 14px 16px 16px; }
      .swipe-card__quote { font-size: 0.82rem; }
    }

    /* SP CAROUSEL — Cartes témoignages horizontales */
    .sp-carousel-title {
      font-family: var(--font-subheading);
      font-size: 0.72rem;
      font-weight: 300;
      letter-spacing: 0.08em;
      color: var(--text-on-dark-muted);
      text-align: center;
      margin-bottom: 14px;
    }
    .sp-carousel-wrap {
      position: relative;
      width: 100vw;
      left: 50%;
      transform: translateX(-50%);
      overflow: hidden;
      padding: 0 0 8px;
    }
    .sp-carousel-wrap::before,
    .sp-carousel-wrap::after {
      content: '';
      position: absolute; top: 0; bottom: 0; width: 48px;
      z-index: 2; pointer-events: none;
    }
    .sp-carousel-wrap::before {
      left: 0;
      background: linear-gradient(to right, #1e4031 0%, transparent 100%);
    }
    .sp-carousel-wrap::after {
      right: 0;
      background: linear-gradient(to left, #1e4031 0%, transparent 100%);
    }
    .sp-carousel {
      display: flex;
      gap: 22px;
      padding: 8px max(5vw, calc((100vw - 1120px) / 2)) 16px;
      overflow-x: auto;
      scroll-snap-type: x proximity;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      cursor: grab;
      touch-action: pan-x;
    }
    .sp-carousel.dragging {
      cursor: grabbing;
      scroll-snap-type: none;
    }
    .sp-carousel.dragging .sp-card {
      pointer-events: none;
    }
    .sp-carousel::-webkit-scrollbar { display: none; }

    /* --- Carte de base --- */
    .sp-card {
      flex: 0 0 260px;
      min-width: 260px;
      border-radius: 16px;
      overflow: hidden;
      background: rgba(250, 250, 246, 0.05);
      border: 1px solid var(--border-dark);
      scroll-snap-align: start;
      transition: transform 0.35s var(--ease-out-expo),
                  box-shadow 0.35s var(--ease-out-expo),
                  border-color 0.35s ease;
    }
    .sp-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), var(--shadow-glow);
      border-color: var(--border-glow);
    }

    /* --- Carte avec IMAGE --- */
    .sp-card--has-img .sp-card__body {
      padding: 14px 14px 16px;
    }

    .sp-card__visual {
      position: relative;
      height: 150px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding: 14px;
      justify-content: space-between;
    }
    .sp-card__img {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    /* Overlay sombre en bas pour lisibilité des badges */
    .sp-card__visual::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 60%;
      background: linear-gradient(to top, rgba(27, 61, 47, 0.7) 0%, transparent 100%);
      z-index: 1;
      pointer-events: none;
    }

    .sp-card__badge {
      font-family: var(--font-subheading);
      font-size: 0.68rem;
      font-weight: 300;
      letter-spacing: 0.06em;
      color: var(--lime);
      background: rgba(201, 213, 90, 0.15);
      border: 1px solid rgba(201, 213, 90, 0.25);
      padding: 4px 12px;
      border-radius: 100px;
      position: relative;
      z-index: 2;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }
    .sp-card__tag {
      font-family: var(--font-subheading);
      font-size: 0.62rem;
      font-weight: 300;
      letter-spacing: 0.04em;
      color: var(--blanc-chaud);
      background: rgba(250, 250, 246, 0.12);
      border: 1px solid rgba(250, 250, 246, 0.15);
      padding: 4px 10px;
      border-radius: 100px;
      position: relative;
      z-index: 2;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    /* --- Carte TEXTE SEUL --- */
    .sp-card--text-only {
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: rgba(250, 250, 246, 0.04);
      border: 1px solid rgba(250, 250, 246, 0.1);
      position: relative;
    }
    .sp-card--text-only::before {
      content: '\201C';
      position: absolute;
      top: 10px; right: 18px;
      font-family: var(--font-heading);
      font-size: 4.5rem;
      line-height: 1;
      color: rgba(201, 213, 90, 0.08);
      pointer-events: none;
    }
    .sp-card--text-only .sp-card__body {
      padding: 24px 18px 20px;
      position: relative; z-index: 1;
    }
    .sp-card__tags-row {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }
    .sp-card__badge-inline {
      display: inline-block;
      font-family: var(--font-subheading);
      font-size: 0.62rem;
      font-weight: 300;
      letter-spacing: 0.06em;
      color: var(--lime);
      background: rgba(201, 213, 90, 0.1);
      border: 1px solid rgba(201, 213, 90, 0.2);
      padding: 3px 10px;
      border-radius: 100px;
    }

    /* --- Corps de carte (commun) --- */
    .sp-card__body {
      padding: 14px 14px 16px;
    }
    .sp-card__body .sp-stars {
      margin-bottom: 8px;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      color: var(--lime);
      text-shadow: 0 0 8px rgba(201, 213, 90, 0.35);
    }
    .sp-card__body .sp-quote {
      font-size: 0.78rem;
      line-height: 1.55;
      margin-bottom: 10px;
    }
    .sp-card__body .sp-author {
      font-size: 0.66rem;
    }

    /* Scroll hint */
    .sp-scroll-hint {
      display: block;
      text-align: right;
      padding: 0 max(5vw, calc((100vw - 1120px) / 2)) 10px;
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.04em;
      color: rgba(201, 213, 90, 0.45);
      transition: opacity 0.5s ease;
    }
    .sp-scroll-hint.is-hidden {
      opacity: 0;
      pointer-events: none;
    }

    @media (max-width: 600px) {
      .sp-card {
        flex: 0 0 230px;
        min-width: 230px;
      }
      .sp-card__visual {
        height: 130px;
      }
    }

    /* TRUST BAR — entre sous-titre et formulaire */
    .sp-trust-icon {
      width: 16px; height: 16px; flex-shrink: 0;
      color: var(--vert-foret);
      opacity: 0.7;
    }
    .sp-trust-bar {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 12px;
      margin-bottom: 36px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }
    .sp-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-subheading);
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.03em;
      color: rgba(27, 61, 47, 0.75);
      background: rgba(27, 61, 47, 0.05);
      padding: 6px 14px;
      border-radius: 100px;
      border: 1px solid rgba(27, 61, 47, 0.08);
    }
    .sp-trust-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--lime);
      flex-shrink: 0;
    }
    .sp-trust-dot--lime {
      background: var(--lime);
    }
    .sp-trust-count {
      color: var(--lime);
      font-weight: 400;
    }
    .sp-trust-sep {
      width: 3px; height: 3px; border-radius: 50%;
      background: rgba(27, 61, 47, 0.25);
      flex-shrink: 0;
      user-select: none;
    }
    /* Deuxième ligne du sous-titre — même taille que la première */
    .hero-subtitle__secondary {
      font-size: 1em;
    }

    /* Carousel dots indicator */
    .sp-carousel-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 12px;
    }
    .sp-carousel-dots .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(250, 250, 246, 0.2);
      transition: background 0.3s, transform 0.3s;
    }
    .sp-carousel-dots .dot.active {
      background: var(--lime);
      transform: scale(1.25);
    }

    @media (max-width: 600px) {
      .sp-trust-sep { display: none; }
      .sp-trust-item { font-size: 0.65rem; padding: 5px 12px; }
      /* Trust bar : 1er item seul en haut, 2 et 3 côte à côte en bas */
      .sp-trust-bar {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        gap: 6px 16px;
      }
      .sp-trust-item:first-child {
        flex-basis: auto;
        justify-content: center;
      }
    }

    /* FORM */
    .hero-form-wrap {
      background: rgba(250, 250, 246, 0.04);
      border: 1px solid var(--border-dark);
      border-radius: 16px; padding: 28px 32px; max-width: 600px; width: 100%;
      margin: 0 auto;
      position: relative; z-index: 1;
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15),
                  0 1px 0 rgba(250, 250, 246, 0.04) inset;
    }
    .hero-form-title {
      font-family: var(--font-body); font-weight: 400; font-size: 0.95rem;
      letter-spacing: 0.06em;  margin-bottom: 4px;
    }
    .hero-form-sub {
      font-family: var(--font-subheading); font-size: 0.7rem;
      color: var(--text-on-dark-muted); margin-bottom: 18px;
    }
    .signup-form { display: flex; flex-direction: column; gap: 12px; }
    .signup-form .form-fields {
      display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    }
    .signup-form input {
      font-family: var(--font-body); font-size: 0.85rem;
      padding: 12px 16px; border: 1.5px solid rgba(250, 250, 246, 0.12);
      border-radius: 10px; background: rgba(250, 250, 246, 0.06);
      color: var(--blanc-chaud); outline: none;
      transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
      width: 100%;
    }
    .signup-form input::placeholder { color: var(--text-on-dark-muted); transition: opacity 0.3s ease; }
    .signup-form input:focus::placeholder { opacity: 0.4; }
    .signup-form input:focus {
      border-color: var(--lime);
      box-shadow: 0 0 0 3px rgba(201, 213, 90, 0.12), 0 0 20px rgba(201, 213, 90, 0.06);
      background: rgba(250, 250, 246, 0.08);
    }
    .signup-form button {
      font-family: var(--font-body); font-weight: 500; font-size: 0.82rem;
      letter-spacing: 0.04em; padding: 13px 28px;
      background: var(--lime); color: var(--vert-foret); border: none;
      border-radius: 10px; cursor: pointer;
      transition: all 0.35s var(--ease-out-expo);
      white-space: normal;
      word-break: break-word;
      width: 100%;
      position: relative; overflow: hidden;
    }
    .signup-form button::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
      transform: translateX(-100%);
      transition: transform 0.6s var(--ease-out-expo);
    }
    .signup-form button:hover::after { transform: translateX(100%); }
    .signup-form button:hover {
      background: var(--blanc-chaud); transform: translateY(-2px);
      box-shadow: var(--shadow-glow-strong), 0 4px 24px rgba(0, 0, 0, 0.15);
    }
    .form-note {
      font-family: var(--font-subheading); font-size: 0.7rem;
      color: var(--text-on-dark-faint); margin-top: 14px; text-align: center;
    }
    /* SOCIAL PROOF */
    .social-proof {
      max-width: 680px; width: 100%; margin: 40px auto 0; text-align: center;
    }
    .social-proof-counter {
      display: flex; align-items: center; justify-content: center; gap: 14px;
      margin-bottom: 28px;
    }
    .social-proof-avatars {
      display: flex;
    }
    .sp-avatar {
      width: 32px; height: 32px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
      color: var(--blanc-chaud); margin-left: -8px;
      border: 2px solid var(--vert-foret);
    }
    .sp-avatar:first-child { margin-left: 0; }
    .social-proof-text {
      font-family: var(--font-body); font-size: 0.88rem;
      color: var(--text-on-dark-muted);
    }
    .social-proof-text strong {
      color: var(--lime); font-weight: 500; font-size: 1.05rem;
    }
    .sp-testimonial {
      background: rgba(250, 250, 246, 0.05);
      border: 1px solid var(--border-dark);
      border-radius: 12px; padding: 20px 22px; text-align: left;
    }
    .sp-stars {
      color: var(--lime); font-size: 0.8rem; margin-bottom: 8px;
      letter-spacing: 2px;
      text-shadow: 0 0 8px rgba(201, 213, 90, 0.4);
    }
    .sp-quote {
      font-family: var(--font-heading); font-size: 0.9rem; font-style: italic;
      line-height: 1.6; color: var(--text-on-dark); margin-bottom: 10px;
    }
    .sp-author {
      font-family: var(--font-subheading); font-size: 0.72rem; font-weight: 300;
      color: var(--text-on-dark-muted);
    }
    .sp-highlight {
      color: var(--lime);
      background: linear-gradient(to top, rgba(201, 213, 90, 0.15) 30%, transparent 30%);
      padding: 0 3px;
      font-style: normal;
    }
    @media (max-width: 900px) {
      .social-proof-counter { flex-direction: column; gap: 8px; }
    }

    .form-success {
      display: none; align-items: center; gap: 12px; padding: 18px 24px;
      background: rgba(201, 213, 90, 0.12);
      border: 1px solid rgba(201, 213, 90, 0.2);
      border-radius: 12px;
      box-shadow: 0 0 30px rgba(201, 213, 90, 0.08);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    }
    .form-success.show {
      display: flex;
      animation: successIn 0.6s var(--ease-out-expo) both;
    }
    @keyframes successIn {
      from { opacity: 0; transform: translateY(10px) scale(0.98); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    .form-success svg { flex-shrink: 0; }
    .form-success p { font-size: 0.92rem; color: var(--blanc-chaud); }

    .form-error {
      margin-top: 12px; padding: 14px 20px;
      background: rgba(200, 60, 50, 0.12);
      border: 1px solid rgba(200, 60, 50, 0.25);
      border-radius: 10px; text-align: center;
      font-family: var(--font-body); font-size: 0.85rem;
      color: #F09090;
      animation: successIn 0.4s var(--ease-out-expo) both;
    }

    /* STATS */
    .product-buttons {
      display: flex; justify-content: center; gap: 20px; padding: 0 0 28px;
      position: relative; z-index: 1; flex-wrap: wrap;
    }
    .product-btn {
      display: inline-flex; align-items: center; gap: 14px;
      background: rgba(250, 250, 246, 0.08); border: 1px solid rgba(250, 250, 246, 0.15);
      border-radius: 12px; padding: 12px 28px 12px 16px;
      color: var(--blanc-chaud); text-decoration: none;
      transition: background 0.2s ease,
                  border-color 0.2s ease,
                  transform 0.2s ease,
                  box-shadow 0.2s ease;
      cursor: pointer;
    }
    .product-btn:hover {
      background: rgba(250, 250, 246, 0.12); border-color: var(--lime);
      transform: translateY(-2px); box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    }
    .product-btn-icon {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(201, 213, 90, 0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
    }
    .product-btn-label {
      font-family: var(--font-body); font-size: 0.92rem; font-weight: 400;
    }
    .product-btn-label em {
      font-family: var(--font-heading); font-style: italic;
      font-size: 1.3rem;
    }
    .product-btn-arrow {
      font-size: 1rem; color: var(--text-on-dark-muted);
      margin-left: 4px; transition: transform 0.1s ease;
    }
    .product-btn:hover .product-btn-arrow { transform: translateX(4px); }

    /* SECTIONS — Espacement responsive fluide (multiples de 8px) */
    .section { padding: clamp(64px, 10vw, 120px) 0; }
    .section-badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-subheading); font-size: 0.72rem; font-weight: 300;
      letter-spacing: 0.1em;  padding: 6px 16px;
      border-radius: 100px; margin-bottom: 24px;
    }
    .section-badge.dark { background: rgba(27, 61, 47, 0.08); color: var(--vert-foret); }
    .section-badge.light { background: var(--lime-dim); color: var(--lime); }
    .section-badge .emoji { font-style: normal; }
    .section-title-huge {
      font-family: var(--font-heading); font-weight: 400;
      font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.1;
       letter-spacing: -0.01em;
    }
    .section-title-huge .accent-lime { color: var(--lime); }
    .text-light { color: var(--blanc-chaud); }
    .text-lime { color: var(--lime); }
    .final-cta-subtitle {
      max-width: 500px; margin: 0 auto 48px;
      font-family: var(--font-body); font-style: normal;
    }
    .section-subtitle {
      font-family: var(--font-heading); font-size: 1.15rem; font-style: italic;
      color: var(--text-on-dark); margin-top: 16px; line-height: 1.6;
    }

    /* CONSTAT */
    .constat {
      background: var(--vert-foret); color: var(--blanc-chaud);
      background-image:
        radial-gradient(ellipse 50% 40% at 10% 30%, rgba(201, 213, 90, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 90% 70%, rgba(201, 213, 90, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 30% at 50% 0%, rgba(201, 213, 90, 0.04) 0%, transparent 40%);
      position: relative;
    }
    /* Gradient de transition hero blanc → constat vert */
    .constat::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 120px;
      background: linear-gradient(to bottom, rgba(250, 250, 246, 0.06) 0%, transparent 100%);
      pointer-events: none;
      z-index: 0;
    }
    .constat .section-title-huge { color: var(--blanc-chaud); }
    .constat-accent { color: var(--lime); }
    .constat-header { margin-bottom: 56px; position: relative; z-index: 1; }
    .constat-intro {
      font-family: var(--font-body); font-size: 1rem; line-height: 1.75;
      color: var(--text-on-dark-muted); max-width: 680px; margin: 24px auto 0; text-align: center;
    }



    /* ══════════════════════════════════════
       CONSTAT — SCIENCE-BASED ELEMENTS
       ══════════════════════════════════════ */

    /* Sous-titre sourcé */
    .constat-subtitle {
      font-family: var(--font-body); font-size: 0.88rem;
      color: var(--text-on-dark-muted); line-height: 1.6;
      margin-top: 20px; max-width: 640px; margin-left: auto; margin-right: auto;
    }
    .constat-subtitle em {
      font-style: italic; color: var(--text-on-dark);
    }

    /* Bandeau chiffres-clés */
    .constat-stats {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
      max-width: 860px; margin: 0 auto 56px;
      padding: 32px 0;
      border-top: 1px solid rgba(250, 250, 246, 0.06);
      border-bottom: 1px solid rgba(250, 250, 246, 0.06);
    }
    .constat-stat {
      text-align: center; padding: 0 12px;
    }
    .constat-stat__number {
      font-family: var(--font-heading); font-size: 2.8rem; font-weight: 400;
      color: var(--lime); line-height: 1;
    }
    .constat-stat__unit {
      font-family: var(--font-heading); font-size: 1.6rem; font-weight: 400;
      color: var(--lime);
    }
    .constat-stat__label {
      font-family: var(--font-body); font-size: 0.82rem;
      color: var(--text-on-dark); line-height: 1.5;
      margin-top: 8px; margin-bottom: 8px;
    }
    .constat-stat__source {
      font-family: var(--font-subheading); font-size: 0.62rem;
      color: var(--text-on-dark-muted); letter-spacing: 0.04em;
      opacity: 0.7;
    }
    @media (max-width: 600px) {
      .constat-stats { grid-template-columns: 1fr; gap: 28px; }
    }

    /* NUTRIENT GRID — 8 cartes compactes */
    .nutrient-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      max-width: 960px;
      margin: 0 auto;
    }
    .nutrient-card {
      background: rgba(250, 250, 246, 0.04);
      border: 1px solid rgba(250, 250, 246, 0.08);
      border-radius: 12px;
      padding: 18px 16px 16px;
      transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s var(--ease-out-expo);
    }
    .nutrient-card:hover {
      background: rgba(250, 250, 246, 0.08);
      border-color: rgba(250, 250, 246, 0.18);
      transform: translateY(-4px);
    }
    .nutrient-card__header {
      display: flex; align-items: baseline; justify-content: space-between;
      margin-bottom: 8px;
    }
    .nutrient-card__name {
      font-family: var(--font-heading); font-size: 1.1rem; font-weight: 400;
      color: var(--blanc-chaud);
    }
    .nutrient-card__pct {
      font-family: var(--font-subheading); font-size: 0.7rem; font-weight: 400;
      letter-spacing: 0.04em;
    }
    .nutrient-card__pct--critical { color: rgba(230, 140, 120, 0.9); }
    .nutrient-card__pct--low { color: rgba(255, 180, 100, 0.9); }
    .nutrient-card__pct--medium { color: rgba(255, 220, 100, 0.9); }
    .nutrient-card__pct--ok { color: var(--lime); }
    .nutrient-card__bar {
      width: 100%; height: 4px; border-radius: 2px;
      background: rgba(250, 250, 246, 0.08);
      overflow: hidden; margin-bottom: 10px;
    }
    .nutrient-card__fill {
      height: 100%; border-radius: 2px;
      transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .nutrient-card__fill--critical { background: rgba(230, 140, 120, 0.7); }
    .nutrient-card__fill--low { background: rgba(255, 180, 100, 0.7); }
    .nutrient-card__fill--medium { background: rgba(255, 220, 100, 0.7); }
    .nutrient-card__fill--ok { background: rgba(201, 213, 90, 0.7); }
    .nutrient-card__desc {
      font-family: var(--font-body); font-size: 0.75rem;
      color: var(--text-on-dark-muted); line-height: 1.45;
      margin-bottom: 6px;
    }
    .nutrient-card__source {
      display: block;
      font-family: var(--font-subheading); font-size: 0.58rem;
      color: var(--text-on-dark-muted); letter-spacing: 0.04em;
      opacity: 0.6;
      line-height: 1.3;
    }
    @media (max-width: 768px) {
      .nutrient-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    }
    @media (max-width: 480px) {
      .nutrient-grid { grid-template-columns: 1fr; gap: 10px; }
      .nutrient-card { padding: 14px 14px 12px; }
    }


    /* Founder quote */
    /* Founder quote with rotating halo */
    .founder-quote-outer {
      position: relative;
      border-radius: 18px;
      padding: 3px;
      overflow: hidden;
    }
    .founder-quote-outer::before {
      content: '';
      position: absolute;
      top: -60%; left: -60%;
      width: 220%; height: 220%;
      background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(201, 213, 90, 0.6) 40deg,
        var(--lime) 80deg,
        rgba(201, 213, 90, 0.6) 120deg,
        transparent 160deg,
        transparent 200deg,
        rgba(201, 213, 90, 0.4) 240deg,
        var(--lime) 280deg,
        rgba(201, 213, 90, 0.4) 320deg,
        transparent 360deg
      );
      animation: haloSpin 8s linear infinite;
      z-index: 0;
    }
    @keyframes haloSpin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    .founder-quote {
      display: flex; align-items: flex-start; gap: 20px;
      background: var(--vert-foret-mid); border-radius: 14px; padding: 32px 36px;
      position: relative; z-index: 1;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    .founder-avatar {
      width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
      overflow: hidden;
      border: 2px solid rgba(201,213,90,0.2);
    }
    .founder-avatar img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .founder-text {
      font-family: var(--font-heading); font-size: 1rem; font-style: italic;
      line-height: 1.7; color: var(--text-on-dark); margin-bottom: 12px;
    }
    .founder-name {
      font-family: var(--font-subheading); font-size: 0.75rem; font-weight: 300;
      color: var(--lime);
    }

    /* PRODUCTS */
    .products {
      background: var(--vert-foret-mid);
      background-image:
        radial-gradient(ellipse 50% 40% at 10% 30%, rgba(201, 213, 90, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 90% 70%, rgba(201, 213, 90, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, rgba(250, 250, 246, 0.03) 0%, transparent 25%);
      position: relative;
    }
    .products::before {
      content: '';
      position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201, 213, 90, 0.2), rgba(250, 250, 246, 0.15), rgba(201, 213, 90, 0.2), transparent);
    }
    .products .section-title-huge.text-light { color: var(--blanc-chaud); }
    .products .text-lime { color: var(--lime); }
    .products-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
    .products-grid { display: grid; grid-template-columns: 1fr; gap: 28px; max-width: 560px; margin: 0 auto; }
    .product-card {
      border: 1px solid rgba(27, 61, 47, 0.12); border-radius: 20px; padding: 44px 36px;
      position: relative; overflow: hidden;
      transition: border-color 0.4s var(--ease-out-expo),
                  background 0.4s ease,
                  transform 0.4s var(--ease-out-expo),
                  box-shadow 0.4s var(--ease-out-expo);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      background: var(--vert-foret);
      will-change: transform;
    }
    /* Glow interne qui suit le hover */
    .product-card::before {
      content: ''; position: absolute;
      top: var(--mouse-y, 50%); left: var(--mouse-x, 50%);
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(201, 213, 90, 0.08) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none; z-index: 0;
    }
    .product-card:hover::before { opacity: 1; }
    .product-card:hover {
      border-color: rgba(201, 213, 90, 0.3);
      background: var(--vert-foret-mid);
      transform: translateY(-6px);
      box-shadow: 0 16px 56px rgba(0, 0, 0, 0.3), var(--shadow-glow);
    }
    .product-card > * { position: relative; z-index: 1; }
    .product-topline {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 20px;
    }
    .product-number {
      font-family: var(--font-subheading); font-weight: 300; font-size: 0.75rem;
      color: var(--text-on-dark-muted); letter-spacing: 0.08em;
    }
    .product-badge {
      display: inline-block; font-family: var(--font-subheading); font-size: 0.62rem;
      font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 6px 16px; border-radius: 100px;
    }
    .product-badge.essential {
      background: rgba(250, 250, 246, 0.08); color: var(--blanc-chaud);
      border: 1px solid rgba(250, 250, 246, 0.12);
    }
    .product-badge.omega {
      background: var(--lime-dim); color: var(--lime);
      border: 1px solid rgba(201, 213, 90, 0.2);
    }
    .product-name {
      font-family: var(--font-heading); font-weight: 400; font-size: 2.2rem;
       letter-spacing: 0.02em; margin-bottom: 8px;
    }
    .product-sub {
      font-family: var(--font-subheading); font-size: 0.75rem;
      color: var(--text-on-dark-muted); margin-bottom: 24px;
    }
    .product-img-placeholder {
      width: 100%; height: 220px; border-radius: 16px;
      background:
        radial-gradient(ellipse 55% 50% at 50% 55%, rgba(201, 213, 90, 0.08) 0%, transparent 70%),
        linear-gradient(165deg, rgba(250,250,246,0.05) 0%, rgba(27,61,47,0.6) 50%, rgba(250,250,246,0.02) 100%);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 28px; overflow: hidden;
      position: relative;
      border: 1px solid rgba(250, 250, 246, 0.06);
    }
    .product-img-placeholder::before {
      content: '';
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 160px; height: 160px; border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 213, 90, 0.12) 0%, rgba(201, 213, 90, 0.04) 45%, transparent 70%);
      filter: blur(8px);
      pointer-events: none;
    }

    /* CAPSULE 3D — Animation gelule realiste */
    .capsule-3d {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      position: relative;
    }
    .capsule-body {
      width: 72px;
      height: 160px;
      position: relative;
      animation: capsuleFloat 4s ease-in-out infinite;
      filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
    }
    .capsule-top {
      width: 100%;
      height: 55%;
      background: linear-gradient(135deg, #C4956A 0%, #D4A87A 30%, #B8895E 70%, #A87A50 100%);
      border-radius: 36px 36px 0 0;
      position: relative;
      overflow: hidden;
    }
    .capsule-top::after {
      content: '';
      position: absolute;
      top: 12%; left: 18%;
      width: 30%; height: 50%;
      background: linear-gradient(160deg, rgba(255,255,255,0.35) 0%, transparent 70%);
      border-radius: 50%;
      filter: blur(4px);
    }
    .capsule-bottom {
      width: 100%;
      height: 50%;
      background: linear-gradient(135deg, #A87A50 0%, #9A6E45 40%, #8B6038 100%);
      border-radius: 0 0 36px 36px;
      position: relative;
      overflow: hidden;
    }
    .capsule-bottom::after {
      content: '';
      position: absolute;
      top: 15%; left: 15%;
      width: 25%; height: 45%;
      background: linear-gradient(160deg, rgba(180, 150, 60, 0.25) 0%, transparent 70%);
      border-radius: 50%;
      filter: blur(3px);
    }
    .capsule-body .capsule-shine {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255,255,255,0.15) 45%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0.15) 55%,
        transparent 70%
      );
      animation: capsuleShine 3s ease-in-out infinite;
      pointer-events: none;
      border-radius: 36px;
    }
    .capsule-shadow {
      width: 50px;
      height: 12px;
      background: radial-gradient(ellipse, rgba(0,0,0,0.2) 0%, transparent 70%);
      border-radius: 50%;
      margin-top: 8px;
      animation: capsuleShadow 4s ease-in-out infinite;
    }
    @keyframes capsuleFloat {
      0%, 100% { transform: translateY(0) rotate(-8deg); }
      50% { transform: translateY(-12px) rotate(-5deg); }
    }
    @keyframes capsuleShine {
      0%, 100% { opacity: 0.4; transform: translateX(-20px); }
      50% { opacity: 1; transform: translateX(20px); }
    }
    @keyframes capsuleShadow {
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(0.7); opacity: 0.3; }
    }

    /* PRODUCT PRICE */
    .product-price {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid rgba(250, 250, 246, 0.08);
    }
    .product-price__amount {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 400;
      color: var(--lime);
      line-height: 1;
    }
    .product-price__period {
      font-family: var(--font-body);
      font-size: 0.88rem;
      color: var(--text-on-dark-muted);
    }
    .product-cta-btn {
      display: block;
      width: fit-content;
      margin-left: auto; margin-right: auto;
      font-family: var(--font-body); font-weight: 500; font-size: 0.92rem;
      letter-spacing: 0.04em; color: var(--vert-foret);
      background: var(--lime); border: none;
      padding: 16px 36px; border-radius: 10px;
      text-decoration: none; text-align: center;
      margin-top: 28px;
      transition: background 0.3s var(--ease-out-expo),
                  transform 0.3s var(--ease-out-expo),
                  box-shadow 0.3s var(--ease-out-expo);
      box-shadow: 0 4px 20px rgba(201, 213, 90, 0.3);
    }
    .product-cta-btn s {
      color: rgba(27, 61, 47, 0.5);
      text-decoration: line-through;
      font-weight: 400;
    }
    .product-cta-btn strong {
      font-weight: 600;
    }
    .product-cta-btn:hover {
      background: #d4df6a;
      transform: scale(1.04);
      box-shadow: 0 6px 24px rgba(201, 213, 90, 0.4);
    }

    .product-desc { font-size: 0.95rem; line-height: 1.7; color: var(--text-on-dark); margin-bottom: 28px; }
    .product-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .product-tag {
      font-family: var(--font-subheading); font-size: 0.68rem; font-weight: 300;
      padding: 6px 14px; border: 1px solid var(--border-dark); border-radius: 100px;
      color: var(--text-on-dark-muted); transition: all 0.2s ease;
    }
    .product-card:hover .product-tag { border-color: rgba(201, 213, 90, 0.2); }
    .product-features {
      list-style: none; padding: 4px 0; display: flex; flex-direction: column; gap: 12px;
      margin-bottom: 28px;
    }
    .product-features li {
      font-family: var(--font-body); font-size: 0.88rem; color: var(--text-on-dark);
      padding-left: 22px; position: relative; line-height: 1.55;
    }
    .product-features li::before {
      content: ''; position: absolute; left: 0; top: 7px;
      width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
    }
    .product-ingredients {
      background: rgba(250, 250, 246, 0.04);
      border: 1px solid rgba(250, 250, 246, 0.06);
      border-radius: 12px; margin-bottom: 24px;
      backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    }
    .product-ingredients-title {
      font-family: var(--font-subheading); font-size: 0.7rem; font-weight: 300;
      letter-spacing: 0.1em; color: var(--text-on-dark-muted);
      padding: 18px 24px;
      cursor: pointer;
      list-style: none; /* retire le triangle natif */
      display: flex; align-items: center; justify-content: space-between;
      transition: color 0.2s ease;
    }
    .product-ingredients-title::-webkit-details-marker { display: none; }
    .product-ingredients-title::after {
      content: '+'; font-size: 1.1rem; color: var(--lime);
      transition: transform 0.3s var(--ease-out-expo);
    }
    .product-ingredients[open] .product-ingredients-title::after {
      transform: rotate(45deg);
    }
    .product-ingredients-title:hover { color: var(--lime); }
    .product-ingredients ul {
      list-style: none; display: flex; flex-direction: column; gap: 10px;
      padding: 0 24px 24px 24px;
    }
    .product-ingredients li {
      font-family: var(--font-body); font-size: 0.85rem; color: var(--text-on-dark);
      padding-left: 20px; position: relative; line-height: 1.5;
    }
    .product-ingredients li::before {
      content: '✦'; position: absolute; left: 0; top: 0;
      font-size: 0.65rem; color: var(--text-on-dark-muted);
    }
    /* Toggle "Découvrir le produit" */
    .product-details-toggle {
      margin-bottom: 24px;
      border: 1px solid rgba(201, 213, 90, 0.12);
      border-radius: 12px;
      overflow: hidden;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .product-details-toggle[open] {
      border-color: rgba(201, 213, 90, 0.25);
      box-shadow: 0 0 16px rgba(201, 213, 90, 0.06);
    }
    .product-details-summary {
      font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
      letter-spacing: 0.03em;
      color: var(--lime);
      padding: 18px 24px;
      cursor: pointer;
      list-style: none;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(201, 213, 90, 0.04);
      transition: background 0.25s ease, color 0.2s ease;
    }
    .product-details-summary::-webkit-details-marker { display: none; }
    .product-details-summary::after {
      content: '→'; font-size: 1.1rem;
      transition: transform 0.35s var(--ease-out-expo);
    }
    .product-details-toggle[open] .product-details-summary {
      background: rgba(201, 213, 90, 0.08);
      border-bottom: 1px solid rgba(201, 213, 90, 0.1);
    }
    .product-details-toggle[open] .product-details-summary::after {
      transform: rotate(90deg);
    }
    .product-details-summary:hover {
      background: rgba(201, 213, 90, 0.08);
    }
    .product-details-content {
      padding: 20px 28px 28px;
      animation: detailsSlideIn 0.4s var(--ease-out-expo) both;
    }
    @keyframes detailsSlideIn {
      from { opacity: 0; transform: translateY(-8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .product-excipient {
      font-family: var(--font-subheading); font-size: 0.7rem;
      color: var(--text-on-dark-muted);
      margin-top: 14px; padding: 12px 24px;
      letter-spacing: 0.04em;
      border-top: 1px solid rgba(250, 250, 246, 0.06);
    }
    .product-target {
      font-family: var(--font-heading); font-size: 1rem; font-style: italic;
      color: var(--lime); margin-bottom: 20px;
    }
    .product-target span {
      font-family: var(--font-body); font-style: normal; font-size: 0.85rem;
      color: var(--text-on-dark-muted); display: block; margin-top: 2px;
    }
    .product-preorder-btn {
      display: block; width: 100%; text-align: center; margin-top: 28px;
      font-family: var(--font-body); font-size: 0.92rem; font-weight: 500;
      letter-spacing: 0.04em; padding: 16px 32px;
      background: var(--lime); color: var(--vert-foret);
      border: none; border-radius: 10px; cursor: pointer;
      transition: all 0.35s var(--ease-out-expo); text-decoration: none;
      position: relative; overflow: hidden;
    }
    .product-preorder-btn::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
      transform: translateX(-100%);
      transition: transform 0.6s var(--ease-out-expo);
    }
    .product-preorder-btn:hover::after { transform: translateX(100%); }
    .product-preorder-btn:hover {
      background: var(--blanc-chaud); transform: translateY(-2px);
      box-shadow: var(--shadow-glow-strong), 0 4px 24px rgba(0, 0, 0, 0.15);
    }
    .product-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: var(--lime); transform: scaleX(0); transform-origin: left;
      transition: transform 0.2s ease;
    }
    .product-card:hover::after { transform: scaleX(1); }

    /* WHY */
    .why {
      background: var(--blanc-chaud); color: var(--vert-foret);
      background-image:
        radial-gradient(ellipse 40% 30% at 80% 90%, rgba(201, 213, 90, 0.06) 0%, transparent 50%);
    }
    .why-header { text-align: center; max-width: 780px; margin: 0 auto 64px; }
    .why-subtitle {
      font-family: var(--font-body); font-size: 1rem;
      color: #5A7A6A; margin-top: 20px; line-height: 1.7;
    }
    .pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .pillar {
      background: #F6F8F2; border: 1.5px solid #E2E8E4; border-radius: 18px;
      padding: 36px 30px 40px;
      transition: border-color 0.4s var(--ease-out-expo),
                  transform 0.4s var(--ease-out-expo),
                  box-shadow 0.4s var(--ease-out-expo);
      box-shadow: var(--shadow-sm);
      position: relative; overflow: hidden;
      text-align: center;
      will-change: transform;
    }
    .pillar:hover {
      border-color: var(--vert-foret); transform: translateY(-6px);
      box-shadow: var(--shadow-xl);
    }
    /* — Pilier engagement (distinctif) — */
    .pillar--highlight {
      border-color: rgba(201, 213, 90, 0.45);
      background: linear-gradient(165deg, #F6F8F2 60%, rgba(201, 213, 90, 0.08));
    }
    .pillar--highlight:hover { border-color: var(--lime); }
    .pillar-engagement-badge {
      display: inline-block;
      font-family: var(--font-mono); font-size: 0.58rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--vert-foret); background: rgba(201, 213, 90, 0.25);
      padding: 3px 10px; border-radius: 20px; margin-bottom: 14px;
    }
    .pillar-number {
      position: absolute; top: 16px; left: 20px;
      font-family: var(--font-mono); font-weight: 500; font-size: 0.65rem;
      color: rgba(27, 61, 47, 0.25); line-height: 1;
      letter-spacing: 0.04em;
      transition: color 0.2s ease;
    }
    .pillar:hover .pillar-number {
      color: var(--lime);
    }
    .pillar-icon {
      width: 56px; height: 56px; border-radius: 14px;
      background: rgba(201, 213, 90, 0.12);
      display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
      transition: transform 0.35s var(--ease-spring), background 0.35s ease, box-shadow 0.35s ease;
    }
    .pillar-icon svg { stroke: var(--vert-foret); }
    .pillar:hover .pillar-icon {
      transform: scale(1.1) translateY(-2px);
      background: rgba(201, 213, 90, 0.22);
      box-shadow: 0 4px 20px rgba(201, 213, 90, 0.18);
    }
    .pillar h3 {
      font-family: var(--font-heading); font-weight: 400; font-size: 1.2rem;
      letter-spacing: 0.02em; margin-bottom: 14px;
      color: var(--vert-foret);
    }
    .pillar p { font-size: 0.88rem; line-height: 1.7; color: #5A7A6A; }
    .pillar::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: var(--lime); transform: scaleX(0); transform-origin: left;
      transition: transform 0.2s ease;
    }
    .pillar:hover::after { transform: scaleX(1); }

    /* ENGAGED */
    .engaged {
      padding: clamp(72px, 10vw, 120px) 0;
      background: var(--lime); position: relative; overflow: hidden;
      box-shadow: 0 -1px 0 rgba(201, 213, 90, 0.3) inset, 0 1px 0 rgba(201, 213, 90, 0.3) inset;
    }
    .engaged::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background:
        radial-gradient(circle at 20% 50%, rgba(27, 61, 47, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(27, 61, 47, 0.04) 0%, transparent 45%);
      pointer-events: none;
    }
    .engaged-inner {
      text-align: center; max-width: 780px; margin: 0 auto;
      position: relative; z-index: 1;
    }
    .engaged-badge {
      display: inline-block;
      font-family: var(--font-subheading); font-size: 0.72rem; font-weight: 300;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--vert-foret); background: rgba(27, 61, 47, 0.08);
      padding: 8px 20px; border-radius: 100px; margin-bottom: 24px;
    }
    .engaged-title {
      font-family: var(--font-heading); font-size: clamp(1.4rem, 3.5vw, 2.2rem);
      font-weight: 400; line-height: 1.2; color: var(--vert-foret);
      margin-bottom: 24px;
    }
    .engaged-number {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 0;
      margin-bottom: 16px;
    }
    .engaged-counter {
      font-family: var(--font-heading);
      font-size: clamp(4rem, 10vw, 7rem);
      font-weight: 400;
      line-height: 1;
      color: var(--vert-foret);
    }
    .engaged-percent {
      font-family: var(--font-heading);
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 400;
      color: var(--vert-foret);
    }
    .engaged-counter.counted {
      animation: counterPop 0.5s ease both;
    }
    @keyframes counterPop {
      0% { transform: scale(1); }
      50% { transform: scale(1.3); }
      100% { transform: scale(1); }
    }
    .engaged-text {
      font-family: var(--font-body); font-size: 1.05rem; line-height: 1.7;
      color: rgba(27, 61, 47, 0.75); max-width: 640px; margin: 0 auto;
    }
    .engaged-bg-icon {
      position: absolute;
      top: 50%; right: 8%;
      transform: translateY(-50%);
      width: clamp(200px, 25vw, 400px);
      height: auto;
      color: var(--vert-foret);
      opacity: 0.06;
      pointer-events: none;
    }
    .engaged-bg-icon svg {
      width: 100%; height: auto;
    }

    /* TABLE */
    .table-section {
      background: var(--vert-foret-mid);
      border-top: 1px solid var(--border-dark);
      background-image:
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(201, 213, 90, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(201, 213, 90, 0.03) 0%, transparent 50%);
    }
    .table-section .section-title-huge { color: var(--blanc-chaud); }
    .table-header-row { text-align: center; max-width: 620px; margin: 0 auto 48px; }
    .nutrient-table { width: 100%; border-collapse: collapse; }
    .nutrient-table thead th {
      font-family: var(--font-subheading); font-size: 0.72rem; font-weight: 300;
      letter-spacing: 0.1em;  color: var(--text-on-dark-muted);
      padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border-dark);
    }
    .nutrient-table tbody tr {
      border-bottom: 1px solid var(--border-dark);
      transition: background 0.3s ease, transform 0.3s var(--ease-out-expo);
    }
    .nutrient-table tbody tr:hover {
      background: rgba(250, 250, 246, 0.05);
    }
    .nutrient-table tbody td {
      padding: 18px 20px; font-size: 0.92rem; vertical-align: middle;
      transition: color 0.3s ease;
    }
    .nutrient-table tbody tr:hover .table-nutrient { color: var(--lime); }
    .nutrient-table tbody tr:hover .table-row-number { transform: scale(1.15); display: inline-block; }
    .table-row-number {
      font-family: var(--font-body); font-weight: 400; font-size: 0.85rem;
      color: var(--lime); width: 40px;
    }
    .table-nutrient { font-family: var(--font-body); font-weight: 400; color: var(--blanc-chaud); }
    .table-role { color: var(--text-on-dark); }
    .table-source { font-family: var(--font-subheading); font-size: 0.78rem; color: var(--lime); }

    /* FINAL CTA */
    .final-cta {
      background: var(--vert-foret); text-align: center;
      padding: clamp(80px, 12vw, 140px) 24px;
      position: relative; overflow: hidden;
      border-top: 1px solid var(--border-dark);
    }
    .final-cta .section-title-huge {
      color: var(--blanc-chaud); margin-bottom: 24px; position: relative; z-index: 1;
    }
    .final-cta__badges {
      display: flex; gap: 10px; flex-wrap: wrap;
      justify-content: center; align-items: center;
      margin: 0 auto 36px;
      max-width: 600px;
      position: relative; z-index: 1;
    }
    .final-cta__badge {
      font-family: var(--font-body); font-size: 0.78rem;
      color: var(--text-on-dark);
      background: rgba(250, 250, 246, 0.06);
      border: 1px solid rgba(250, 250, 246, 0.1);
      padding: 8px 16px; border-radius: 100px;
      letter-spacing: 0.02em;
      white-space: nowrap;
    }
    .final-cta__badge s {
      color: var(--text-on-dark-muted);
      text-decoration: line-through;
    }
    .final-cta__badge strong {
      color: var(--lime); font-weight: 500;
    }
    .final-cta__check {
      display: inline-block;
      vertical-align: -2px;
      margin-right: 4px;
      margin-left: 2px;
    }
    .final-cta__sub s {
      color: var(--text-on-dark-muted);
      text-decoration: line-through;
    }
    .final-cta__sub {
      font-family: var(--font-body); font-size: 0.92rem;
      color: var(--text-on-dark-muted); margin: 0 auto 36px;
      max-width: 620px; line-height: 1.6;
      position: relative; z-index: 1;
    }
    .final-cta__sub strong {
      color: var(--lime); font-weight: 500;
    }
    /* Formulaire direct — sans encadré glassmorphism */
    .final-cta__form {
      display: flex; gap: 10px; flex-wrap: wrap;
      justify-content: center; align-items: center;
      max-width: 560px; margin: 0 auto;
      position: relative; z-index: 1;
    }
    .final-cta__form input {
      font-family: var(--font-body); font-size: 0.85rem;
      padding: 14px 18px; border: 1.5px solid rgba(250, 250, 246, 0.12);
      border-radius: 10px; background: rgba(250, 250, 246, 0.06);
      color: var(--blanc-chaud); outline: none;
      transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
      flex: 1 1 160px; min-width: 0;
    }
    .final-cta__form input::placeholder { color: var(--text-on-dark-muted); }
    .final-cta__form input:focus {
      border-color: var(--lime);
      box-shadow: 0 0 0 3px rgba(201, 213, 90, 0.12), 0 0 20px rgba(201, 213, 90, 0.06);
      background: rgba(250, 250, 246, 0.08);
    }
    .final-cta__form button {
      font-family: var(--font-body); font-weight: 500; font-size: 0.85rem;
      letter-spacing: 0.03em; padding: 14px 32px;
      background: var(--lime); color: var(--vert-foret); border: none;
      border-radius: 10px; cursor: pointer; white-space: nowrap;
      transition: all 0.35s var(--ease-out-expo);
      box-shadow: 0 4px 20px rgba(201, 213, 90, 0.3);
      position: relative; overflow: hidden;
    }
    .final-cta__form button::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
      transform: translateX(-100%);
      transition: transform 0.6s var(--ease-out-expo);
    }
    .final-cta__form button:hover::after { transform: translateX(100%); }
    .final-cta__form button:hover {
      background: var(--blanc-chaud); transform: translateY(-2px);
      box-shadow: var(--shadow-glow-strong), 0 4px 24px rgba(0, 0, 0, 0.15);
    }
    /* Preuve sociale renforcée */
    .final-cta .form-note {
      font-family: var(--font-body); font-size: 0.82rem;
      color: var(--text-on-dark-muted); margin-top: 20px; text-align: center;
      position: relative; z-index: 1;
    }
    .form-note__highlight {
      color: var(--lime); font-weight: 500;
    }
    .final-cta .form-success { position: relative; z-index: 1; }
    .final-cta .section-subtitle {
      max-width: 500px; margin: 0 auto 48px; position: relative; z-index: 1;
    }
    .final-cta .hero-form-wrap { animation: none; position: relative; z-index: 1; }

    /* WHATSAPP */
    .whatsapp-section {
      background: var(--vert-foret); padding: 48px 0;
      border-top: 1px solid var(--border-dark);
    }
    .whatsapp-row {
      display: flex; align-items: center; justify-content: center; gap: 24px;
    }
    .whatsapp-dot {
      width: 6px; height: 6px; border-radius: 50%; background: #25D366; flex-shrink: 0;
      animation: dotPulse 2s ease-in-out infinite;
    }
    @keyframes dotPulse {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }
    .whatsapp-text {
      font-family: var(--font-body); font-size: 0.9rem;
      color: var(--text-on-dark);
    }
    .whatsapp-btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-body); font-size: 0.82rem; font-weight: 400;
      color: var(--blanc-chaud);
      padding: 10px 22px; border-radius: 100px;
      border: 1px solid rgba(250, 250, 246, 0.15);
      text-decoration: none;
      transition: all 0.35s var(--ease-out-expo);
      background: rgba(250, 250, 246, 0.03);
    }
    .whatsapp-btn:hover {
      border-color: var(--lime); color: var(--lime);
      background: rgba(201, 213, 90, 0.08);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(201, 213, 90, 0.1);
    }
    .whatsapp-btn:hover svg { color: var(--lime); }
    .whatsapp-btn svg {
      flex-shrink: 0; color: var(--blanc-chaud); transition: color 0.1s ease;
    }
    @media (max-width: 900px) {
      .whatsapp-row { flex-direction: column; text-align: center; gap: 20px; }
      .whatsapp-dot { margin-bottom: 4px; }
      .whatsapp-btn { width: 100%; max-width: 320px; justify-content: center; }
    }

    /* FOOTER */
    .footer {
      border-top: 1px solid var(--border-dark); padding: 40px 0; background: var(--vert-foret);
      position: relative;
    }
    .footer::before {
      content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 120px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--lime), transparent);
    }
    .footer-inner { display: flex; justify-content: space-between; align-items: center; }
    .footer-logo img {
      height: 22px; width: auto; display: block; opacity: 0.7;
    }
    .footer-text {
      font-family: var(--font-subheading); font-size: 0.7rem; color: var(--text-on-dark-muted);
    }
    .footer-info {
      display: flex; flex-direction: column; align-items: center; gap: 8px;
    }
    .footer-legal {
      display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
    }
    .footer-legal-link {
      font-family: var(--font-subheading); font-size: 0.68rem;
      color: var(--text-on-dark-muted); text-decoration: none;
      transition: color 0.2s ease;
    }
    .footer-legal-link:hover { color: var(--lime); }

    /* FAQ */
    .faq {
      padding: clamp(64px, 10vw, 120px) 0;
      background: var(--blanc-chaud);
      color: var(--vert-foret);
    }
    .faq .section-title-huge { color: var(--vert-foret); }
    .faq .section-badge.light {
      background: rgba(27, 61, 47, 0.06);
      color: var(--vert-foret);
    }
    .faq-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
    .faq-subtitle {
      font-family: var(--font-body); font-size: 0.95rem;
      color: #5A7A6A; margin-top: 16px; line-height: 1.6;
    }
    .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
    .faq-item {
      border-bottom: 1px solid rgba(27, 61, 47, 0.1);
      transition: background 0.35s ease, border-color 0.35s ease;
      border-radius: 6px;
    }
    .faq-item:first-child { border-top: 1px solid rgba(27, 61, 47, 0.1); }
    .faq-item[open] {
      background: rgba(201, 213, 90, 0.04);
      border-color: rgba(201, 213, 90, 0.15);
    }
    .faq-question {
      font-family: var(--font-body); font-size: 1.05rem; font-weight: 500;
      color: var(--vert-foret); padding: 24px 16px;
      cursor: pointer; list-style: none;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      transition: color 0.2s ease;
    }
    .faq-question::-webkit-details-marker { display: none; }
    /* Chevron SVG */
    .faq-chevron {
      flex-shrink: 0;
      color: rgba(27, 61, 47, 0.3);
      transition: transform 0.35s var(--ease-out-expo), color 0.2s ease;
    }
    .faq-item[open] .faq-chevron {
      transform: rotate(180deg);
      color: var(--lime);
    }
    .faq-item[open] .faq-question { color: var(--lime); }
    .faq-question:hover { color: var(--lime); }
    .faq-question:hover .faq-chevron { color: var(--lime); }
    /* Slide-down answer */
    .faq-answer {
      padding: 0 16px 24px;
      animation: faqSlideDown 0.35s var(--ease-out-expo);
    }
    @keyframes faqSlideDown {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .faq-answer p {
      font-size: 0.92rem; line-height: 1.75; color: rgba(27, 61, 47, 0.72);
    }

    /* FAQ Contact */
    .faq-contact {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      margin-top: 64px;
      padding: 28px 0 0;
      border-top: 1px solid rgba(27, 61, 47, 0.08);
      max-width: 820px;
      margin-left: auto; margin-right: auto;
      scroll-margin-top: 100px;
    }
    .faq-contact__text {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      flex-shrink: 0;
    }
    .faq-contact__dot {
      display: block;
      width: 8px; height: 8px; border-radius: 50%;
      background: #25D366;
      box-shadow: 0 0 8px rgba(37, 211, 102, 0.4);
      animation: dotPulse 2s ease-in-out infinite;
      flex-shrink: 0;
      margin-top: 7px;
    }
    .faq-contact__title {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--vert-foret);
      margin-bottom: 2px;
      letter-spacing: -0.02em;
      line-height: 1.3;
    }
    .faq-contact p {
      font-family: var(--font-body); font-size: 0.8rem;
      color: rgba(27, 61, 47, 0.5); margin: 0;
      line-height: 1.5;
    }
    .faq-contact__links {
      display: flex;
      gap: 8px;
      flex-shrink: 0;
    }
    .faq-contact__btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.02em;
      padding: 10px 22px;
      border-radius: 100px;
      transition: all 0.3s var(--ease-out-expo);
    }
    /* WhatsApp */
    .faq-contact__btn:first-child {
      background: rgba(37, 211, 102, 0.08);
      color: #1a8f4a;
      border: 1px solid rgba(37, 211, 102, 0.2);
    }
    .faq-contact__btn:first-child:hover {
      background: rgba(37, 211, 102, 0.15);
      border-color: rgba(37, 211, 102, 0.35);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.12);
    }
    /* Email */
    .faq-contact__btn:last-child {
      background: rgba(27, 61, 47, 0.04);
      color: var(--vert-foret);
      border: 1px solid rgba(27, 61, 47, 0.1);
    }
    .faq-contact__btn:last-child:hover {
      background: rgba(27, 61, 47, 0.08);
      border-color: rgba(27, 61, 47, 0.2);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(27, 61, 47, 0.06);
    }

    /* ÉTATS INTERACTIFS — Feedback tactile et visuel */
    .nav-cta-btn:active,
    .product-preorder-btn:active,
    .signup-form button:active,
    .whatsapp-btn:active,
    .nav-mobile-cta:active {
      transform: scale(0.97);
      transition-duration: 0.05s;
    }
    .product-card:active,
    .pillar:active,
    .sp-card:active {
      transform: translateY(-1px);
      transition-duration: 0.05s;
    }

    /* RESPONSIVE — Tablette (768px) */
    @media (max-width: 1024px) {
      .pillars { grid-template-columns: repeat(2, 1fr); }
      .product-card { padding: 32px 28px; }
    }

    /* RESPONSIVE — Mobile (900px) */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-cta-btn { display: none; }
      .nav-hamburger { display: flex; }
      .nav.scrolled .nav-inner { padding: 10px 20px; }
      .hero { min-height: auto; padding: 130px 24px 0; }
      .hero-inner { flex-direction: column; gap: 24px; align-items: center; }
      .hero-content { text-align: center; flex: 1 1 auto; padding-bottom: 0; }
      .hero-product { flex: 0 0 auto; }
      .hero-product__img { width: 220px; }
      .hero-product__glow { width: 240px; height: 240px; }
      .hero::after { width: 350px; height: 350px; bottom: 0; right: 5%; }
      .hero-cta-group { justify-content: center; }
      .hero-social-proof { text-align: center; }
      .hero-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
      .hero-cta-btn { font-size: 0.82rem; padding: 14px 28px; }
      .hero-form-wrap { padding: 24px 20px; }
      .product-buttons { flex-direction: column; align-items: center; gap: 12px; }
      .founder-quote { flex-direction: column; padding: 24px; }

      .pillars { grid-template-columns: 1fr; }
      .signup-form .form-fields { grid-template-columns: 1fr; }
      .signup-form button { width: 100%; }
      .final-cta__form { flex-direction: column; }
      .final-cta__form input { width: 100%; flex: 0 0 auto; }
      .final-cta__form button { width: 100%; }
      .nutrient-table thead { display: none; }
      .nutrient-table tbody td {
        display: flex; align-items: baseline; gap: 8px;
        padding: 6px 20px;
      }
      .nutrient-table tbody td::before {
        content: attr(data-label);
        font-family: var(--font-subheading); font-size: 0.62rem;
        font-weight: 300; letter-spacing: 0.06em;
        color: var(--text-on-dark-muted);
        min-width: 70px; flex-shrink: 0;
      }
      .nutrient-table tbody td:first-child { padding-top: 18px; }
      .nutrient-table tbody td:last-child { padding-bottom: 18px; }
      .nutrient-table tbody tr {
        border-bottom: 1px solid var(--border-dark);
      }
      .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
      .faq-contact { flex-direction: column; align-items: flex-start; gap: 20px; padding: 24px 0 0; margin-top: 40px; }
      .faq-contact__text { gap: 10px; }
      .faq-contact__title { font-size: 1.05rem; }
      .faq-contact__links { width: 100%; }
      .faq-contact__btn { flex: 1; justify-content: center; font-size: 0.72rem; padding: 9px 16px; }
      /* Fondus marquee plus étroits sur mobile */
      .marquee-wrap::before, .marquee-wrap::after { width: 48px; }
    }

    /* RESPONSIVE — Intermédiaire (600px) — grands phones / petites tablettes */
    @media (max-width: 600px) {
      .hero-form-wrap { padding: 22px 18px; }
      .hero-form-title { font-size: 0.88rem; }
      .hero-form-sub { font-size: 0.65rem; margin-bottom: 14px; }
      .signup-form button { font-size: 0.78rem; padding: 12px 18px; }
      .marquee-wrap::before, .marquee-wrap::after { width: 36px; }
      .constat-header { margin-bottom: 40px; }
      .engaged-text { font-size: 0.95rem; }
      .hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); }
      .hero-subtitle__secondary { font-size: 1em; }
    }

    /* RESPONSIVE — Petit mobile (480px) */
    @media (max-width: 480px) {
      .hero { padding: 110px 16px 0; }
      .hero-title { font-size: clamp(1.6rem, 5.5vw, 2.4rem); margin-bottom: 18px; }
      .hero-subtitle { margin-bottom: 16px; }
      .hero-product__img { width: 180px; }
      .hero-product__glow { width: 200px; height: 200px; }
      .hero::after { width: 250px; height: 250px; }
      .hero-cta-group { flex-direction: column; align-items: center; }
      .nutrient-badge { font-size: 0.58rem; padding: 4px 10px; }
      .container { padding: 0 16px; }
      .product-card { padding: 28px 20px; }
      /* Point 5 — Bouton précommander toujours visible sur mobile */
      .product-preorder-btn {
        position: sticky;
        bottom: 0;
        z-index: 2;
        background: var(--lime);
        box-shadow: 0 -8px 24px rgba(27, 61, 47, 0.6);
      }
      .pillar { padding: 32px 24px; }
      .engaged-title { font-size: clamp(1.2rem, 4vw, 1.8rem); }
      .hero-form-wrap { padding: 18px 14px; }
      .marquee-wrap::before, .marquee-wrap::after { width: 24px; }
      .hero-badge { font-size: 0.68rem; padding: 6px 14px; }
      .signup-form button {
        font-size: 0.78rem; padding: 14px 16px;
        text-align: center; line-height: 1.4;
      }
    }

    /* ══════════════════════════════════════
       AMÉLIORATIONS MOBILE — Audit mars 2026
       ══════════════════════════════════════ */

    /* #5 — Désactiver blobs animés sur mobile (perf GPU) */
    @media (max-width: 768px) {
      .blob {
        display: none;
      }
    }

    /* #7 — Désactiver noise overlay sur mobile (perf GPU) */
    @media (max-width: 768px) {
      body::before {
        display: none;
      }
    }

    /* #6 — Remplacer meshShift par animation compositable sur mobile */
    @media (max-width: 768px) {
      .hero::before {
        animation: none;
      }
    }

    /* #10 — CTA sticky global en bas d'écran sur mobile */
    @media (max-width: 900px) {
      .mobile-sticky-cta {
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 250;
        padding: 12px 16px;
        background: rgba(27, 61, 47, 0.95);
        backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid rgba(201, 213, 90, 0.15);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
        display: flex;
        justify-content: center;
      }
      .mobile-sticky-cta .mobile-sticky-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 400px;
        font-family: var(--font-body);
        font-weight: 500;
        font-size: 0.88rem;
        letter-spacing: 0.03em;
        color: var(--vert-foret);
        background: var(--lime);
        border: none;
        padding: 14px 28px;
        border-radius: 10px;
        text-decoration: none;
        text-align: center;
        min-height: 44px;
        box-shadow: 0 4px 16px rgba(201, 213, 90, 0.3);
        transition: background 0.3s var(--ease-out-expo), transform 0.2s ease;
      }
      .mobile-sticky-cta .mobile-sticky-btn:active {
        transform: scale(0.97);
      }
      /* Compenser le sticky CTA en bas pour ne pas masquer le footer */
      .footer { padding-bottom: 80px; }
    }
    @media (min-width: 901px) {
      .mobile-sticky-cta { display: none; }
    }

    /* #11 — Réduire margins hero sur mobile pour rapprocher le CTA du fold */
    @media (max-width: 600px) {
      .hero-badge { margin-bottom: 16px; }
    }
    @media (max-width: 480px) {
      .hero-badge { margin-bottom: 12px; }
      .hero-title { margin-bottom: 12px; }
      .hero-subtitle { margin-bottom: 12px; }
      .sp-trust-bar { margin-bottom: 20px; }
    }

    /* #9 — Piliers : 1 colonne dès 768px */
    @media (max-width: 768px) {
      .pillars { grid-template-columns: 1fr; }
    }

    /* #10 (stats) — Breakpoint intermédiaire pour les stats constat */
    @media (max-width: 768px) and (min-width: 601px) {
      .constat-stats { grid-template-columns: repeat(2, 1fr); }
    }

    /* #18 — Footer liens légaux plus grands sur mobile */
    @media (max-width: 600px) {
      .footer-legal-link { font-size: 0.78rem; }
      .footer-legal { gap: 20px; }
    }

    /* #19 — Boutons FAQ contact empilés sur petit mobile */
    @media (max-width: 480px) {
      .faq-contact__links {
        flex-direction: column;
        gap: 8px;
      }
      .faq-contact__btn {
        width: 100%;
        justify-content: center;
      }
    }

    /* #15 — Harmonisation border-radius boutons (8px Brand Guidelines) */
    .hero-cta-btn,
    .hero-cta-btn--primary,
    .hero-cta-btn--dark,
    .product-preorder-btn,
    .signup-form button,
    .final-cta__form button {
      border-radius: 8px;
    }
    .signup-form input {
      border-radius: 8px;
    }

    /* ══════════════════════════════════════
       HERO MOBILE — Refonte visuelle v2 mars 2026
       Corrige : trust bar, sous-titre, image,
       espacements, CTA, compteur, badge dot
       ══════════════════════════════════════ */

    /* --- iPhone / mobile ≤ 900px --- */
    @media (max-width: 900px) {

      /* Layout global — contenu en haut, image collée au bas */
      .hero {
        padding: 100px 20px 0;
        min-height: auto;
        justify-content: flex-start;
        align-items: center;
      }
      .hero-inner {
        gap: 8px;
        justify-content: flex-start;
        align-items: center;
      }
      .hero-content {
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
      }

      /* ① Badge — dot atténué (point 7) */
      .hero-badge {
        margin-bottom: 18px;
        font-size: 0.72rem;
        padding: 7px 16px;
        background: rgba(27, 61, 47, 0.06);
        border: 1px solid rgba(27, 61, 47, 0.1);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
      }
      .hero-badge::before {
        width: 5px;
        height: 5px;
        opacity: 0.25;
        background: var(--lime);
      }

      /* ② Titre — 18px de marge basse (rythme régulier) */
      .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.4rem);
        margin-bottom: 14px;
        line-height: 1.18;
        letter-spacing: -0.03em;
      }

      /* ③ Sous-titre — compact, 1 ligne max sur mobile */
      .hero-subtitle {
        font-size: 0.82rem;
        line-height: 1.55;
        margin: 0 auto 16px;
        max-width: 100%;
        color: rgba(27, 61, 47, 0.65);
        white-space: nowrap;
      }
      .hero-subtitle .accent {
        font-weight: 500;
        color: rgba(27, 61, 47, 0.8);
      }
      .hero-subtitle__secondary {
        display: block;
        margin-top: 2px;
        font-size: 0.95em;
        color: rgba(27, 61, 47, 0.55);
        font-style: italic;
        white-space: normal;
      }

      /* ④ Trust bar — items de même largeur, alignés (point 1) */
      .sp-trust-bar {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        gap: 6px;
        width: auto;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
      }
      .sp-trust-sep {
        display: none;
      }
      .sp-trust-item {
        width: auto;
        justify-content: center;
        font-size: 0.63rem;
        padding: 5px 12px;
        background: rgba(27, 61, 47, 0.035);
        border: 1px solid rgba(27, 61, 47, 0.08);
        border-radius: 100px;
      }

      /* ⑤ CTA — compact, auto-width */
      .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: auto;
        max-width: none;
        margin: 0 auto 8px;
      }
      .hero-cta-btn {
        width: auto;
        text-align: center;
        font-size: 0.84rem;
        padding: 12px 36px;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(201, 213, 90, 0.25),
                    0 1px 3px rgba(201, 213, 90, 0.15);
      }

      /* ⑥ Compteur — inline, discret */
      .hero-counter {
        width: auto;
        justify-content: center;
        padding: 6px 14px;
        border-radius: 100px;
        border: 1px solid rgba(27, 61, 47, 0.06);
        background: rgba(27, 61, 47, 0.02);
        opacity: 0.7;
        margin-top: 0;
      }
      .hero-counter__pulse {
        width: 7px;
        height: 7px;
      }
      .hero-counter__number {
        font-size: 0.88rem;
        color: rgba(27, 61, 47, 0.8);
      }
      .hero-counter__label {
        font-size: 0.75rem;
        color: rgba(27, 61, 47, 0.5);
      }


      /* Supprimer tout espace entre hero et section suivante */
      .hero + section,
      .hero + .constat {
        margin-top: -1px;
      }

      /* Background — très subtil, pas de halo visible */
      .hero::before {
        background:
          radial-gradient(ellipse 70% 50% at 50% 25%, rgba(201, 213, 90, 0.07) 0%, transparent 60%),
          radial-gradient(ellipse 50% 50% at 20% 70%, rgba(27, 61, 47, 0.06) 0%, transparent 50%),
          radial-gradient(ellipse 40% 35% at 80% 75%, rgba(46, 92, 70, 0.05) 0%, transparent 45%);
      }
      .hero::after {
        width: 250px;
        height: 250px;
        bottom: 5%;
        right: -10%;
        opacity: 0.25;
      }
    }

    /* --- Petit mobile ≤ 480px --- */
    @media (max-width: 480px) {
      .hero {
        padding: 90px 16px 0;
      }
      .hero-badge {
        margin-bottom: 14px;
      }
      .hero-title {
        font-size: clamp(1.55rem, 6.5vw, 2rem);
        margin-bottom: 12px;
      }
      .hero-subtitle {
        font-size: 0.78rem;
        margin-bottom: 14px;
      }
      .sp-trust-bar {
        margin-bottom: 16px;
      }
      .sp-trust-item {
        font-size: 0.6rem;
        padding: 4px 10px;
      }
      .hero-cta-btn {
        font-size: 0.82rem;
        padding: 12px 32px;
      }
    }

    /* --- Très petit écran ≤ 380px (iPhone SE) --- */
    @media (max-width: 380px) {
      .hero {
        padding: 80px 14px 0;
      }
      .hero-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
        margin-bottom: 12px;
      }
      .hero-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
      }
      .hero-subtitle {
        font-size: 0.72rem;
        margin-bottom: 12px;
      }
      .sp-trust-bar {
        gap: 4px;
        margin-bottom: 14px;
      }
    }

    /* ══════════════════════════════════════
       SECTION DIVIDERS — Organic wave separators
       ══════════════════════════════════════ */
    .section-divider {
      line-height: 0;
      overflow: hidden;
      position: relative;
      z-index: 2;
    }
    .section-divider svg {
      display: block;
      width: 100%;
      height: 60px;
    }
    .section-divider--hero-to-dark {
      background: var(--vert-foret);
      margin-top: -1px;
      position: relative;
      z-index: 1;
    }
    .section-divider--dark {
      background: var(--vert-foret-mid);
    }
    .section-divider--dark svg {
      height: 80px;
    }
    .section-divider--to-lime {
      background: var(--vert-foret);
    }
    .section-divider--to-lime svg {
      height: 80px;
    }

    /* ══════════════════════════════════════
       COUNTDOWN — Launch timer
       ══════════════════════════════════════ */
    .countdown-section {
      background: var(--vert-foret);
      padding: clamp(80px, 12vw, 140px) 0;
      position: relative;
      text-align: center;
    }
    .countdown-section::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 213, 90, 0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .countdown-inner {
      max-width: 700px;
      margin: 0 auto;
      position: relative; z-index: 1;
    }
    .countdown-timer {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin: 32px 0 40px;
    }
    .countdown-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      min-width: 90px;
    }
    .countdown-value {
      font-family: var(--font-heading);
      font-size: clamp(3rem, 8vw, 5rem);
      font-weight: 400;
      line-height: 1;
      color: var(--lime);
      text-shadow: 0 0 40px rgba(201, 213, 90, 0.3);
      font-variant-numeric: tabular-nums;
    }
    .countdown-label {
      font-family: var(--font-subheading);
      font-size: 0.7rem;
      font-weight: 300;
      letter-spacing: 0.1em;
      color: var(--text-on-dark-muted);
      text-transform: uppercase;
    }
    .countdown-sep {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 5vw, 3.5rem);
      color: var(--text-on-dark-faint);
      line-height: 1;
      margin-top: -20px;
    }
    .countdown-actions {
      justify-content: center;
    }
    .countdown-actions .hero-counter {
      border-color: rgba(250, 250, 246, 0.1);
      background: rgba(250, 250, 246, 0.04);
    }
    .countdown-actions .hero-counter__label {
      color: var(--text-on-dark-muted);
    }
    .countdown-proof__number {
      font-family: 'Geist Mono', monospace;
      font-size: 1rem;
      font-weight: 400;
      color: var(--blanc-chaud);
      letter-spacing: -0.01em;
      font-variant-numeric: tabular-nums;
    }
    @media (max-width: 600px) {
      .countdown-unit { min-width: 60px; }
      .countdown-value { font-size: clamp(2.2rem, 10vw, 3.5rem); }
      .countdown-sep { font-size: 1.8rem; }
      .countdown-timer { gap: 4px; margin: 36px 0 32px; }
    }
    @media (max-width: 380px) {
      .countdown-unit { min-width: 50px; }
      .countdown-value { font-size: 2rem; }
    }

    /* ══════════════════════════════════════
       TESTIMONIALS — Social Proof Section
       ══════════════════════════════════════ */
    .testimonials {
      background: var(--vert-foret);
      padding: clamp(64px, 10vw, 100px) 0;
      position: relative;
    }
    .testimonials::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(201, 213, 90, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 80% 70%, rgba(201, 213, 90, 0.05) 0%, transparent 50%);
      pointer-events: none;
    }
    .testimonials-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 56px;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .testimonial-card {
      background: rgba(250, 250, 246, 0.04);
      border: 1px solid rgba(250, 250, 246, 0.08);
      border-radius: 18px;
      overflow: hidden;
      transition: transform 0.4s var(--ease-out-expo),
                  box-shadow 0.4s var(--ease-out-expo),
                  border-color 0.35s ease;
    }
    .testimonial-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), var(--shadow-glow);
      border-color: rgba(201, 213, 90, 0.2);
    }
    .testimonial-card__img {
      height: 180px;
      overflow: hidden;
      position: relative;
    }
    .testimonial-card__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease-out-expo);
    }
    .testimonial-card:hover .testimonial-card__img img {
      transform: scale(1.05);
    }
    .testimonial-card__img::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 40%;
      background: linear-gradient(to top, rgba(27, 61, 47, 0.6) 0%, transparent 100%);
      pointer-events: none;
    }
    .testimonial-card__body {
      padding: 20px 20px 24px;
    }
    .testimonial-card__stars {
      font-size: 0.75rem;
      color: var(--lime);
      letter-spacing: 2px;
      margin-bottom: 10px;
      text-shadow: 0 0 8px rgba(201, 213, 90, 0.35);
    }
    .testimonial-card__quote {
      font-family: var(--font-heading);
      font-size: 0.88rem;
      font-style: italic;
      font-weight: 400;
      line-height: 1.6;
      color: var(--text-on-dark);
      margin-bottom: 16px;
    }
    .testimonial-card__footer {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .testimonial-card__name {
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--blanc-chaud);
    }
    .testimonial-card__tag {
      font-family: var(--font-subheading);
      font-size: 0.62rem;
      font-weight: 300;
      letter-spacing: 0.06em;
      color: var(--lime);
      background: rgba(201, 213, 90, 0.1);
      border: 1px solid rgba(201, 213, 90, 0.2);
      padding: 3px 10px;
      border-radius: 100px;
    }
    @media (max-width: 900px) {
      .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 16px;
      }
    }
    @media (max-width: 600px) {
      .testimonial-card__img { height: 150px; }
      .testimonial-card__body { padding: 16px 16px 20px; }
      .testimonial-card__quote { font-size: 0.82rem; }
    }

    /* ══════════════════════════════════════
       TRUST BAR — Reassurance strip
       ══════════════════════════════════════ */
    .trust-bar-section {
      background: var(--blanc-chaud);
      padding: clamp(40px, 6vw, 72px) 0;
      border-bottom: 1px solid rgba(27, 61, 47, 0.06);
    }
    .trust-bar-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .trust-bar-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 20px;
      border-radius: 14px;
      background: rgba(27, 61, 47, 0.02);
      border: 1px solid rgba(27, 61, 47, 0.06);
      transition: transform 0.35s var(--ease-out-expo),
                  box-shadow 0.35s var(--ease-out-expo),
                  border-color 0.35s ease;
    }
    .trust-bar-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(27, 61, 47, 0.06);
      border-color: rgba(201, 213, 90, 0.3);
    }
    .trust-bar-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(201, 213, 90, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--vert-foret);
      transition: background 0.3s ease, transform 0.3s var(--ease-spring);
    }
    .trust-bar-item:hover .trust-bar-icon {
      background: rgba(201, 213, 90, 0.22);
      transform: scale(1.08);
    }
    .trust-bar-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .trust-bar-text strong {
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--vert-foret);
      line-height: 1.3;
    }
    .trust-bar-text span {
      font-family: var(--font-body);
      font-size: 0.75rem;
      color: rgba(27, 61, 47, 0.55);
      line-height: 1.4;
    }
    @media (max-width: 1024px) {
      .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .trust-bar-grid { grid-template-columns: 1fr; gap: 12px; }
      .trust-bar-item { padding: 16px; }
      .trust-bar-icon { width: 38px; height: 38px; border-radius: 10px; }
      .trust-bar-text strong { font-size: 0.8rem; }
      .trust-bar-text span { font-size: 0.7rem; }
    }

    /* ══════════════════════════════════════
       ENHANCED NUTRIENT CARDS — Glassmorphism
       ══════════════════════════════════════ */
    .nutrient-card {
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .nutrient-card:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 12px rgba(201, 213, 90, 0.08);
    }

    /* ══════════════════════════════════════
       ENHANCED CONSTAT STATS — Subtle glow
       ══════════════════════════════════════ */
    .constat-stat {
      position: relative;
      padding: 16px 12px;
      border-radius: 12px;
      transition: background 0.3s ease;
    }
    .constat-stat:hover {
      background: rgba(250, 250, 246, 0.03);
    }
    .constat-stat__number {
      text-shadow: 0 0 30px rgba(201, 213, 90, 0.3);
    }
