/* ==========================================================================
   Moringa Magic Review — stylesheet
   Palette: cream background, deep forest green, navy dark sections,
   orange-red CTA gradient, green CTA gradient. Montserrat + Lato.
   ========================================================================== */

:root{
  --bg-cream: #FDF8F0;
  --bg-cream-2: #F7F1E3;
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #74C69D;
  --navy: #0D1B2E;
  --navy-2: #16324A;
  --orange: #F7931E;
  --orange-red: #FF6B35;
  --red: #E63946;
  --amber: #FFB020;
  --text-dark: #1A2E22;
  --text-muted: #5C6B62;
  --text-on-dark: #F3F7F4;
  --text-on-dark-muted: #AAB8C2;
  --edge: #E4DCC8;
  --edge-dark: #24405A;
  --white: #FFFFFF;

  --grad-announce: linear-gradient(90deg, var(--red), var(--orange));
  --grad-cta: linear-gradient(135deg, var(--orange-red), var(--orange));
  --grad-green: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  --grad-navy: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 16px 40px -18px rgba(27,67,50,.28);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  background: var(--bg-cream);
  color: var(--text-dark);
  font-family:'Lato', -apple-system, sans-serif;
  line-height:1.7;
  padding-top: 118px; /* announcement bar + navbar */
}
h1,h2,h3,h4,.display-face{
  font-family:'Montserrat', sans-serif;
  font-weight:800;
  color: var(--green-deep);
  letter-spacing:-0.01em;
}
.on-dark h1,.on-dark h2,.on-dark h3,.on-dark p,.on-dark li{ color: var(--text-on-dark); }
.on-dark .section-lede{ color: var(--text-on-dark-muted); }

a{ color: var(--green-mid); text-decoration:none; }
a:hover{ color: var(--orange-red); }
::selection{ background: var(--green-light); color: var(--navy); }

/* ---------- Utility ---------- */
.section{ padding: 5rem 0; }
.section-tight{ padding: 3rem 0; }
.section-tag{
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:'Montserrat',sans-serif; font-weight:800; font-size:.72rem;
  letter-spacing:.14em; text-transform:uppercase; color: var(--green-mid);
  background: rgba(45,106,79,.09); border:1px solid rgba(45,106,79,.25);
  padding:.4rem .9rem; border-radius:999px; margin-bottom:1rem;
}
.section-tag.on-dark-tag{ color: var(--green-light); background: rgba(116,198,157,.12); border-color: rgba(116,198,157,.3); }
.section-title{ font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom:.9rem; }
.section-lede{ color: var(--text-muted); max-width: 680px; font-size:1.05rem; }
.text-accent{ color: var(--orange-red); }

