:root {
    --green: #2ecc71;
    --green-dark: #1a9e52;
    --green-light: #d4f5e3;
    --lime: #a8e063;
    --orange: #ff6b35;
    --orange-dark: #e55a26;
    --cream: #fffdf7;
    --dark: #1a1a2e;
    --text: #2d3748;
    --muted: #718096;
    --white: #ffffff;
    --shadow: 0 8px 40px rgba(46,204,113,.18);
    --shadow-card: 0 4px 24px rgba(0,0,0,.09);
    --radius: 20px;
    --radius-sm: 12px;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
  }
  h1, h2, h3, h4, .heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ===== NAVBAR ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,253,247,.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(46,204,113,.15);
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.10); }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }
  .logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900; font-size: 1.1rem;
    color: var(--green-dark);
    display: flex; align-items: center; gap: 8px;
  }
  .logo span { color: var(--orange); }
  .nav-links {
    display: flex; gap: 28px; list-style: none;
  }
  .nav-links a {
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem; font-weight: 600;
    color: var(--text);
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--green-dark); }
  .nav-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff; font-weight: 700;
    padding: 10px 22px; border-radius: 50px;
    font-size: .9rem; font-family: 'Montserrat', sans-serif;
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
  }
  .nav-cta:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255,107,53,.4); }
  .hamburger {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--dark); border-radius: 2px;
    transition: all .3s;
  }
  .mobile-menu {
    display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 999;
    background: var(--white); border-bottom: 1px solid var(--green-light);
    padding: 20px; flex-direction: column; gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 1rem; color: var(--text); padding: 8px 0;
    border-bottom: 1px solid var(--green-light);
  }
  .mobile-menu .nav-cta { border: none; text-align: center; }

  /* ===== HERO ===== */
  #hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a2518 0%, #1a4d2e 40%, #2ecc71 100%);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding-top: 64px;
  }
  .hero-particles {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  }
  .particle {
    position: absolute; border-radius: 50%;
    background: rgba(255,255,255,.06);
    animation: float linear infinite;
  }
  @keyframes float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
  }
  .hero-bg-blobs {
    position: absolute; inset: 0; pointer-events: none;
  }
  .blob {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: .3;
    animation: blobPulse 8s ease-in-out infinite alternate;
  }
  .blob1 { width: 500px; height: 500px; background: #a8e063; top: -100px; right: -100px; }
  .blob2 { width: 400px; height: 400px; background: #2ecc71; bottom: -80px; left: -80px; animation-delay: -4s; }
  .blob3 { width: 300px; height: 300px; background: #ff6b35; top: 40%; left: 30%; animation-delay: -2s; opacity: .15; }
  @keyframes blobPulse {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.2) rotate(30deg); }
  }
  .hero-inner {
    max-width: 1200px; margin: 0 auto; padding: 60px 20px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 2; width: 100%;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(168,224,99,.2);
    border: 1px solid rgba(168,224,99,.4);
    color: #a8e063; border-radius: 50px;
    padding: 6px 16px; font-size: .8rem; font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    animation: fadeDown .8s ease both;
  }
  .hero-badge::before { content: '🌿'; font-size: .9rem; }
  h1.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #fff;
    margin-bottom: 20px;
    animation: fadeUp .9s .1s ease both;
  }
  h1.hero-title span { color: #a8e063; }
  .hero-subtitle {
    color: rgba(255,255,255,.8);
    font-size: clamp(.95rem, 2vw, 1.15rem);
    margin-bottom: 32px;
    animation: fadeUp .9s .2s ease both;
  }
  .hero-stats {
    display: flex; gap: 24px; margin-bottom: 32px;
    animation: fadeUp .9s .3s ease both;
    flex-wrap: wrap;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Montserrat', sans-serif; font-weight: 900;
    font-size: 1.8rem; color: #a8e063;
  }
  .stat-label { font-size: .75rem; color: rgba(255,255,255,.7); }
  .hero-btns {
    display: flex; gap: 14px; flex-wrap: wrap;
    animation: fadeUp .9s .4s ease both;
  }
  .btn-primary {
    background: linear-gradient(135deg, #ff6b35, #e55a26);
    color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700;
    padding: 16px 32px; border-radius: 50px; font-size: 1rem;
    border: none; cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(255,107,53,.4);
  }
  .btn-primary:hover { transform: scale(1.05); box-shadow: 0 12px 32px rgba(255,107,53,.5); }
  .btn-primary:active { transform: scale(0.98); }
  .btn-secondary {
    background: rgba(255,255,255,.12); color: #fff;
    border: 2px solid rgba(255,255,255,.3);
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    padding: 16px 28px; border-radius: 50px; font-size: 1rem;
    cursor: pointer; transition: all .2s;
    display: inline-block;
  }
  .btn-secondary:hover { background: rgba(255,255,255,.22); transform: scale(1.04); }
  .hero-trust {
    margin-top: 24px;
    display: flex; align-items: center; gap: 10px;
    animation: fadeUp .9s .5s ease both;
  }
  .hero-trust .stars { color: #ffc107; font-size: 1rem; letter-spacing: 2px; }
  .hero-trust p { color: rgba(255,255,255,.7); font-size: .82rem; }
  .hero-visual {
    display: flex; justify-content: center; align-items: center;
    animation: heroImgFloat 6s ease-in-out infinite;
    position: relative;
  }
  @keyframes heroImgFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
  }
  .hero-visual img {
    border-radius: 30px;
    box-shadow: 0 32px 80px rgba(0,0,0,.4);
    max-width: 420px; width: 100%;
    border: 4px solid rgba(168,224,99,.3);
  }
  .hero-pill {
    position: absolute; background: #fff;
    border-radius: 50px; padding: 10px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: .82rem; color: var(--dark);
    display: flex; align-items: center; gap: 8px;
    animation: pilllFloat 4s ease-in-out infinite;
  }
  .hero-pill.p1 { top: 10%; left: -5%; animation-delay: 0s; }
  .hero-pill.p2 { bottom: 10%; right: -5%; animation-delay: -2s; }
  .hero-pill .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); }
  .hero-pill.p2 .dot { background: var(--orange); }
  @keyframes pilllFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ===== TRUST BADGES ===== */
  #trust {
    background: #fff; padding: 40px 20px;
    border-bottom: 1px solid var(--green-light);
  }
  .trust-inner {
    max-width: 1000px; margin: 0 auto;
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  }
  .trust-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    text-align: center; flex: 1; min-width: 120px;
  }
  .trust-icon-wrap {
    width: 70px; height: 70px; border-radius: 50%;
    background: var(--green-light); display: flex;
    align-items: center; justify-content: center; font-size: 1.8rem;
  }
  .trust-item h4 {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .85rem;
    color: var(--dark);
  }
  .trust-item p { font-size: .75rem; color: var(--muted); }

  /* ===== SECTION COMMON ===== */
  section { padding: 80px 20px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-label {
    display: inline-block; background: var(--green-light);
    color: var(--green-dark); font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: .78rem; padding: 5px 14px;
    border-radius: 50px; margin-bottom: 14px; letter-spacing: .5px;
  }
  h2.section-title {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    color: var(--dark); margin-bottom: 16px;
  }
  .section-desc {
    font-size: 1.05rem; color: var(--muted);
    max-width: 680px; margin-bottom: 48px;
  }
  .text-center { text-align: center; }
  .text-center .section-desc { margin: 0 auto 48px; }

  /* ===== WHAT IS ===== */
  #what {
    background: linear-gradient(160deg, #f0fdf4 0%, #fffdf7 100%);
  }
  .what-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .what-img-wrap { position: relative; }
  .what-img-wrap img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    width: 100%;
  }
  .what-float-card {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--green-dark); color: #fff;
    border-radius: var(--radius-sm); padding: 16px 20px;
    box-shadow: var(--shadow);
    font-family: 'Montserrat', sans-serif;
  }
  .what-float-card .num {
    font-size: 2.2rem; font-weight: 900; color: #a8e063; line-height: 1;
  }
  .what-float-card .label { font-size: .8rem; opacity: .85; }
  .what-text h2 { margin-bottom: 20px; }
  .what-text p { color: var(--muted); margin-bottom: 16px; font-size: 1rem; }
  .what-text p strong { color: var(--dark); }
  .what-points { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
  .what-points li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: .95rem; color: var(--text);
  }
  .what-points li::before {
    content: '✅'; font-size: 1rem; flex-shrink: 0; margin-top: 2px;
  }

  /* ===== HOW IT WORKS ===== */
  #how { background: var(--white); }
  .steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px;
  }
  .step-card {
    background: var(--cream); border-radius: var(--radius);
    padding: 36px 28px; text-align: center;
    border: 1px solid var(--green-light);
    transition: transform .3s, box-shadow .3s;
    position: relative; overflow: hidden;
  }
  .step-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--green), var(--lime));
  }
  .step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
  .step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff; font-family: 'Montserrat', sans-serif;
    font-weight: 900; font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .step-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--dark); }
  .step-card p { font-size: .9rem; color: var(--muted); }
  .step-emoji { font-size: 2rem; margin-bottom: 10px; }

  /* ===== BENEFITS ===== */
  #benefits {
    background: linear-gradient(160deg, #f0fdf4 0%, #fffdf7 100%);
  }
  .benefits-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
    margin-top: 48px;
  }
  .benefit-card {
    background: #fff; border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--green);
    transition: transform .3s, box-shadow .3s;
  }
  .benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
  .benefit-emoji { font-size: 2rem; margin-bottom: 14px; }
  .benefit-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--dark); }
  .benefit-card p { font-size: .88rem; color: var(--muted); }

  /* ===== SCIENCE ===== */
  #science { background: var(--white); }
  .science-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .science-img img {
    border-radius: var(--radius); box-shadow: var(--shadow-card);
    width: 100%;
  }
  .science-points { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
  .sci-point {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px; border-radius: var(--radius-sm);
    background: var(--cream); border: 1px solid var(--green-light);
    transition: background .2s;
  }
  .sci-point:hover { background: var(--green-light); }
  .sci-icon {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--green-light); display: flex;
    align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
  }
  .sci-point h4 { font-size: .9rem; margin-bottom: 4px; color: var(--dark); }
  .sci-point p { font-size: .82rem; color: var(--muted); }

  /* ===== REVIEWS ===== */
  #reviews { background: linear-gradient(160deg, #1a4d2e 0%, #0a2518 100%); }
  #reviews .section-label { background: rgba(168,224,99,.2); color: #a8e063; }
  #reviews h2.section-title { color: #fff; }
  #reviews .section-desc { color: rgba(255,255,255,.7); }
  .reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
  }
  .review-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius); padding: 28px 24px;
    transition: background .3s, transform .3s;
  }
  .review-card:hover { background: rgba(255,255,255,.13); transform: translateY(-6px); }
  .review-stars { color: #ffc107; font-size: 1rem; margin-bottom: 14px; }
  .review-text { color: rgba(255,255,255,.85); font-size: .93rem; font-style: italic; margin-bottom: 20px; line-height: 1.7; }
  .reviewer {
    display: flex; align-items: center; gap: 12px;
  }
  .reviewer-avatar {
    width: 46px; height: 46px; border-radius: 50%; overflow: hidden;
    border: 2px solid rgba(168,224,99,.4);
    flex-shrink: 0;
  }
  .reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .reviewer-name { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; font-size: .9rem; }
  .reviewer-location { font-size: .78rem; color: rgba(255,255,255,.55); }

  /* ===== BONUSES ===== */
  #bonuses { background: var(--cream); }
  .bonuses-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px;
  }
  .bonus-card {
    background: #fff; border-radius: var(--radius);
    padding: 36px 28px; display: flex; gap: 24px;
    box-shadow: var(--shadow-card);
    border: 2px solid var(--green-light);
    transition: border-color .3s, transform .3s;
    align-items: flex-start;
  }
  .bonus-card:hover { border-color: var(--green); transform: translateY(-4px); }
  .bonus-img { width: 100px; flex-shrink: 0; border-radius: 10px; overflow: hidden; }
  .bonus-img img { width: 100%; height: auto; }
  .bonus-badge {
    background: var(--orange); color: #fff;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: .75rem; padding: 3px 10px; border-radius: 50px;
    display: inline-block; margin-bottom: 10px;
  }
  .bonus-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--dark); }
  .bonus-card p { font-size: .88rem; color: var(--muted); margin-bottom: 12px; }
  .bonus-price { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--green-dark); font-size: .9rem; }

  /* ===== PRICING ===== */
  #pricing {
    background: linear-gradient(160deg, #f0fdf4 0%, #fffdf7 100%);
    text-align: center;
  }
  .price-card {
    max-width: 460px; margin: 48px auto 0;
    background: #fff; border-radius: 28px;
    box-shadow: 0 16px 60px rgba(46,204,113,.2);
    overflow: hidden;
    border: 2px solid var(--green);
  }
  .price-header {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    padding: 32px; color: #fff;
  }
  .price-header h3 { font-size: 1.4rem; margin-bottom: 4px; }
  .price-header p { opacity: .85; font-size: .9rem; }
  .price-body { padding: 36px 32px; }
  .price-old { color: var(--muted); font-size: 1rem; text-decoration: line-through; margin-bottom: 4px; }
  .price-main {
    font-family: 'Montserrat', sans-serif; font-weight: 900;
    font-size: 4.5rem; color: var(--green-dark); line-height: 1;
    margin-bottom: 6px;
  }
  .price-main span { font-size: 2rem; vertical-align: super; }
  .price-note { color: var(--muted); font-size: .85rem; margin-bottom: 28px; }
  .price-features { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
  .price-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: .9rem; color: var(--text);
  }
  .price-features li::before { content: '✅'; }
  .price-cta {
    width: 100%; background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700;
    padding: 18px; border-radius: 50px; font-size: 1.1rem;
    border: none; cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    display: block;
    box-shadow: 0 8px 24px rgba(255,107,53,.4);
  }
  .price-cta:hover { transform: scale(1.04); box-shadow: 0 12px 32px rgba(255,107,53,.5); }
  .price-cta:active { transform: scale(0.98); }
  .price-guarantee { margin-top: 16px; font-size: .8rem; color: var(--muted); }
  .price-guarantee strong { color: var(--green-dark); }

  /* ===== GUARANTEE ===== */
  #guarantee { background: var(--white); }
  .guarantee-inner {
    display: flex; gap: 60px; align-items: center;
  }
  .guarantee-img { flex: 0 0 280px; text-align: center; }
  .guarantee-img img { max-width: 220px; margin: 0 auto; }
  .guarantee-text h2 { margin-bottom: 20px; }
  .guarantee-text p { color: var(--muted); margin-bottom: 16px; font-size: 1rem; }

  /* ===== TIMER ===== */
  #timer-section { background: linear-gradient(135deg, var(--orange), #e55a26); text-align: center; padding: 60px 20px; }
  #timer-section h2 { color: #fff; margin-bottom: 12px; }
  #timer-section p { color: rgba(255,255,255,.85); margin-bottom: 32px; font-size: 1rem; }
  .timer-display {
    display: flex; gap: 16px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap;
  }
  .timer-unit {
    background: rgba(0,0,0,.25); border-radius: 14px;
    padding: 16px 20px; min-width: 80px; text-align: center;
  }
  .timer-num {
    font-family: 'Montserrat', sans-serif; font-weight: 900;
    font-size: 2.8rem; color: #fff; line-height: 1;
    display: block;
  }
  .timer-label { font-size: .72rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; }

  /* ===== FAQ ===== */
  #faq { background: var(--cream); }
  .faq-list { max-width: 800px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
  .faq-item {
    background: #fff; border-radius: var(--radius-sm);
    border: 1px solid var(--green-light); overflow: hidden;
  }
  .faq-q {
    padding: 20px 24px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: .97rem; color: var(--dark);
    transition: background .2s;
  }
  .faq-q:hover { background: var(--green-light); }
  .faq-q .chevron {
    width: 22px; height: 22px; flex-shrink: 0;
    border-radius: 50%; background: var(--green-light);
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; transition: transform .3s;
  }
  .faq-item.open .faq-q .chevron { transform: rotate(180deg); background: var(--green); color: #fff; }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .35s;
    padding: 0 24px;
  }
  .faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }
  .faq-a p { color: var(--muted); font-size: .93rem; line-height: 1.7; }

  /* ===== FINAL CTA ===== */
  #final-cta {
    background: linear-gradient(135deg, #0a2518 0%, #1a4d2e 50%, #2ecc71 100%);
    text-align: center; padding: 100px 20px;
    position: relative; overflow: hidden;
  }
  .final-cta-bg {
    position: absolute; inset: 0; pointer-events: none;
  }
  .final-cta-bg .blob { opacity: .15; }
  #final-cta h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 16px; position: relative; z-index: 2; }
  #final-cta p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 40px; position: relative; z-index: 2; }
  .final-cta-box {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius); padding: 40px;
    max-width: 500px; margin: 0 auto;
    position: relative; z-index: 2;
  }
  .final-price-old { color: rgba(255,255,255,.55); font-size: .9rem; text-decoration: line-through; margin-bottom: 4px; }
  .final-price {
    font-family: 'Montserrat', sans-serif; font-weight: 900;
    font-size: 3.5rem; color: #a8e063; line-height: 1; margin-bottom: 24px;
  }
  .final-price sup { font-size: 1.6rem; vertical-align: super; }
  .btn-final {
    width: 100%; background: linear-gradient(135deg, #ff6b35, #e55a26);
    color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 900;
    padding: 20px; border-radius: 50px; font-size: 1.15rem;
    border: none; cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 32px rgba(255,107,53,.5);
    display: block;
    animation: ctaPulse 2s ease-in-out infinite;
  }
  @keyframes ctaPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(255,107,53,.5); }
    50% { box-shadow: 0 8px 48px rgba(255,107,53,.8); }
  }
  .btn-final:hover { transform: scale(1.04); }
  .btn-final:active { transform: scale(0.98); animation: none; }
  .final-note { margin-top: 16px; color: rgba(255,255,255,.6); font-size: .8rem; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--dark); color: rgba(255,255,255,.6);
    padding: 40px 20px; text-align: center;
  }
  .footer-inner { max-width: 900px; margin: 0 auto; }
  .footer-logo {
    font-family: 'Montserrat', sans-serif; font-weight: 900;
    font-size: 1.2rem; color: var(--green); margin-bottom: 20px;
  }
  .footer-links {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .footer-links a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s; }
  .footer-links a:hover { color: var(--green); }
  .footer-disclaimer { font-size: .75rem; line-height: 1.7; color: rgba(255,255,255,.35); margin-top: 20px; }

  /* ===== SCROLL TOP ===== */
  #scrollTop {
    position: fixed; bottom: 24px; right: 24px; z-index: 900;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--green-dark); color: #fff;
    border: none; cursor: pointer; font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
    display: none; align-items: center; justify-content: center;
    transition: transform .2s, box-shadow .2s;
  }
  #scrollTop.show { display: flex; }
  #scrollTop:hover { transform: scale(1.1); }

  /* ===== NOTIFICATION POPUP ===== */
  #notif-popup {
    position: fixed; bottom: 24px; left: 24px; z-index: 9999;
    background: #fff; border-radius: var(--radius-sm);
    box-shadow: 0 8px 40px rgba(0,0,0,.18);
    padding: 14px 18px; max-width: 300px;
    display: flex; align-items: center; gap: 12px;
    transform: translateX(-120%);
    transition: transform .5s cubic-bezier(.23,1,.32,1);
    border-left: 4px solid var(--green);
  }
  #notif-popup.show { transform: translateX(0); }
  .notif-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--green-light); display: flex;
    align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0;
  }
  .notif-text p { font-size: .78rem; color: var(--text); line-height: 1.4; }
  .notif-text strong { color: var(--dark); }
  .notif-time { font-size: .7rem; color: var(--muted); margin-top: 4px; }
  .notif-close {
    position: absolute; top: 6px; right: 8px;
    background: none; border: none; cursor: pointer;
    color: var(--muted); font-size: .9rem; line-height: 1;
  }

  /* ===== EXIT POPUP ===== */
  #exit-overlay {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,.7);
    display: none; align-items: center; justify-content: center;
    padding: 20px;
  }
  #exit-overlay.show { display: flex; }
  .exit-modal {
    background: #fff; border-radius: 28px;
    max-width: 520px; width: 100%;
    overflow: hidden; position: relative;
    animation: exitPop .4s cubic-bezier(.23,1,.32,1);
  }
  @keyframes exitPop {
    from { transform: scale(.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  .exit-top {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    padding: 32px; text-align: center; color: #fff;
  }
  .exit-top .exit-emoji { font-size: 3rem; margin-bottom: 10px; }
  .exit-top h2 { font-size: 1.6rem; margin-bottom: 8px; }
  .exit-top p { font-size: .9rem; opacity: .9; }
  .exit-body { padding: 32px; text-align: center; }
  .exit-offer {
    background: var(--green-light); border-radius: var(--radius-sm);
    padding: 20px; margin-bottom: 24px;
  }
  .exit-offer p { font-size: .9rem; color: var(--text); }
  .exit-offer strong { color: var(--green-dark); font-size: 1.1rem; }
  .exit-btns { display: flex; flex-direction: column; gap: 12px; }
  .exit-yes {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700;
    padding: 16px; border-radius: 50px; font-size: 1rem;
    border: none; cursor: pointer;
    box-shadow: 0 6px 20px rgba(255,107,53,.4);
    transition: transform .2s;
    display: block;
  }
  .exit-yes:hover { transform: scale(1.04); }
  .exit-no {
    background: none; border: none; cursor: pointer;
    color: var(--muted); font-size: .85rem; text-decoration: underline;
    padding: 8px;
  }
  .exit-close {
    position: absolute; top: 12px; right: 16px;
    background: rgba(255,255,255,.2); border: none; cursor: pointer;
    color: #fff; font-size: 1.2rem; border-radius: 50%;
    width: 32px; height: 32px; display: flex;
    align-items: center; justify-content: center;
    line-height: 1;
  }

  /* ===== FADE-IN SCROLL ANIMATION ===== */
  .fade-in {
    opacity: 0; transform: translateY(36px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .fade-in.visible { opacity: 1; transform: none; }
  .fade-in-left {
    opacity: 0; transform: translateX(-36px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .fade-in-left.visible { opacity: 1; transform: none; }
  .fade-in-right {
    opacity: 0; transform: translateX(36px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .fade-in-right.visible { opacity: 1; transform: none; }

  /* ===== CREATOR ===== */
  #creator { background: var(--cream); }
  .creator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .creator-text h2 { margin-bottom: 20px; }
  .creator-text p { color: var(--muted); margin-bottom: 14px; font-size: 1rem; }
  .creator-text p strong { color: var(--dark); }
  .creator-img img { border-radius: var(--radius); box-shadow: var(--shadow-card); width: 100%; }

  /* ===== MOBILE ===== */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-stats { justify-content: center; }
    .hero-btns { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-pill.p1 { left: 0; top: 0; }
    .hero-pill.p2 { right: 0; bottom: 0; }
    .what-grid, .science-grid, .creator-grid { grid-template-columns: 1fr; gap: 32px; }
    .what-float-card { position: static; margin-top: -40px; display: inline-block; }
    .steps-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .bonuses-grid { grid-template-columns: 1fr; }
    .guarantee-inner { flex-direction: column; text-align: center; gap: 32px; }
    .guarantee-img { flex: unset; }
    nav .nav-links, nav .nav-cta { display: none; }
    .hamburger { display: flex; }
    .notif-popup { max-width: calc(100vw - 48px); }
    section { padding: 60px 20px; }
    .hero-pill { display: none; }
  }
  @media (max-width: 600px) {
    .hero-inner { padding: 40px 16px; }
    .timer-num { font-size: 2.2rem; }
    .final-cta-box { padding: 24px; }
    .exit-top { padding: 24px; }
    .exit-body { padding: 24px; }
    .bonus-card { flex-direction: column; }
    .bonus-img { width: 80px; }
    .price-body { padding: 24px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .fade-in, .fade-in-left, .fade-in-right { transition: none; opacity: 1; transform: none; }
    .hero-visual, .hero-pill, .blob, .particle { animation: none; }
    .btn-final { animation: none; }
  }
