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

    :root {
      --green-dark: #1a3a2a;
      --green-mid: #2d6a4f;
      --green-light: #52b788;
      --green-pale: #d8f3dc;
      --yellow: #f4c430;
      --yellow-dark: #d4a017;
      --cream: #fefae0;
      --brown: #5c3d2e;
      --white: #ffffff;
      --text: #1a1a1a;
      --muted: #6b7280;
      --font-display: 'Playfair Display', serif;
      --font-body: 'Plus Jakarta Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── STICKY TIMER BAR ── */
    .timer-bar {
      position: fixed;
      top: 0; left: 0; right: 0;
      background: var(--green-dark);
      color: var(--white);
      z-index: 100;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .timer-label { color: var(--green-pale); opacity: 0.85; }

    .timer-digits {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    .timer-unit {
      background: var(--yellow);
      color: var(--green-dark);
      font-size: 1rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      min-width: 36px;
      text-align: center;
    }

    .timer-sep { color: var(--yellow); font-weight: 700; }
.timer-day-label { color: var(--yellow); font-weight: 700; font-size: 0.75rem; opacity: 0.8; }

    .timer-bar .cta-mini {
      background: var(--yellow);
      color: var(--green-dark);
      border: none;
      padding: 6px 16px;
      border-radius: 20px;
      font-weight: 700;
      font-size: 0.78rem;
      cursor: pointer;
      margin-left: 12px;
      white-space: nowrap;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-light) 100%);
      padding: 80px 24px 64px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .hero-badge {
      display: inline-block;
      background: rgba(244,196,48,0.2);
      border: 1px solid var(--yellow);
      color: var(--yellow);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 20px;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 7vw, 5rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 16px;
      max-width: 800px;
    }

    .hero h1 em {
      color: var(--yellow);
      font-style: normal;
    }

    .hero-sub {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      color: rgba(255,255,255,0.8);
      line-height: 1.7;
      max-width: 560px;
      margin-bottom: 40px;
    }

    .hero-proof {
      display: flex;
      gap: 32px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .hero-proof-item {
      text-align: center;
    }

    .hero-proof-num {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 900;
      color: var(--yellow);
      display: block;
    }

    .hero-proof-label {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.7);
    }

    .btn-cta {
      background: var(--yellow);
      color: var(--green-dark);
      border: none;
      padding: 18px 48px;
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 700;
      border-radius: 50px;
      cursor: pointer;
      letter-spacing: 0.3px;
      transition: transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 8px 32px rgba(244,196,48,0.4);
    }

    .btn-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(244,196,48,0.5); }

    .btn-cta-ghost {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.4);
      padding: 16px 40px;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 600;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-cta-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

    .hero-cta-group {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .hero-stock {
      margin-top: 20px;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.6);
    }

    .hero-stock strong { color: var(--yellow); }

    /* ── SECTIONS ── */
    .section { padding: 80px 24px; max-width: 860px; margin: 0 auto; }
    .section-wide { padding: 80px 24px; }

    .section-tag {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--green-mid);
      display: block;
      margin-bottom: 12px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 900;
      color: var(--green-dark);
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .section-title em { color: var(--green-mid); font-style: normal; }

    .section-body {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.8;
      max-width: 600px;
    }

    /* ── PROBLEM ── */
    .problem-section {
      background: var(--green-dark);
      padding: 80px 24px;
    }

    .problem-inner { max-width: 860px; margin: 0 auto; }

    .problem-section .section-tag { color: var(--yellow); }
    .problem-section .section-title { color: var(--white); }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 48px;
    }

    .problem-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 28px 24px;
    }

    .problem-icon { font-size: 2rem; margin-bottom: 12px; display: block; }

    .problem-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    .problem-card p {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
    }

    /* ── AGITATION ── */
    .agitation {
      background: #fff8f0;
      border-left: 4px solid var(--yellow);
      padding: 32px 36px;
      border-radius: 0 16px 16px 0;
      margin: 48px 0;
    }

    .agitation p {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: var(--brown);
      line-height: 1.7;
      font-style: italic;
    }

    /* ── SOLUTION ── */
    .solution-section { background: var(--green-pale); padding: 80px 24px; }
    .solution-inner { max-width: 860px; margin: 0 auto; }

    .product-visual {
      background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
      border-radius: 24px;
      padding: 60px 40px;
      text-align: center;
      margin: 40px 0;
      position: relative;
      overflow: hidden;
    }

    .product-visual::before {
      content: '🌿';
      font-size: 8rem;
      position: absolute;
      top: -20px;
      right: -20px;
      opacity: 0.15;
    }

    .product-name {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--white);
      letter-spacing: 2px;
    }

    .product-tagline {
      color: var(--yellow);
      font-size: 1rem;
      font-weight: 600;
      margin-top: 8px;
      letter-spacing: 1px;
    }

    .product-badges {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .badge {
      background: rgba(255,255,255,0.15);
      color: var(--white);
      font-size: 0.78rem;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.2);
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .benefit-item {
      background: var(--white);
      border-radius: 16px;
      padding: 24px 20px;
      border: 1px solid rgba(45,106,79,0.1);
    }

    .benefit-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }

    .benefit-item h4 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 6px;
    }

    .benefit-item p {
      font-size: 0.83rem;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ── SOCIAL PROOF ── */
    .proof-section { background: var(--cream); }

    .proof-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--green-dark);
      border-radius: 20px;
      overflow: hidden;
      margin: 48px 0;
    }

    .proof-stat {
      background: var(--green-dark);
      padding: 36px 24px;
      text-align: center;
    }

    .proof-stat-num {
      font-family: var(--font-display);
      font-size: 2.4rem;
      font-weight: 900;
      color: var(--yellow);
      display: block;
    }

    .proof-stat-label {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.7);
      margin-top: 4px;
    }

    .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .testi-card {
      background: var(--white);
      border-radius: 16px;
      padding: 28px 24px;
      border: 1px solid #e5e7eb;
      position: relative;
    }

    .testi-card::before {
      content: '"';
      font-family: var(--font-display);
      font-size: 4rem;
      color: var(--green-pale);
      position: absolute;
      top: 10px;
      left: 20px;
      line-height: 1;
    }

    .testi-text {
      font-size: 0.9rem;
      color: var(--text);
      line-height: 1.7;
      margin-bottom: 16px;
      padding-top: 20px;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testi-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--green-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .testi-name {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--green-dark);
    }

    .testi-detail {
      font-size: 0.75rem;
      color: var(--muted);
    }

    .testi-stars { color: var(--yellow); font-size: 0.85rem; margin-bottom: 2px; }

    /* ── OFFER ── */
    .offer-section {
      background: linear-gradient(160deg, var(--green-dark), var(--green-mid));
      padding: 80px 24px;
    }

    .offer-inner { max-width: 860px; margin: 0 auto; text-align: center; }

    .offer-section .section-tag { color: var(--yellow); text-align: center; }
    .offer-section .section-title { color: var(--white); text-align: center; }

    .offer-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin: 48px 0;
    }

    .offer-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      padding: 32px 24px;
      text-align: center;
      transition: transform 0.2s;
      position: relative;
    }

    .offer-card:hover { transform: translateY(-4px); }

    .offer-card.featured {
      background: var(--yellow);
      border-color: var(--yellow);
    }

    .offer-card.featured * { color: var(--green-dark) !important; }

    .offer-popular {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--green-dark);
      color: var(--yellow) !important;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 16px;
      border-radius: 20px;
      white-space: nowrap;
    }

    .offer-name {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 8px;
    }

    .offer-sachet {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--white);
    }

    .offer-price-old {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.4);
      text-decoration: line-through;
      margin: 8px 0 4px;
    }

    .offer-price {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 900;
      color: var(--yellow);
    }

    .offer-card.featured .offer-price { color: var(--green-dark); }

    .offer-disc-badge {
      display: inline-block;
      background: var(--green-mid);
      color: var(--white);
      font-size: 0.72rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      margin-top: 6px;
    }

    .offer-card.featured .offer-disc-badge {
      background: var(--green-dark);
      color: var(--yellow) !important;
    }

    .offer-card.featured .btn-cta {
      background: var(--green-dark) !important;
      color: var(--yellow) !important;
      box-shadow: 0 8px 24px rgba(26,58,42,0.3);
    }

    .offer-card.featured .btn-cta:hover {
      background: var(--green-mid) !important;
    }

    .offer-features {
      list-style: none;
      margin: 16px 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .offer-features li {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.7);
    }

    .offer-features li::before { content: '✓ '; color: var(--green-light); font-weight: 700; }
    .offer-card.featured .offer-features li { color: var(--green-dark); }
    .offer-card.featured .offer-features li::before { color: var(--green-mid); }

    .offer-stock {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.5);
      margin-top: 8px;
    }

    .offer-card.featured .offer-stock { color: rgba(26,58,42,0.6); }

    .offer-urgency {
      background: rgba(244,196,48,0.15);
      border: 1px solid rgba(244,196,48,0.3);
      border-radius: 12px;
      padding: 20px 28px;
      margin: 32px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .offer-urgency p {
      color: var(--yellow);
      font-size: 0.92rem;
      font-weight: 600;
    }

    /* ── FAQ ── */
    .faq-section { background: var(--cream); }

    .faq-list {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      overflow: hidden;
    }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      padding: 20px 24px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--green-dark);
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .faq-q::after {
      content: '+';
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--green-mid);
      flex-shrink: 0;
      transition: transform 0.2s;
    }

    .faq-item.open .faq-q::after { transform: rotate(45deg); }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-item.open .faq-a { max-height: 300px; }

    .faq-a p {
      padding: 0 24px 20px;
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── FINAL CTA ── */
    .final-cta {
      background: var(--green-dark);
      padding: 100px 24px;
      text-align: center;
    }

    .final-cta h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .final-cta h2 em { color: var(--yellow); font-style: normal; }

    .final-cta p {
      color: rgba(255,255,255,0.7);
      font-size: 1rem;
      margin-bottom: 40px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    .footer-note {
      background: #111;
      padding: 24px;
      text-align: center;
      font-size: 0.75rem;
      color: #555;
    }

    /* ── TRUST BADGES ── */
    .trust-row {
      display: flex;
      gap: 24px;
      justify-content: center;
      flex-wrap: wrap;
      margin: 40px 0;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 1px solid #e5e7eb;
      border-radius: 50px;
      padding: 8px 18px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--green-dark);
    }

    /* ── DIVIDER ── */
    .wave-divider { width: 100%; overflow: hidden; line-height: 0; }
    .wave-divider svg { display: block; }

    /* ── RESPONSIVE ── */
    @media (max-width: 640px) {
      .proof-stats { grid-template-columns: 1fr; }
      .offer-cards { grid-template-columns: 1fr; }
      .hero-proof { gap: 24px; }
      .timer-bar { font-size: 0.72rem; gap: 8px; }
      .timer-bar .cta-mini { display: none; }
    }

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

    .hero > * { animation: fadeUp 0.7s ease forwards; }
    .hero > *:nth-child(1) { animation-delay: 0.1s; }
    .hero > *:nth-child(2) { animation-delay: 0.2s; }
    .hero > *:nth-child(3) { animation-delay: 0.35s; }
    .hero > *:nth-child(4) { animation-delay: 0.5s; }
    .hero > *:nth-child(5) { animation-delay: 0.6s; }
    .hero > *:nth-child(6) { animation-delay: 0.7s; }

/* ── IMAGES ── */
.hero-img-row {
  width: 100%;
  margin: 0 auto 32px;
  max-width: 700px;
}
.hero-product-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.solution-img-wrap {
  margin-bottom: 32px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.solution-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.testi-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--green-pale);
}
