@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --green:  #1a4731;
  --gold:   #c89a45;
  --light:  #f5f5f0;
  --white:  #ffffff;
  --text:   #1a1a1a;
  --muted:  #5a6a5e;
  --border: #e0e0d8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 1.85;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }

h1 { font-size: clamp(38px, 5vw, 64px); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 700; line-height: 1.15; color: var(--green); }
h3 { font-size: clamp(22px, 2.5vw, 28px); font-weight: 600; color: var(--green); }
p  { font-size: clamp(18px, 1.8vw, 20px); color: var(--muted); line-height: 1.85; }

.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}

/* NAV */
.navbar { background: var(--green); padding: 16px 0; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-brand { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.nav-links { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nav-links a { color: #c5dece; font-size: 15px; font-weight: 500; padding: 6px 12px; border-radius: 6px; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-btn { background: var(--gold); color: #142017 !important; font-weight: 700 !important; border-radius: 999px !important; padding: 8px 20px !important; }

/* BUTTONS */
.btn { display: inline-block; padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; border: none; transition: opacity .2s; text-align: center; }
.btn-primary { background: var(--gold); color: #142017; }
.btn-primary:hover { opacity: .88; color: #142017; }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-white { background: #fff; color: var(--green); }
.btn-white:hover { opacity: .9; color: var(--green); }

/* LAYOUT */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.bg-light  { background: var(--light); }
.bg-white  { background: var(--white); }
.bg-green  { background: var(--green); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head p { margin-top: 12px; font-size: 20px; }

/* HERO */
.hero { background: var(--green); padding: 90px 0 100px; }
.hero-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero-sub { color: #c5dece; font-size: 22px; margin-bottom: 24px; line-height: 1.7; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.hero-tags span { font-size: 17px; color: #c8e8d4; border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; padding: 8px 16px; background: rgba(255,255,255,0.06); }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-img-wrap { width: 340px; flex-shrink: 0; }
.hero-img-wrap img { filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }
.rating-row { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.stars { color: var(--gold); font-size: 20px; }
.rating-text { color: #c5dece; font-size: 15px; }

/* TRUST BADGES */
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-card { text-align: center; padding: 28px 16px; border: 1px solid var(--border); border-radius: 10px; background: var(--white); }
.trust-card img { height: 60px; width: auto; margin: 0 auto 14px; object-fit: contain; }
.trust-card h3 { font-size: 20px; margin-bottom: 8px; }
.trust-card p { font-size: 17px; }

/* SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split img { border-radius: 12px; width: 100%; }
.split-text h2 { margin-bottom: 16px; }
.split-text p { margin-bottom: 14px; }

/* STEPS */
.step-list { display: flex; flex-direction: column; gap: 20px; }
.step-item { display: flex; gap: 18px; align-items: flex-start; padding: 20px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; }
.step-num { min-width: 44px; height: 44px; background: var(--green); color: var(--gold); font-size: 18px; font-weight: 700; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-item h3 { font-size: 21px; margin-bottom: 4px; }
.step-item p  { font-size: 18px; }

/* INGREDIENTS */
.ing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ing-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; }
.ing-num { min-width: 40px; height: 40px; background: var(--green); color: var(--gold); font-size: 17px; font-weight: 700; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ing-card h3 { font-size: 20px; margin-bottom: 6px; }
.ing-card p  { font-size: 17px; }

/* BENEFITS */
.ben-list { display: flex; flex-direction: column; gap: 14px; }
.ben-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 22px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; }
.ben-num { min-width: 40px; height: 40px; background: var(--green); color: var(--gold); font-size: 16px; font-weight: 700; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ben-item h3 { font-size: 21px; margin-bottom: 6px; }
.ben-item p  { font-size: 18px; }

/* REVIEWS */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }
.review-card img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; }
.review-stars { color: var(--gold); font-size: 20px; margin-bottom: 8px; }
.review-name { font-size: 17px; font-weight: 700; color: var(--text); }
.review-loc  { font-size: 15px; color: var(--muted); margin-bottom: 12px; }
.review-card p { font-size: 17px; font-style: italic; }

/* PRICING */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card { padding: 32px 24px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; text-align: center; }
.price-card.featured { border: 2px solid var(--gold); }
.price-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 14px; border-radius: 999px; background: var(--gold); color: #142017; margin-bottom: 14px; }
.price-card img { max-width: 130px; margin: 0 auto 16px; }
.price-card h3 { font-size: 22px; color: var(--text); margin-bottom: 4px; }
.price-supply { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.price-big { font-size: 40px; font-weight: 800; color: var(--green); line-height: 1; }
.price-per { font-size: 16px; font-weight: 400; color: var(--muted); }
.price-was { font-size: 15px; color: #aaa; text-decoration: line-through; margin: 4px 0; }
.price-total { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.check-list { list-style: none; text-align: left; margin-bottom: 20px; }
.check-list li { font-size: 17px; color: var(--muted); padding: 5px 0; }
.check-list li::before { content: "✓ "; color: var(--green); font-weight: 700; }

/* BONUS */
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bonus-card { padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }
.bonus-num { width: 36px; height: 36px; background: var(--green); color: var(--gold); font-size: 16px; font-weight: 700; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.bonus-card h3 { font-size: 20px; margin-bottom: 8px; }
.bonus-val { font-size: 13px; color: var(--gold); font-weight: 700; margin-top: 10px; }

/* GUARANTEE */
.guarantee-wrap { display: grid; grid-template-columns: auto 1fr; gap: 50px; align-items: center; }
.guarantee-wrap img { max-width: 180px; }
.guarantee-wrap h2 { color: #fff; margin-bottom: 14px; }
.guarantee-wrap p { color: #c5dece; margin-bottom: 12px; }

/* HOW TO TAKE */
.take-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.take-card { padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; }
.take-num { width: 44px; height: 44px; background: var(--green); color: var(--gold); font-size: 18px; font-weight: 700; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.take-card h3 { font-size: 21px; margin-bottom: 8px; }
.take-card p  { font-size: 18px; }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; background: var(--white); border: none; text-align: left; padding: 22px 26px; font-size: 20px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q .icon { font-size: 20px; color: var(--muted); transition: transform .2s; flex-shrink: 0; }
.faq-q[aria-expanded="true"] { background: var(--green); color: #fff; }
.faq-q[aria-expanded="true"] .icon { color: var(--gold); transform: rotate(45deg); }
.faq-a { padding: 20px 26px; font-size: 18px; color: var(--muted); line-height: 1.8; background: var(--white); display: none; }
.faq-a.open { display: block; }

/* FINAL CTA */
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.final-cta h2 { color: #fff; margin-bottom: 12px; }
.final-cta p  { color: #c5dece; font-size: 17px; margin-bottom: 16px; }
.final-price  { font-size: 22px; font-weight: 800; color: var(--gold); margin-bottom: 24px; }
.final-cta img { max-width: 220px; filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3)); }

/* STICKY */
.sticky-bar { background: var(--green); border-top: 3px solid var(--gold); padding: 12px 0; position: sticky; bottom: 0; z-index: 99; }
.sticky-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.sticky-bar strong { color: #fff; font-size: 17px; }
.sticky-bar span { color: #9dbdad; font-size: 15px; margin-left: 8px; }

/* FOOTER */
footer { background: #0e2d1e; padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; }
footer p { font-size: 14px; color: #7a9e88; line-height: 1.6; }
footer h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 14px; }
footer a { display: block; font-size: 14px; color: #7a9e88; margin-bottom: 8px; }
footer a:hover { color: var(--gold); }
.footer-rule { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }
.disclaimer { font-size: 13px; color: #4a6a52; line-height: 1.7; margin-bottom: 12px; }

/* NOTE */
.note { font-size: 14px; color: #7a9a8a; font-style: italic; margin-top: 10px; }

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { width: 260px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: repeat(2,1fr); }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  section { padding: 60px 0; }
  h1 { font-size: clamp(32px,8vw,46px); }
  .ing-grid, .take-grid, .bonus-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .guarantee-wrap { grid-template-columns: 1fr; text-align: center; }
  .final-cta-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
