/* ============================================================
   ShapeON – style.css
   Primary: #9BE15D (lime)  Dark Green: #1f4d3a  CTA gradient
   Font: DM Sans (body) + Syne (headings)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* ── RESET & TOKENS ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --lime:        #9BE15D;
  --lime-light:  #b8ee86;
  --dark-green:  #1f4d3a;
  --mid-green:   #2e7d52;
  --black:       #0d1109;
  --off-white:   #f6fdf2;
  --text:        #1a2415;
  --text-muted:  #4a6340;
  --border:      rgba(155,225,93,.25);

  --cta-gradient: linear-gradient(90deg, #1f4d3a 0%, #7ed957 48.56%, #1f4d3a 97.12%);
  --h2-gradient:  linear-gradient(90deg, #1a3a28 0%, #4eb83e 48%, #1a3a28 100%);

  --radius: 16px;
  --shadow: 0 8px 40px rgba(31,77,58,.15);
  --shadow-lg: 0 20px 60px rgba(31,77,58,.25);

  font-size: 19px;
  line-height: 1.85;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITIES ──────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* Section H2 gradient bar */
.section-title {
  font-family: "Be Vietnam Pro", sans-serif;;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  background: var(--h2-gradient);
  padding: 18px 32px;
  width: 100%;
  text-align: center;
  margin-bottom: 0;
  display: block;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: .95rem;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #2e7d52;
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 32px rgba(126,217,87,.35);
  white-space: nowrap;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(126,217,87,.5); }
.btn-cta:active { transform: translateY(0); }

/* ── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,17,9,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(155,225,93,.12);
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background .3s;
}
#navbar.scrolled { background: rgba(13,17,9,.98); }

.nav-inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--lime); }

.nav-cta {
  background: var(--cta-gradient);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 40px;
  font-family: "Be Vietnam Pro", sans-serif;;
  font-weight: 700 !important;
  font-size: .82rem !important;
  letter-spacing: .06em;
  box-shadow: 0 4px 20px rgba(126,217,87,.3);
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(126,217,87,.45) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(31,77,58,.55) 0%, #0d1109 70%);
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
  position: relative;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1" fill="%239be15d" opacity=".08"/></svg>') repeat;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(155,225,93,.12);
  border: 1px solid rgba(155,225,93,.3);
  border-radius: 40px;
  padding: 6px 16px;
  color: var(--lime);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); animation: pulse-dot 1.5s infinite; }

@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .6; }
}

.hero-title {
  font-family: "Be Vietnam Pro", sans-serif;;
  font-size: clamp(2.2rem, 5.5vw, 1.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title span { color: var(--lime); }

.hero-desc {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(155,225,93,.1);
  border: 1px solid rgba(155,225,93,.2);
  border-radius: 30px;
  padding: 6px 14px;
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 500;
}
.hero-pill img { width: 14px; height: 14px; filter: brightness(10); }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.stars { display: flex; gap: 3px; }
.stars img { width: 18px; }
.hero-rating-text { color: rgba(255,255,255,.65); font-size: .82rem; }
.hero-rating-text strong { color: var(--lime); }

.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-wrap img {
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 30px 80px rgba(126,217,87,.25));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.hero-leaf {
  position: absolute;
  opacity: .35;
  pointer-events: none;
}
.hero-leaf-1 { top: 0; left: -40px; width: 120px; transform: rotate(-30deg); }
.hero-leaf-2 { bottom: 40px; right: -20px; width: 90px; transform: rotate(20deg) scaleX(-1); }

/* ── TRUST BAR ──────────────────────────────────────────── */
#trust-bar {
  background: var(--dark-green);
  padding: 18px 0;
  overflow: hidden;
}
.trust-track {
  display: flex;
  gap: 60px;
  animation: scroll-trust 28s linear infinite;
  width: max-content;
}
.trust-track:hover { animation-play-state: paused; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: rgba(255,255,255,.9);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.trust-item img { width: 20px; height: 20px; filter: brightness(0) invert(1); }

@keyframes scroll-trust {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── WHY CHOOSE ─────────────────────────────────────────── */
#why {
  padding: 0 0 80px;
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 60px 0 0;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cta-gradient);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.why-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(155,225,93,.15), rgba(31,77,58,.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon img { width: 36px; height: 36px; }

.why-card h3 {
  font-family: "Be Vietnam Pro", sans-serif;;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 12px;
}
.why-card p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
}

/* ── REVIEWS ────────────────────────────────────────────── */
#reviews {
  padding: 0 0 80px;
  background: #fff;
}

.reviews-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 0;
}
.big-score {
  font-family: "Be Vietnam Pro", sans-serif;;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark-green);
  line-height: 1;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
  transition: transform .3s, box-shadow .3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.review-avatar img {
  width: 70px; height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--lime);
}

.review-stars { display: flex; gap: 3px; margin-bottom: 8px; }
.review-stars img { width: 15px; }

