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

  :root {
    --black: #F5F5F0;
    --deep: #EAEAE4;
    --charcoal: #D0D0C8;
    --midgray: #6B6B65;
    --ash: #3A3A38;
    --offwhite: #0E0E0E;
    --white: #111110;
    --lime: #2A7A55;
    --lime-light: #1F6044;
    --lime-dark: #3D9E72;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ── ANNOUNCEMENT BAR ── */
  .bar {
    background: #111110;
    color: #F5F5F0;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .bar strong { font-weight: 700; }

  /* ── NAV ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245,245,240,0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
  }
  .nav-logo {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #111110;
    text-decoration: none;
  }
  .nav-logo span { color: var(--lime); }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--midgray);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: #111110; }
  .nav-cta {
    background: #111110;
    color: #F5F5F0;
    border: none;
    padding: 10px 22px;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: #2A7A55; transform: scale(1.02); }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 48px 80px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: var(--black);
    z-index: 0;
  }
  .hero-bg::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(42,122,85,0.07) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42,122,85,0.04) 0%, transparent 70%);
    border-radius: 50%;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    animation: fadeUp 0.8s ease both;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(42,122,85,0.08);
    border: 1px solid rgba(42,122,85,0.2);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--lime);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .hero-badge::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background: var(--lime);
    border-radius: 50%;
  }

  .hero h1 {
    font-size: clamp(48px, 12vw, 96px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: #111110;
    margin-bottom: 24px;
    text-transform: uppercase;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--lime);
  }

  .hero-sub {
    font-size: 17px;
    font-weight: 400;
    color: var(--midgray);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 480px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 52px;
  }

  .btn-primary {
    background: #111110;
    color: #F5F5F0;
    border: none;
    padding: 16px 34px;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-primary:hover {
    background: var(--lime);
    color: #F5F5F0;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(42,122,85,0.2);
  }
  .btn-primary .arrow {
    display: inline-block;
    transition: transform 0.2s;
  }
  .btn-primary:hover .arrow { transform: translateX(4px); }

  .btn-ghost {
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: transparent;
    color: var(--midgray);
    border: 1px solid rgba(0,0,0,0.15);
    padding: 15px 28px;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-ghost:hover {
    border-color: rgba(0,0,0,0.3);
    color: #111110;
  }

  .hero-proof {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  .proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--midgray);
  }
  .proof-icon {
    width: 18px;
    height: 18px;
    background: rgba(42,122,85,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .proof-icon svg { width: 10px; height: 10px; }

  .hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 46%;
    z-index: 1;
    overflow: hidden;
    animation: fadeIn 1.2s ease both;
  }
  .hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .product-display {
    position: relative;
    width: 380px;
    height: 500px;
  }

  .pill-canister {
    position: absolute;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    overflow: hidden;
  }

  .canister-main {
    width: 170px;
    height: 340px;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.1);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
  }
  .canister-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--lime);
    border-radius: 20px 20px 0 0;
  }

  .canister-label {
    text-align: center;
  }
  .canister-brand { font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--midgray); }
  .canister-name { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; text-transform: uppercase; color: #111110; line-height: 1.1; margin: 6px 0; }
  .canister-sub { font-size: 10px; color: var(--midgray); }

  .canister-capsules {
    display: flex;
    gap: 4px;
  }
  .capsule {
    width: 12px;
    height: 28px;
    border-radius: 999px;
    background: var(--lime);
    opacity: 0.9;
  }
  .capsule:nth-child(2) { opacity: 0.6; transform: scale(0.85); }
  .capsule:nth-child(3) { opacity: 0.4; transform: scale(0.7); }

  .canister-secondary {
    width: 130px;
    height: 260px;
    background: #EAEAE4;
    border: 1px solid rgba(0,0,0,0.08);
    position: absolute;
    right: 10px;
    bottom: 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    gap: 8px;
    transform: rotate(4deg);
  }
  .cs-brand { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--midgray); }
  .cs-name { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; text-transform: uppercase; color: #111110; }
  .cs-badge {
    background: var(--lime);
    color: #F5F5F0;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    margin-top: 4px;
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    border-top: 1px solid rgba(0,0,0,0.07);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    background: #FFFFFF;
    overflow: hidden;
    position: relative;
    padding: 0;
  }
  @media (max-width: 900px) {
    .trust-bar {
      display: none;
    }
  }
  .trust-bar::before,
  .trust-bar::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }
  .trust-bar::before { left: 0; background: linear-gradient(to right, #FFFFFF, transparent); }
  .trust-bar::after  { right: 0; background: linear-gradient(to left, #FFFFFF, transparent); }
  .trust-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: marquee 28s linear infinite;
    padding: 18px 0;
  }
  .trust-track:hover { animation-play-state: paused; }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--midgray);
    padding: 0 40px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .trust-num {
    font-size: 20px;
    font-weight: 600;
    color: #111110;
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }
  .trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    flex-shrink: 0;
  }
  .trust-divider { display: none; }

  /* ── MOBILE ONLY TRUST BAR ── */
  .trust-bar-mobile {
    display: none;
  }

  @media (max-width: 900px) {
    .trust-bar-mobile {
      display: block;
      border-top: 1px solid rgba(0,0,0,0.07);
      border-bottom: 1px solid rgba(0,0,0,0.07);
      background: #FFFFFF;
      overflow: hidden;
      position: relative;
      padding: 0;
      margin-top: 32px;
      margin-bottom: -12px;
      width: 100vw;
      margin-left: -24px;
      margin-right: -24px;
    }
    .trust-bar-mobile::before,
    .trust-bar-mobile::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 20px;
      z-index: 2;
      pointer-events: none;
    }
    .trust-bar-mobile::before { left: 0; background: linear-gradient(to right, #FFFFFF, transparent); }
    .trust-bar-mobile::after  { right: 0; background: linear-gradient(to left, #FFFFFF, transparent); }
    .trust-bar-mobile .trust-track {
      display: flex;
      align-items: center;
      gap: 0;
      width: max-content;
      animation: marquee 28s linear infinite;
      padding: 14px 0;
    }
    .trust-bar-mobile .trust-track:hover { animation-play-state: paused; }
    .trust-bar-mobile .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--midgray);
      padding: 0 24px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .trust-bar-mobile .trust-num {
      font-size: 16px;
      font-weight: 600;
      color: #111110;
      letter-spacing: -0.01em;
      text-transform: uppercase;
    }
    .trust-bar-mobile .trust-dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(0,0,0,0.15);
      flex-shrink: 0;
    }
  }

  /* ── HOW IT WORKS ── */
  .how {
    padding: 96px 48px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .section-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .section-tag img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
  }
  .section-h {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #111110;
    line-height: 1.1;
    margin-bottom: 56px;
    max-width: 480px;
    text-transform: uppercase;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .step {
    background: #FFFFFF;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    border: 1px solid rgba(0,0,0,0.06);
  }
  .step:first-child { border-radius: 16px 0 0 16px; }
  .step:last-child { border-radius: 0 16px 16px 0; }
  .step:hover { background: #F8F8F4; }
  .step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.3s;
  }
  .step:hover::before { background: var(--lime); }

  .step-num {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--lime);
    margin-bottom: 20px;
    opacity: 0.8;
  }
  .step-icon {
    width: 48px;
    height: 48px;
    background: rgba(42,122,85,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .step-icon svg { width: 22px; height: 22px; stroke: var(--lime); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111110;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }
  .step p {
    font-size: 14px;
    color: var(--midgray);
    line-height: 1.65;
  }

  /* ── QUIZ CTA BLOCK ── */
  .quiz-cta {
    margin: 0 48px 96px;
    background: #111110;
    border-radius: 24px;
    border: none;
    padding: 72px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    overflow: hidden;
  }
  .quiz-cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42,122,85,0.2) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
  }

  .quiz-left { position: relative; z-index: 1; max-width: 540px; }
  .quiz-left .section-tag { color: #5DCF96; margin-bottom: 12px; }
  .quiz-left h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase;
  }
  .quiz-left h2 em { font-style: normal; color: #5DCF96; }
  .quiz-left p {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-bottom: 32px;
  }

  .quiz-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
  }
  .qstat {
    text-align: center;
  }
  .qstat-num {
    font-size: 36px;
    font-weight: 600;
    color: #5DCF96;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    display: block;
  }
  .qstat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.4;
    margin-top: 4px;
  }

  /* ── WHAT YOU GET ── */
  .what {
    padding: 0 48px 96px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .what-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 0;
  }
  .what-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    padding: 36px;
    transition: border-color 0.3s;
  }
  .what-card:hover { border-color: rgba(42,122,85,0.25); }
  .what-card:first-child {
    grid-column: span 2;
    display: flex;
    gap: 40px;
    align-items: center;
  }
  .what-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(42,122,85,0.07);
    border: 1px solid rgba(42,122,85,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 20px;
  }
  .what-icon svg { width: 24px; height: 24px; stroke: var(--lime); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .what-card:first-child .what-icon { margin-bottom: 0; }
  .what-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111110;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  .what-card p {
    font-size: 14px;
    color: var(--midgray);
    line-height: 1.65;
  }

  /* ── REVIEWS ── */
  .reviews {
    padding: 0 48px 96px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
  }
  .review-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    padding: 28px;
  }
  .stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
  }
  .star {
    width: 14px;
    height: 14px;
    background: var(--lime);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  }
  .review-text {
    font-size: 14px;
    color: #3A3A38;
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .reviewer-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(42,122,85,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--lime);
    flex-shrink: 0;
  }
  .reviewer-name { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; text-transform: uppercase; color: #111110; }
  .reviewer-sub { font-size: 12px; color: var(--midgray); }

  /* ── FINAL CTA ── */
  .final-cta {
    background: #111110;
    margin: 0 48px 96px;
    border-radius: 24px;
    padding: 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: rgba(42,122,85,0.15);
    border-radius: 50%;
    pointer-events: none;
  }
  .final-cta h2 {
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    line-height: 1.05;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
  }
  .final-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
  }
  .btn-dark {
    background: var(--lime);
    color: #FFFFFF;
    border: none;
    padding: 18px 40px;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
  }
  .btn-dark:hover {
    background: var(--lime-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(42,122,85,0.3);
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    background: #FFFFFF;
  }
  .footer-logo { display: flex; align-items: center; }
  .footer-logo span { color: var(--lime); }
  .footer-links { display: flex; gap: 28px; list-style: none; }
  .footer-links a { font-size: 13px; color: var(--midgray); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: #111110; }
  .footer-copy { font-size: 12px; color: #AAAAAA; }

  /* ── MOBILE NAV ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .nav-hamburger img {
    transition: transform 0.35s ease, opacity 0.2s;
  }
  .nav-hamburger.open img {
    transform: rotate(45deg) scale(1.1);
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #F5F5F0;
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }
  .mobile-menu a {
    font-size: 28px;
    font-weight: 600;
    color: #111110;
    text-decoration: none;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--lime); }
  .mobile-menu .nav-cta {
    font-size: 16px;
    padding: 14px 36px;
    margin-top: 8px;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-actions.desktop { display: none; }
    .nav-hamburger { display: flex; }
    .mobile-menu { display: flex; }

    .hero {
      padding: 60px 24px 16px;
      min-height: auto;
      padding-top: 72px;
      flex-direction: column;
    }
    .hero-actions { margin-bottom: 20px; }
    .hero-visual {
      position: relative;
      width: 100vw;
      margin-left: -24px;
      margin-right: -24px;
      height: auto;
      overflow: visible;
      padding: 0;
      margin-top: 12px;
    }
    .hero-visual img { width: 100%; height: auto; display: block; object-fit: unset; }
    .hero-content { max-width: 100%; }
    .hero h1 { font-size: clamp(40px, 11vw, 56px);
    text-transform: uppercase;
  }
    .hero-sub { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-ghost { width: 100%; justify-content: center; text-align: center; }
    .hero-proof { flex-direction: column; gap: 12px; }

    .trust-num { font-size: 16px; }

    .how { padding: 64px 24px; }
    .steps { grid-template-columns: 1fr; gap: 2px; }
    .step:first-child { border-radius: 16px 16px 0 0; }
    .step:last-child { border-radius: 0 0 16px 16px; }

    .quiz-cta {
      margin: 0 24px 64px;
      flex-direction: column;
      padding: 40px 32px;
      gap: 32px;
    }
    .quiz-stats { justify-content: space-around; width: 100%; }

    .what { padding: 0 24px 64px; }
    .what-grid { grid-template-columns: 1fr; }
    .what-card:first-child { grid-column: span 1; flex-direction: column; }

    .reviews { padding: 0 24px 64px; }
    .reviews-grid { grid-template-columns: 1fr; }

    .final-cta { margin: 0 24px 64px; padding: 48px 32px; }
    .final-cta h2 { font-size: clamp(40px, 5.5vw, 68px);
    text-transform: uppercase;
  }

    footer {
      padding: 32px 24px;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
    .footer-links { flex-wrap: wrap; gap: 16px; }

    .quiz-modal { padding: 36px 28px; border-radius: 20px 20px 0 0; }
    .quiz-overlay { align-items: flex-end; }
    .quiz-q { font-size: 17px; }

    .section-h { font-size: clamp(36px, 5vw, 60px); margin-bottom: 36px;
    text-transform: uppercase;
  }
  }

  @media (max-width: 480px) {
    .bar { font-size: 12px; }
    .hero h1 { font-size: clamp(40px, 11vw, 56px);
    text-transform: uppercase;
  }
    .step { padding: 28px 24px; }
    .quiz-cta { padding: 32px 24px; }
    .qstat-num { font-size: 28px; }
    .final-cta { padding: 40px 24px; }
  }



  /* ── WHAT FLOAT LAYOUT ── */
  .what-float-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 48px;
    min-height: 480px;
    align-items: end;
  }
  .what-float-text {
    padding-bottom: 48px;
    max-width: 480px;
  }
  .what-float-text .section-h {
    margin-bottom: 20px;
  }
  .what-float-lead {
    font-size: 16px;
    color: var(--midgray);
    line-height: 1.65;
    max-width: 380px;
  }
  .what-float-product {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 0;
  }
  .what-float-bag {
    width: 72%;
    max-width: 340px;
    height: auto;
    display: block;
    filter: drop-shadow(0 32px 56px rgba(0,0,0,0.18)) drop-shadow(0 8px 16px rgba(0,0,0,0.08));
    animation: bagFloat 4s ease-in-out infinite;
    transform-origin: center bottom;
  }
  @keyframes bagFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
  }
  .what-float-badge {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    background: #111110;
    color: #F5F5F0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 999px;
    white-space: nowrap;
    opacity: 0.85;
  }

  @media (max-width: 900px) {
    .what-float-section {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .what-float-text {
      padding-bottom: 0;
      max-width: 100%;
    }
    .what-float-product {
      padding: 40px 0 20px;
      min-height: 300px;
    }
    .what-float-bag {
      width: 55%;
      max-width: 220px;
    }
    .what-float-badge {
      bottom: 0;
    }
  }


  /* ── HERO PROOF OVERLAY ── */
  .hero-proof-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(17, 17, 16, 0) 0%, rgba(17, 17, 16, 0.25) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 32px;
  }
  
  .hero-proof-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(17, 17, 16, 0) 0%, rgba(17, 17, 16, 0.25) 100%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 30%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 30%, black 100%);
    pointer-events: none;
    z-index: 1;
  }
  
  .hero-proof-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 50%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 50%, black 100%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-proof-overlay .proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15.6px;
    font-weight: 500;
    color: #F5F5F0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    width: fit-content;
    position: relative;
    z-index: 2;
  }
  .hero-proof-overlay .proof-icon {
    width: 20px;
    height: 20px;
    background: rgba(42,122,85,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }
  .hero-proof-overlay .proof-icon svg { width: 11px; height: 11px; }

  @media (max-width: 900px) {
    .hero-proof-overlay {
      padding: 20px 16px;
      gap: 8px;
    }
    .hero-proof-overlay .proof-item { font-size: 12px; }
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .fade-up {
    animation: fadeUp 0.7s ease both;
  }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }

  /* quiz modal overlay */
  .quiz-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .quiz-overlay.open {
    opacity: 1;
    pointer-events: all;
  }
  .quiz-modal {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 24px;
    padding: 52px;
    max-width: 540px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
  }
  .quiz-overlay.open .quiz-modal { transform: translateY(0); }
  .quiz-close {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(0,0,0,0.06);
    border: none;
    color: var(--midgray);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .quiz-close:hover { background: rgba(0,0,0,0.1); }
  .quiz-progress-bar {
    height: 3px;
    background: rgba(0,0,0,0.08);
    border-radius: 999px;
    margin-bottom: 36px;
    overflow: hidden;
  }
  .quiz-progress-fill {
    height: 100%;
    background: var(--lime);
    border-radius: 999px;
    transition: width 0.4s ease;
  }
  .quiz-step { display: none; }
  .quiz-step.active { display: block; }
  .quiz-q {
    font-size: 22px;
    font-weight: 600;
    color: #111110;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .quiz-sub {
    font-size: 14px;
    color: var(--midgray);
    margin-bottom: 28px;
  }
  .quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .quiz-option {
    background: #F8F8F4;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #3A3A38;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .quiz-option:hover {
    background: rgba(42,122,85,0.06);
    border-color: rgba(42,122,85,0.25);
    color: #111110;
  }
  .quiz-option.selected {
    background: rgba(42,122,85,0.08);
    border-color: var(--lime);
    color: #111110;
  }
  .opt-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    opacity: 0.5;
    flex-shrink: 0;
    transition: all 0.2s;
  }
  .quiz-option.selected .opt-dot {
    background: var(--lime);
    border-color: var(--lime);
    opacity: 1;
  }
  .quiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
  }
  .quiz-back {
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: transparent;
    border: none;
    color: var(--midgray);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
  }
  .quiz-back:hover { color: #111110; }
  .quiz-next {
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #111110;
    color: #FFFFFF;
    border: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.25;
    pointer-events: none;
  }
  .quiz-next.ready {
    opacity: 1;
    pointer-events: all;
  }
  .quiz-next.ready:hover { background: var(--lime); }

  .quiz-email-input {
    width: 100%;
    box-sizing: border-box;
    background: #F8F8F4;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 16px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #111110;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 10px;
  }
  .quiz-email-input:focus {
    border-color: var(--lime);
  }
  .quiz-email-input::placeholder {
    color: #9B9B95;
  }
  .email-privacy {
    font-size: 12px;
    color: var(--midgray);
    text-align: center;
    margin-top: 6px;
    line-height: 1.5;
  }
  .quiz-result { text-align: center; }
  .quiz-result h3 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #111110;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  .quiz-result p {
    font-size: 15px;
    color: var(--midgray);
    line-height: 1.6;
    margin-bottom: 28px;
  }

  /* ── QUIZ DONE POPUP ── */
  .qdone-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 400;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.25s;
  }
  .qdone-overlay.open { opacity: 1; pointer-events: all; }
  .qdone-modal {
    background: #F5F5F0; border-radius: 20px; padding: 40px 36px 32px;
    max-width: 380px; width: calc(100% - 48px); text-align: center;
    transform: translateY(12px); transition: transform 0.25s;
    box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  }
  .qdone-overlay.open .qdone-modal { transform: translateY(0); }
  .qdone-icon {
    width: 52px; height: 52px; background: rgba(42,122,85,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  }
  .qdone-title { font-size: 20px; font-weight: 700; color: #111110; margin-bottom: 10px; letter-spacing: -0.02em; }
  .qdone-body { font-size: 15px; color: #6B6B65; line-height: 1.6; margin-bottom: 28px; }
  .qdone-btn-primary {
    display: block; width: 100%; padding: 13px; background: #111110; color: #F5F5F0;
    border: none; border-radius: 999px; font-family: 'Outfit', sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
    cursor: pointer; margin-bottom: 10px; transition: background 0.2s;
  }
  .qdone-btn-primary:hover { background: #2A7A55; }
  .qdone-btn-ghost {
    display: block; width: 100%; padding: 13px; background: transparent; color: #6B6B65;
    border: 1px solid rgba(0,0,0,0.15); border-radius: 999px; font-family: 'Outfit', sans-serif;
    font-size: 13px; font-weight: 500; cursor: pointer; transition: border-color 0.2s, color 0.2s;
  }
  .qdone-btn-ghost:hover { border-color: #111110; color: #111110; }

  /* ── AUTH MODAL ── */
  .auth-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 300;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .auth-overlay.open { opacity: 1; pointer-events: all; }
  .auth-modal {
    background: #FFFFFF; border: 1px solid rgba(0,0,0,0.08); border-radius: 24px;
    padding: 52px; max-width: 440px; width: 90%; position: relative;
    transform: translateY(20px); transition: transform 0.3s;
  }
  .auth-overlay.open .auth-modal { transform: translateY(0); }
  .auth-close {
    position: absolute; top: 20px; right: 20px; background: rgba(0,0,0,0.06);
    border: none; color: var(--midgray); width: 32px; height: 32px; border-radius: 50%;
    font-size: 18px; cursor: pointer; display: flex; align-items: center;
    justify-content: center; transition: background 0.2s;
  }
  .auth-close:hover { background: rgba(0,0,0,0.1); }
  .auth-title {
    font-size: 26px; font-weight: 600; color: #111110; letter-spacing: -0.01em;
    text-transform: uppercase; margin-bottom: 8px;
  }
  .auth-subtitle { font-size: 14px; color: var(--midgray); margin-bottom: 28px; line-height: 1.5; }
  .auth-input {
    width: 100%; box-sizing: border-box; background: #F8F8F4;
    border: 1px solid rgba(0,0,0,0.12); border-radius: 12px; padding: 14px 18px;
    font-family: 'Outfit', sans-serif; font-size: 15px; color: #111110;
    outline: none; transition: border-color 0.2s; margin-bottom: 12px;
  }
  .auth-input:focus { border-color: var(--lime); }
  .auth-input::placeholder { color: #9B9B95; }
  .auth-btn {
    width: 100%; background: #111110; color: #F5F5F0; border: none;
    padding: 14px 28px; border-radius: 999px; font-family: 'Outfit', sans-serif;
    font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
    cursor: pointer; transition: all 0.2s; margin-top: 8px;
  }
  .auth-btn:hover { background: var(--lime); }
  .auth-btn:disabled { opacity: 0.4; pointer-events: none; }
  .auth-link {
    display: block; text-align: center; margin-top: 16px; font-size: 13px;
    color: var(--midgray); cursor: pointer; transition: color 0.2s; background: none;
    border: none; font-family: 'Outfit', sans-serif; width: 100%;
  }
  .auth-link:hover { color: var(--lime); }
  .auth-link span { text-decoration: underline; }
  .auth-error {
    background: rgba(200,50,50,0.08); border: 1px solid rgba(200,50,50,0.2);
    border-radius: 10px; padding: 10px 14px; font-size: 13px; color: #9B3030;
    margin-bottom: 14px; display: none;
  }
  .auth-error.visible { display: block; }
  .auth-success {
    background: rgba(42,122,85,0.08); border: 1px solid rgba(42,122,85,0.2);
    border-radius: 10px; padding: 10px 14px; font-size: 13px; color: var(--lime);
    margin-bottom: 14px; display: none;
  }
  .auth-success.visible { display: block; }
  .auth-view { display: none; }
  .auth-view.active { display: block; }

  /* Nav auth state */
  .nav-account-btn {
    background: transparent; border: 1px solid rgba(0,0,0,0.15); color: #111110;
    padding: 8px 18px; border-radius: 999px; font-family: 'Outfit', sans-serif;
    font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
    cursor: pointer; transition: all 0.2s; margin-left: 12px;
  }
  .nav-account-btn:hover { border-color: var(--lime); color: var(--lime); }
  .nav-user-menu { position: relative; display: inline-flex; align-items: center; margin-left: 12px; }
  .nav-avatar {
    width: 34px; height: 34px; border-radius: 50%; background: var(--lime);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: #F5F5F0; cursor: pointer; transition: transform 0.15s;
  }
  .nav-avatar:hover { transform: scale(1.05); }
  .nav-dropdown {
    position: absolute; top: 44px; right: 0; background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.1); border-radius: 14px; padding: 8px 0;
    min-width: 180px; box-shadow: 0 12px 40px rgba(0,0,0,0.12); display: none; z-index: 10;
  }
  .nav-dropdown.open { display: block; }
  .nav-dropdown a, .nav-dropdown button {
    display: block; width: 100%; text-align: left; padding: 10px 18px;
    font-family: 'Outfit', sans-serif; font-size: 13px; color: #3A3A38;
    text-decoration: none; background: none; border: none; cursor: pointer; transition: background 0.15s;
  }
  .nav-dropdown a:hover, .nav-dropdown button:hover { background: rgba(0,0,0,0.04); }
  .nav-dropdown .dropdown-divider { height: 1px; background: rgba(0,0,0,0.08); margin: 6px 0; }
  .nav-dropdown .logout-btn { color: #B44; }

  /* Profile overlay */
  .profile-overlay {
    position: fixed; inset: 0; background: rgba(245,245,240,0.97); z-index: 250;
    display: none; overflow-y: auto; padding: 80px 48px;
  }
  .profile-overlay.open { display: block; }
  .profile-container { max-width: 600px; margin: 0 auto; }
  .profile-header { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; }
  .profile-avatar-lg {
    width: 64px; height: 64px; border-radius: 50%; background: var(--lime);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 700; color: #F5F5F0; flex-shrink: 0;
  }
  .profile-name { font-size: 24px; font-weight: 600; color: #111110; letter-spacing: -0.01em; text-transform: uppercase; }
  .profile-email { font-size: 14px; color: var(--midgray); margin-top: 2px; }
  .profile-section {
    background: #FFFFFF; border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px; padding: 28px; margin-bottom: 16px;
  }
  .profile-section h3 { font-size: 16px; font-weight: 600; color: #111110; letter-spacing: -0.01em; text-transform: uppercase; margin-bottom: 18px; }
  .profile-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 14px; }
  .profile-row:last-child { border-bottom: none; }
  .profile-label { color: var(--midgray); }
  .profile-value { color: #111110; font-weight: 500; }
  .profile-close-btn {
    position: fixed; top: 24px; right: 48px; background: rgba(0,0,0,0.06); border: none;
    color: var(--midgray); width: 40px; height: 40px; border-radius: 50%; font-size: 22px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s; z-index: 260;
  }
  .profile-close-btn:hover { background: rgba(0,0,0,0.1); }
  .profile-empty { text-align: center; color: var(--midgray); font-size: 14px; line-height: 1.6; padding: 20px 0; }

  @media (max-width: 900px) {
    .auth-modal { padding: 36px 28px; border-radius: 20px 20px 0 0; }
    .auth-overlay { align-items: flex-end; }
    .profile-overlay { padding: 60px 24px; }
    .profile-close-btn { right: 24px; top: 16px; }
  }

  /* ── RANGE INPUT STYLES ── */
          input[type="range"] {
            -webkit-appearance: none;
            appearance: none;
            cursor: pointer;
          }
          input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #2A7A55;
            cursor: pointer;
            transition: all 0.2s;
          }
          input[type="range"]::-webkit-slider-thumb:hover {
            background: #1F6044;
            transform: scale(1.1);
          }
          input[type="range"]::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #2A7A55;
            cursor: pointer;
            border: none;
            transition: all 0.2s;
          }
          input[type="range"]::-moz-range-thumb:hover {
            background: #1F6044;
            transform: scale(1.1);
          }