/* ---------- Reveal animation ---------- */
.reveal{ opacity:0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ---------- Buttons ---------- */
.btn-cta{
  background: var(--grad-cta); border:none; color:#fff !important; font-family:'Montserrat',sans-serif;
  font-weight:800; text-transform:uppercase; font-size:.86rem; letter-spacing:.03em;
  padding: .95rem 2rem; border-radius: 999px; box-shadow: 0 14px 30px -10px rgba(255,107,53,.55);
  transition: transform .15s ease, box-shadow .15s ease; display:inline-block; border:2px solid transparent;
}
.btn-cta:hover{ transform: translateY(-2px); box-shadow: 0 18px 34px -8px rgba(255,107,53,.6); }
.btn-green{
  background: var(--grad-green); border:none; color:#fff !important; font-family:'Montserrat',sans-serif;
  font-weight:800; text-transform:uppercase; font-size:.86rem; letter-spacing:.03em;
  padding:.95rem 2rem; border-radius:999px; box-shadow: 0 14px 30px -10px rgba(27,67,50,.5);
  display:inline-block; animation: pulseGreen 2.4s infinite;
}
.btn-pulse{ animation: pulseOrange 2.2s infinite; }
@keyframes pulseOrange{ 0%,100%{ box-shadow:0 0 0 0 rgba(255,107,53,.45);} 50%{ box-shadow:0 0 0 12px rgba(255,107,53,0);} }
@keyframes pulseGreen{ 0%,100%{ box-shadow:0 0 0 0 rgba(45,106,79,.45);} 50%{ box-shadow:0 0 0 12px rgba(45,106,79,0);} }
.btn-outline-vf{
  border:2px solid var(--green-deep); color: var(--green-deep); background:transparent; font-family:'Montserrat',sans-serif;
  font-weight:700; font-size:.86rem; padding:.9rem 1.9rem; border-radius:999px; display:inline-block;
}
.btn-outline-vf:hover{ background: var(--green-deep); color:#fff; }
.btn-sm-pill{ padding:.55rem 1.2rem; font-size:.72rem; }

/* ---------- Announcement bar ---------- */
.announce-bar{
  background:#059409; color:#fff; text-align:center; font-family:'Montserrat',sans-serif;
  font-weight:700; font-size:.82rem; letter-spacing:.02em; padding:.55rem 1rem;
  position:fixed; top:0; left:0; right:0; z-index:1051;
}
.announce-bar strong{ font-weight:900; }

/* ---------- Navbar ---------- */
.navbar-vf{
  position:fixed; top:38px; left:0; right:0; z-index:1050;
  background: rgba(253,248,240,.92); backdrop-filter: blur(10px);
  border-bottom:1px solid var(--edge); padding: .7rem 0; transition: box-shadow .2s ease, padding .2s ease;
}
.navbar-vf.scrolled{ box-shadow: 0 8px 24px -12px rgba(27,67,50,.25); padding:.45rem 0; }
.navbar-vf .navbar-brand{ font-family:'Montserrat',sans-serif; font-weight:900; color: var(--green-deep); font-size:1.2rem; }
.navbar-vf .navbar-brand span{ color: var(--orange-red); }
.navbar-vf .nav-link{ font-family:'Montserrat',sans-serif; font-weight:700; font-size:.86rem; color: var(--text-dark); }
.navbar-vf .nav-link:hover{ color: var(--green-mid); }

/* ---------- Placeholder boxes (missing assets) ---------- */
.placeholder-box{
  border: 2px dashed var(--orange-red);
  background: repeating-linear-gradient(135deg, rgba(255,107,53,.06) 0 10px, rgba(255,107,53,.02) 10px 20px);
  color: var(--orange-red); font-family:'Montserrat',sans-serif; font-weight:700; font-size:.78rem;
  border-radius: var(--radius-md); display:flex; align-items:center; justify-content:center;
  text-align:center; padding: 1rem; line-height:1.4; width:100%;
}
.placeholder-box.ratio-4-3{ aspect-ratio: 4/3; }
.placeholder-box.ratio-16-10{ aspect-ratio: 16/10; }
.placeholder-box.ratio-1-1{ aspect-ratio: 1/1; }
.placeholder-box.circle{ border-radius:50%; aspect-ratio:1/1; width:90px; height:90px; padding:.4rem; font-size:.6rem; margin:0 auto; }
.placeholder-box .ph-icon{ display:block; font-size:1.3rem; margin-bottom:.3rem; }

/* ---------- Hero ---------- */
.hero{
  background:
    radial-gradient(50% 60% at 85% 0%, rgba(116,198,157,.18), transparent 60%),
    var(--bg-cream);
  padding: 4rem 0 3.5rem;
}
.hero h1{ font-size: clamp(2rem, 3.6vw, 2.9rem); line-height:1.12; }
.hero .subhead{ color: var(--text-muted); font-size:1.1rem; max-width:560px; margin:1.2rem 0 1.6rem; }
.trust-row{ display:flex; flex-wrap:wrap; gap:.6rem 1.2rem; margin: 1.5rem 0; }
.trust-row .t-item{ display:flex; align-items:center; gap:.45rem; font-family:'Montserrat',sans-serif; font-weight:700; font-size:.84rem; color: var(--green-deep); }
.trust-row .t-item i{ color: var(--green-mid); }
.hero-product-frame{
  background: linear-gradient(160deg, #fff, var(--bg-cream-2));
  border:1px solid var(--edge); border-radius: var(--radius-lg); padding: 1.6rem;
  box-shadow: var(--shadow-card); text-align:center;
}
.hero-product-frame img{ max-height: 420px; width:auto; margin:0 auto; }
.rating-chip{
  display:inline-flex; align-items:center; gap:.4rem; background:#fff; border:1px solid var(--edge);
  padding:.4rem .9rem; border-radius:999px; font-family:'Montserrat',sans-serif; font-weight:700; font-size:.8rem;
  color: var(--green-deep); box-shadow: 0 6px 16px -8px rgba(0,0,0,.15);
}
.rating-chip .stars{ color: var(--amber); letter-spacing:1px; }

/* ---------- Trust banner ---------- */
.trust-banner{ background: var(--grad-navy); }
.tb-card{ text-align:center; padding: 1.6rem 1.2rem; }
.tb-card .emoji{ font-size:2.1rem; display:block; margin-bottom:.8rem; }
.tb-card h3{ color:#fff; font-size:1.05rem; margin-bottom:.5rem; }
.tb-card p{ color: var(--text-on-dark-muted); font-size:.92rem; margin-bottom:0; }
.guarantee-strip{
  background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); border-radius: var(--radius-md);
  padding: 1.1rem 1.6rem; display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:1.2rem;
  margin-top: 2.5rem; text-align:center;
}
.guarantee-strip span{ color:#fff; font-family:'Montserrat',sans-serif; font-weight:700; font-size:.92rem; }

/* ---------- Reviews ---------- */
.review-card{
  background:#fff; border:1px solid var(--edge); border-radius: var(--radius-lg); padding: 1.8rem; height:100%;
  box-shadow: var(--shadow-card);
}
.review-head{ display:flex; align-items:center; gap:.9rem; margin-bottom:1rem; }
.review-photo{ width:64px; height:64px; border-radius:50%; object-fit:cover; }
.review-name{ font-family:'Montserrat',sans-serif; font-weight:800; font-size:.98rem; color: var(--green-deep); }
.review-loc{ font-size:.8rem; color: var(--text-muted); }
.verified-badge{ display:inline-flex; align-items:center; gap:.3rem; font-size:.7rem; font-weight:700; color: var(--green-mid); background: rgba(45,106,79,.09); padding:.15rem .55rem; border-radius:999px; margin-top:.2rem; }
.review-stars{ color: var(--amber); letter-spacing:2px; margin-bottom:.7rem; }
.review-card p.body{ color: var(--text-dark); font-size:.95rem; }
.rating-summary{
  background:#fff; border:1px solid var(--edge); border-radius: var(--radius-lg); padding: 1.4rem 2rem;
  display:flex; flex-wrap:wrap; gap:1.5rem; align-items:center; justify-content:center; box-shadow: var(--shadow-card);
}
.rating-summary .big-num{ font-family:'Montserrat',sans-serif; font-weight:900; font-size:2.2rem; color: var(--green-deep); }
.testimonial-note{ font-size:.78rem; color: var(--text-muted); background: var(--bg-cream-2); border:1px dashed var(--edge); border-radius: var(--radius-sm); padding: .8rem 1.1rem; margin-top:1.5rem; }

/* ---------- What is / 2col ---------- */
.benefit-mini-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.6rem; }
.benefit-mini{ background:#fff; border:1px solid var(--edge); border-radius: var(--radius-md); padding:1.1rem; }
.benefit-mini i{ color: var(--green-mid); font-size:1.2rem; margin-bottom:.5rem; display:block; }
.benefit-mini h4{ font-size:.92rem; margin-bottom:.3rem; color: var(--green-deep); }
.benefit-mini p{ font-size:.82rem; color: var(--text-muted); margin-bottom:0; }
.stacked-imgs{ display:flex; flex-direction:column; gap:1.2rem; }
.stacked-imgs img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-card); width:100%; }

/* ---------- How it works ---------- */
.step-card-vf{ background:#fff; border:1px solid var(--edge); border-radius: var(--radius-lg); padding: 1.9rem; text-align:center; height:100%; box-shadow: var(--shadow-card); }
.step-circle{
  width:56px; height:56px; border-radius:50%; background: var(--grad-cta); 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 1.1rem;
}
.step-card-vf h3{ font-size:1.08rem; margin-bottom:.5rem; }
.step-card-vf p{ color: var(--text-muted); font-size:.92rem; margin-bottom:0; }
.routine-strip{
  background: var(--bg-cream-2); border:1px solid var(--edge); border-radius: var(--radius-md);
  padding:1.1rem 1.6rem; text-align:center; margin-top:2.2rem; font-family:'Montserrat',sans-serif;
  font-weight:700; color: var(--green-deep); font-size:.95rem;
}
.routine-strip span{ color: var(--orange-red); }

/* ---------- Science ---------- */
.science-section{ background: var(--grad-navy); }
.pull-quote{
  border-left: 4px solid var(--green-light); padding: .3rem 0 .3rem 1.3rem; margin: 1.6rem 0;
  font-family:'Montserrat',sans-serif; font-style:italic; font-weight:600; color:#fff; font-size:1.08rem;
}
.stat-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:1rem; margin-top:1.8rem; }
.stat-box{ background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); padding:1.1rem 1.2rem; }
.stat-box .s-label{ font-family:'Montserrat',sans-serif; font-weight:800; color:#fff; font-size:.92rem; }
.stat-box .s-sub{ color: var(--text-on-dark-muted); font-size:.78rem; margin-top:.25rem; }

/* ---------- Pricing ---------- */
.pricing-section{ background: var(--bg-cream-2); }
.urgency-bar{
  background: var(--grad-announce); color:#fff; text-align:center; padding:.8rem 1.4rem; border-radius:999px;
  font-family:'Montserrat',sans-serif; font-weight:800; font-size:.86rem; max-width: 620px; margin: 0 auto 2.6rem;
  animation: pulseOrange 2.4s infinite;
}
.price-card-vf{
  background:#fff; border:2px solid var(--edge); border-radius: var(--radius-lg); padding: 2rem 1.7rem; height:100%;
  position:relative; box-shadow: var(--shadow-card); display:flex; flex-direction:column;
}
.price-card-vf.popular{ border-color: var(--green-mid); transform: scale(1.03); }
.popular-badge{
  position:absolute; top:-14px; left:50%; transform:translateX(-50%); background: var(--grad-green); color:#fff;
  font-family:'Montserrat',sans-serif; font-weight:800; font-size:.72rem; letter-spacing:.05em; text-transform:uppercase;
  padding:.4rem 1.1rem; border-radius:999px; white-space:nowrap;
}
.pkg-name{ font-family:'Montserrat',sans-serif; font-weight:800; color: var(--green-deep); font-size:1.05rem; margin-bottom:.3rem; }
.pkg-supply{ color: var(--text-muted); font-size:.85rem; margin-bottom:1.1rem; }
.pkg-price-row{ margin-bottom:.5rem; }
.pkg-strike{ color:#B0A98F; text-decoration:line-through; font-size:1.05rem; margin-right:.5rem; }
.pkg-price{ font-family:'Montserrat',sans-serif; font-weight:900; font-size:2.1rem; color: var(--green-deep); }
.pkg-per{ color: var(--text-muted); font-size:.82rem; }
.savings-pill{
  display:inline-block; background: rgba(255,107,53,.12); color: var(--orange-red); font-weight:800; font-size:.76rem;
  padding:.25rem .7rem; border-radius:999px; margin: .6rem 0 1.2rem; font-family:'Montserrat',sans-serif;
}
.free-ship-badge{ display:inline-flex; align-items:center; gap:.35rem; color: var(--green-mid); font-weight:700; font-size:.78rem; margin-bottom:1rem; }
.pkg-features{ list-style:none; padding-left:0; margin-bottom:1.6rem; flex-grow:1; }
.pkg-features li{ padding:.4rem 0; border-bottom:1px dashed var(--edge); color: var(--text-muted); font-size:.88rem; display:flex; gap:.5rem; }
.pkg-features li:last-child{ border-bottom:none; }
.pkg-features li i{ color: var(--green-mid); }
.pkg-img-wrap{ text-align:center; margin-bottom:1.2rem; }
.pkg-img-wrap img{ max-height:150px; }

/* ---------- Guarantee ---------- */
.guarantee-badge-wrap{ text-align:center; }
.guarantee-badge-wrap .placeholder-box.circle{ width:220px; height:220px; font-size:.85rem; }

/* ---------- FAQ ---------- */
.accordion-vf .accordion-item{ background:#fff; border:1px solid var(--edge); border-radius: var(--radius-md) !important; margin-bottom:.8rem; overflow:hidden; }
.accordion-vf .accordion-button{ font-family:'Montserrat',sans-serif; font-weight:700; color: var(--green-deep); background:#fff; box-shadow:none; padding:1.1rem 1.3rem; }
.accordion-vf .accordion-button:not(.collapsed){ background: var(--bg-cream-2); color: var(--green-deep); box-shadow:none; }
.accordion-vf .accordion-button:focus{ box-shadow:none; border-color: var(--edge); }
.accordion-vf .accordion-body{ color: var(--text-muted); padding: 0 1.3rem 1.2rem; font-size:.94rem; }

/* ---------- Final CTA ---------- */
.final-cta-section{ background: var(--grad-navy); text-align:center; }
.final-cta-section img{ max-height: 340px; margin: 0 auto 1.8rem; display:block; }
.final-price-row{ display:flex; align-items:baseline; justify-content:center; gap:.8rem; margin:1.4rem 0; }
.final-price-row .strike{ color: rgba(255,255,255,.4); text-decoration:line-through; font-size:1.3rem; }
.final-price-row .big{ font-family:'Montserrat',sans-serif; font-weight:900; font-size:3rem; color:#fff; }
.trust-icon-row{ display:flex; flex-wrap:wrap; gap:1.8rem; justify-content:center; margin-top:2.6rem; }
.trust-icon-row .ti{ text-align:center; color: var(--text-on-dark-muted); font-size:.8rem; font-weight:700; font-family:'Montserrat',sans-serif; }
.trust-icon-row .ti i{ display:block; font-size:1.4rem; color: var(--green-light); margin-bottom:.4rem; }

/* ---------- Checkout explainer ---------- */
.checkout-flow{ display:flex; align-items:flex-start; justify-content:space-between; gap:1rem; position:relative; margin-bottom: 2.5rem; }
.checkout-flow::before{ content:''; position:absolute; top:28px; left:8%; right:8%; height:2px; background: repeating-linear-gradient(90deg, var(--edge) 0 8px, transparent 8px 16px); z-index:0; }
.cf-step{ position:relative; z-index:1; text-align:center; flex:1; }
.cf-step .emoji-circle{ width:56px; height:56px; border-radius:50%; background:#fff; border:2px solid var(--green-mid); display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin:0 auto .8rem; }
.cf-step h4{ font-size:.88rem; color: var(--green-deep); margin-bottom:.2rem; }
.cf-step p{ font-size:.76rem; color: var(--text-muted); margin-bottom:0; }
@media (max-width:767px){ .checkout-flow{ flex-direction:column; gap:1.6rem; } .checkout-flow::before{ display:none; } }
.onetime-note{ background:#fff; border:1px solid var(--edge); border-radius: var(--radius-md); padding:1rem 1.4rem; text-align:center; font-size:.88rem; color: var(--text-muted); }

/* ---------- Security band ---------- */
.security-band{ background: var(--navy); }
.security-band h3{ color:#fff; font-size:1rem; margin-bottom:.8rem; }
.security-band p, .security-band a{ color: var(--text-on-dark-muted); font-size:.88rem; }
.payment-badges{ display:flex; gap:.6rem; flex-wrap:wrap; margin-top:.8rem; }
.payment-badges span{ background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15); border-radius:6px; padding:.35rem .7rem; font-size:.72rem; font-weight:700; color:#fff; font-family:'Montserrat',sans-serif; }
.closing-testi{ background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); padding:1.4rem; }
.closing-testi p{ color: var(--text-on-dark-muted); font-style:italic; font-size:.9rem; }
.closing-testi .cname{ color:#fff; font-weight:700; font-family:'Montserrat',sans-serif; font-size:.85rem; }

/* ---------- Footer ---------- */
.footer-main{ background: var(--navy); padding: 4rem 0 1.5rem; }
.footer-main h5{ color:#fff; font-family:'Montserrat',sans-serif; font-weight:800; font-size:.92rem; margin-bottom:1rem; }
.footer-main a{ color: var(--text-on-dark-muted); font-size:.88rem; display:block; margin-bottom:.55rem; }
.footer-main a:hover{ color:#fff; }
.footer-main a.legal-link{ color: var(--amber); }
.footer-main a.legal-link:hover{ color:#fff; }
.footer-brand-desc{ color: var(--text-on-dark-muted); font-size:.88rem; max-width:320px; }
.trust-pills-footer{ display:flex; flex-wrap:wrap; gap:.5rem; margin: 1.2rem 0; }
.trust-pills-footer span{ background: rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.14); color:#fff; font-size:.72rem; font-weight:700; padding:.3rem .7rem; border-radius:999px; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.12); margin-top:2.5rem; padding-top:1.5rem; display:flex; flex-wrap:wrap; justify-content:space-between; gap:1rem; }
.footer-bottom .copy{ color: var(--text-on-dark-muted); font-size:.82rem; }
.footer-bottom .legal-links a{ display:inline-block; margin-left:1.2rem; color: var(--amber); font-size:.82rem; }
.disclaimer-strip{ background:#081420; padding: 1rem 0; }
.disclaimer-strip p{ color: rgba(255,255,255,.45); font-size:.7rem; line-height:1.6; margin-bottom:0; }

/* ---------- Legal pages ---------- */
.legal-hero{ padding: 6.5rem 0 2.5rem; }
.legal-hero.green-hero{ background: var(--grad-green); }
.legal-hero.red-hero{ background: linear-gradient(135deg, var(--red), var(--orange)); }
.legal-hero.navy-hero{ background: var(--grad-navy); }
.legal-hero h1{ color:#fff; font-size: clamp(1.7rem,3vw,2.3rem); }
.legal-hero p{ color: rgba(255,255,255,.85); }
.legal-updated-chip{ display:inline-block; background: rgba(255,255,255,.15); color:#fff; font-size:.8rem; font-weight:700; padding:.35rem .9rem; border-radius:999px; margin-top:.8rem; }
.alert-box-yellow{ background:#FFF3CD; border:1px solid #FFD666; color:#7A5B00; border-radius: var(--radius-md); padding:1rem 1.3rem; font-size:.92rem; margin-bottom:2rem; }
.alert-box-red{ background:#FDECEC; border:1px solid #F5A3A3; color:#8A1F1F; border-radius: var(--radius-md); padding:1.2rem 1.4rem; font-size:.92rem; margin-bottom:2rem; }
.alert-box-red strong{ display:block; margin-bottom:.3rem; }
.highlight-box{ background: var(--bg-cream-2); border-left:4px solid var(--green-mid); border-radius: var(--radius-sm); padding:1rem 1.3rem; margin:1.3rem 0; font-size:.92rem; }
.toc-box{ background:#fff; border:1px solid var(--edge); border-radius: var(--radius-lg); padding:1.6rem; box-shadow: var(--shadow-card); position:sticky; top:150px; }
.toc-box h5{ font-family:'Montserrat',sans-serif; font-weight:800; color: var(--green-deep); font-size:.9rem; margin-bottom:.9rem; }
.toc-box ol{ padding-left:1.1rem; margin-bottom:0; }
.toc-box li{ margin-bottom:.55rem; font-size:.86rem; }
.toc-box.two-col ol{ columns:2; column-gap:1.2rem; }
.legal-section{ padding: 2.4rem 0 0; }
.legal-section h2{ display:flex; align-items:center; gap:.8rem; font-size:1.25rem; margin-bottom:1rem; }
.num-badge{
  width:34px; height:34px; min-width:34px; border-radius:50%; background: var(--grad-green); color:#fff;
  display:flex; align-items:center; justify-content:center; font-family:'Montserrat',sans-serif; font-weight:800; font-size:.9rem;
}
.legal-body p, .legal-body li{ color: var(--text-muted); font-size:.96rem; }
.legal-body ul{ padding-left:1.2rem; }
.info-card-2col{ background:#fff; border:1px solid var(--edge); border-radius: var(--radius-md); padding:1.3rem; height:100%; }
.info-card-2col h4{ font-size:.95rem; color: var(--green-deep); margin-bottom:.5rem; }
.legal-back-link{ font-family:'Montserrat',sans-serif; font-weight:700; font-size:.85rem; }

@media (max-width: 991px){
  .toc-box{ position:static; margin-bottom: 2rem; }
}
@media (max-width: 767px){
  body{ padding-top: 128px; }
  .section{ padding: 3.2rem 0; }
  .price-card-vf.popular{ transform:none; }
  .benefit-mini-grid{ grid-template-columns: 1fr; }
}

.img-rounded{border-radius: 150px; width: 120px !important; height: 120px !important;}