.review-text {
  color: var(--text);
  font-size: .9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}

.review-author {
  font-weight: 700;
  font-size: .88rem;
  color: var(--dark-green);
}
.review-verified {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--mid-green);
  font-size: .78rem;
  font-weight: 500;
  margin-top: 4px;
}
.review-verified img { width: 13px; }

/* ── WHAT IS SHAPEON ────────────────────────────────────── */
#about {
  padding: 0 0 80px;
  background: var(--dark-green);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(155,225,93,.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 60px 0 0;
}

.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.35));
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--lime);
  color: var(--dark-green);
  font-family: "Be Vietnam Pro", sans-serif;;
  font-weight: 800;
  font-size: .8rem;
  padding: 14px 18px;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow);
  line-height: 1.3;
}

.about-content { color: rgba(255,255,255,.85); }

.about-tag {
  display: inline-block;
  background: rgba(155,225,93,.15);
  border: 1px solid rgba(155,225,93,.3);
  color: var(--lime);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.about-content h2 {
  font-family: "Be Vietnam Pro", sans-serif;;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-content p { margin-bottom: 16px; font-size: .95rem; }

.about-checks { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.about-check {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.9);
  font-size: .92rem;
  font-weight: 500;
}
.about-check img { width: 20px; flex-shrink: 0; }

/* ── PRICING ────────────────────────────────────────────── */
#pricing {
  padding: 0 0 80px;
  background: var(--off-white);
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: .85rem;
  padding: 16px;
  margin-bottom: 40px;
}
.pricing-note strong { color: var(--dark-green); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: start;
  padding-top: 40px;
}

.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.pricing-card.featured {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(155,225,93,.15), var(--shadow-lg);
  animation: card-pulse 3s ease-in-out infinite;
  z-index: 2;
}
@keyframes card-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(155,225,93,.15), var(--shadow-lg); }
  50% { box-shadow: 0 0 0 8px rgba(155,225,93,.08), var(--shadow-lg); }
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta-gradient);
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  white-space: nowrap;
}

.pricing-bottles img {
  object-fit: contain;
  margin: 0 auto 16px;
  filter: drop-shadow(0 8px 20px rgba(31,77,58,.15));
}

.pricing-label {
  font-family: "Be Vietnam Pro", sans-serif;;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark-green);
  margin-bottom: 4px;
}
.pricing-supply {
  color: var(--text-muted);
  font-size: .82rem;
  margin-bottom: 20px;
}

.pricing-price {
  font-family: "Be Vietnam Pro", sans-serif;;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark-green);
  line-height: 1;
}
.pricing-price sup { font-size: 1.2rem; }
.pricing-per { color: var(--text-muted); font-size: .8rem; margin-bottom: 6px; }
.pricing-save {
  display: inline-block;
  background: #e8f5e1;
  color: var(--dark-green);
  font-weight: 700;
  font-size: .78rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.pricing-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0 28px;
  text-align: left;
}
.pricing-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  color: var(--text);
}
.pricing-perk img { width: 16px; flex-shrink: 0; }

.pricing-total {
  color: var(--text-muted);
  font-size: .8rem;
  margin-top: 12px;
}
.pricing-total strong { color: var(--dark-green); }

.pricing-cards-row {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.pricing-cards-row img { height: 22px; }

/* ── SHIPPING BANNER ────────────────────────────────────── */
#shipping-banner {
  background: var(--dark-green);
  padding: 20px 0;
}
.shipping-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.shipping-inner img { height: 48px; }
.shipping-text {
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .03em;
}
.shipping-text span { color: var(--lime); }

/* ── HOW IT WORKS ───────────────────────────────────────── */
#how {
  padding: 0 0 80px;
  background: #fff;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 60px;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 95px;
  left: calc(16.67% + 36px);
  right: calc(16.67% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent, var(--lime));
}

.how-step {
  text-align: center;
  position: relative;
}
.how-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--cta-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Be Vietnam Pro", sans-serif;;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 24px rgba(126,217,87,.35);
}
.how-step h3 {
  font-family: "Be Vietnam Pro", sans-serif;;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-green);
  margin-bottom: 10px;
}
.how-step p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }

/* ── INGREDIENTS ────────────────────────────────────────── */
#ingredients {
  padding: 0 0 80px;
  background: var(--off-white);
}

.ing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding-top: 60px;
}

.ing-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: start;
  transition: transform .3s, box-shadow .3s;
}
.ing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.ing-img {
  width: 100px; height: 100px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--off-white);
}

.ing-card h3 {
  font-family: "Be Vietnam Pro", sans-serif;;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-green);
  margin-bottom: 6px;
}
.ing-card .ing-latin {
  font-size: .78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 10px;
}
.ing-card p { color: var(--text-muted); font-size: .87rem; line-height: 1.7; }

/* ── BENEFITS ───────────────────────────────────────────── */
#benefits {
  padding: 0 0 80px;
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 60px;
}

.benefit-card {
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.benefit-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(54 167 52), rgb(37 141 98));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.benefit-icon img { width: 30px; height: 30px; }

.benefit-card h3 {
  font-family: "Be Vietnam Pro", sans-serif;;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-green);
  margin-bottom: 10px;
}
.benefit-card p { color: var(--text-muted); font-size: .87rem; line-height: 1.7; }

/* ── GUARANTEE ──────────────────────────────────────────── */
#guarantee {
  background: var(--black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
#guarantee::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(31,77,58,.4) 0%, transparent 70%);
}

.guarantee-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.guarantee-seal img {
  width: 160px;
  filter: drop-shadow(0 8px 24px rgba(155,225,93,.3));
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.guarantee-content h2 {
  font-family: "Be Vietnam Pro", sans-serif;;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.guarantee-content h2 span { color: var(--lime); }
.guarantee-content p { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.8; margin-bottom: 28px; }

/* ── FAQ ────────────────────────────────────────────────── */
#faq {
  padding: 0 0 80px;
  background: var(--off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-top: 60px;
  align-items: start;
}

.faq-img img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}

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

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

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-family: "Be Vietnam Pro", sans-serif;;
  font-weight: 600;
  font-size: .92rem;
  color: var(--dark-green);
  gap: 16px;
  transition: background .2s;
  user-select: none;
}
.faq-q:hover { background: rgba(155,225,93,.06); }

.faq-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cta-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-arrow svg { fill: #fff; width: 12px; height: 12px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 18px; }

/* ── FINAL CTA ──────────────────────────────────────────── */
#final-cta {
  background: var(--dark-green);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><circle cx="40" cy="40" r="1.5" fill="%239be15d" opacity=".1"/></svg>') repeat;
}

.final-cta-inner { position: relative; z-index: 1; }
.final-cta-inner h2 {
  font-family: "Be Vietnam Pro", sans-serif;;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.final-cta-inner h2 span { color: var(--lime); }
.final-cta-inner p { color: rgba(255,255,255,.72); font-size: .95rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }

.final-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.final-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  font-weight: 500;
}
.final-badge img { width: 18px; filter: brightness(0) invert(1); }

/* ── FOOTER ─────────────────────────────────────────────── */
#footer {
  background: #0a0f07;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(155,225,93,.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .84rem;
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h4 {
  font-family: "Be Vietnam Pro", sans-serif;;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: .84rem;
  margin-bottom: 8px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--lime); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .78rem; }

.disclaimer {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.07);
}
.disclaimer p { color: rgba(255,255,255,.3); font-size: .72rem; line-height: 1.65; }

/* ── EXIT POPUP ─────────────────────────────────────────── */
#exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#exit-popup.show { display: flex; animation: popup-in .3s ease; }
@keyframes popup-in {
  from { opacity: 0; transform: scale(.95); }
  to { opacity: 1; transform: scale(1); }
}

.popup-box {
  background: #fff;
  border-radius: 24px;
  max-width: 540px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: #666;
  z-index: 2;
  transition: background .2s;
}
.popup-close:hover { background: rgba(0,0,0,.2); }

.popup-top {
  background: var(--dark-green);
  padding: 32px 32px 20px;
  text-align: center;
}
.popup-top .popup-tag {
  display: inline-block;
  background: rgba(155,225,93,.2);
  color: var(--lime);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.popup-top h2 {
  font-family: "Be Vietnam Pro", sans-serif;;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}
.popup-top h2 span { color: var(--lime); }
.popup-top p { color: rgba(255,255,255,.7); font-size: .88rem; }

.popup-body {
  padding: 28px 32px 32px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
}
.popup-body img { border-radius: 12px; width: 140px; filter: drop-shadow(0 8px 20px rgba(31,77,58,.2)); }

.popup-price {
  font-family: "Be Vietnam Pro", sans-serif;;
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 4px;
}
.popup-price sub { font-size: 1rem; }
.popup-sub { color: var(--text-muted); font-size: .82rem; margin-bottom: 18px; }

/* ── MOBILE NAV ─────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(13,17,9,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(155,225,93,.12);
  padding: 24px 20px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn-cta { margin-top: 8px; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { font-size: 17px; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-pills { justify-content: center; }
  .hero-rating { justify-content: center; }
  .hero-img-wrap { order: -1; }
  .hero-img-wrap img { max-height: 340px; }

  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 10px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .how-grid { grid-template-columns: 1fr; }
  .how-grid::before { display: none; }
  .ing-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-seal { margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-img { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .popup-body { grid-template-columns: 1fr; text-align: center; }
  .popup-body img { margin: 0 auto; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-badges { flex-direction: column; align-items: center; }
}

/* ── SCROLL ANIMATIONS ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
