:root {
  --green-950: #13291d;
  --green-900: #1c3a2a;
  --green-800: #28533c;
  --green-700: #326b4a;
  --green-100: #eaf3ec;
  --sage: #dfe9df;
  --mint: #f4faf5;
  --gold: #e7ad30;
  --red: #b73534;
  --ink: #162019;
  --muted: #637066;
  --line: #dfe7e1;
  --paper: #ffffff;
  --soft: #f7f8f6;
  --shadow: 0 18px 45px rgba(20, 44, 30, .1);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.wrap { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
.section { padding: 78px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-700);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: .78rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { font-size: clamp(2.45rem, 5.6vw, 3.4rem); max-width: 790px; }
h2 { font-size: clamp(2rem, 3.6vw, 2.65rem); }
h3 { font-size: 1.15rem; }
p { margin: 0; }
.lead { color: var(--muted); font-size: 1.12rem; max-width: 760px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--green-800);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(34, 87, 58, .18);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--green-700); box-shadow: 0 16px 30px rgba(34, 87, 58, .22); }
.btn.secondary { background: #fff; color: var(--green-900); border-color: var(--green-800); box-shadow: none; }
.btn.gold { background: var(--gold); color: #1a271e; }
.btn.full { width: 100%; }
.topbar {
  background: var(--green-950);
  color: #e8f2eb;
  font-size: .88rem;
}
.topbar .wrap {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 231, 225, .8);
}
.nav {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-weight: 900;
  color: var(--green-950);
}
.brand img { width: 36px; height: 36px; border-radius: 50%; }
.nav-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 750;
  font-size: .93rem;
}
.nav-links a { text-decoration: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.language a {
  padding: 8px 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: .85rem;
  color: var(--green-900);
}
.language .active { background: var(--green-900); color: #fff; }
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(231, 173, 48, .16), transparent 24%),
    linear-gradient(180deg, #fbfdfb 0%, #eef6ef 100%);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 42px;
  min-height: 690px;
  align-items: center;
  padding: 56px 0 44px;
}
.hero-copy { display: grid; gap: 24px; }
.hero-copy .lead { font-size: 1.25rem; }
.trust-row, .badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  color: var(--green-900);
  font-size: .9rem;
  font-weight: 800;
}
.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 1% 4% 9%;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-visual img { position: relative; width: min(100%, 650px); filter: drop-shadow(0 28px 34px rgba(17, 37, 25, .15)); }
.availability {
  background: var(--green-900);
  color: #fff;
}
.availability .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}
.status-box {
  padding: 17px 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,.04);
  font-weight: 850;
}
.status-box span { color: #d7ecd9; }
.split {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 52px;
  align-items: start;
}
.copy-card, .facts-card, .side-offer {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.copy-stack { display: grid; gap: 18px; }
.tint { background: var(--soft); }
.benefit-grid, .review-grid, .package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.benefit-card, .review-card, .price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(20, 44, 30, .06);
}
.icon-dot {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 900;
  margin-bottom: 16px;
}
.benefit-card p, .review-card p, .price-card p { color: var(--muted); font-size: .96rem; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.step {
  padding: 26px;
  border-left: 4px solid var(--gold);
  background: var(--mint);
  border-radius: var(--radius);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  margin-top: 30px;
}
.facts-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  font-weight: 900;
}
.fact-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.ingredient-list {
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.ingredient-list li { padding-left: 2px; }
.package-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.price-card {
  position: relative;
  display: grid;
  gap: 14px;
}
.price-card.featured { border: 2px solid var(--green-700); transform: translateY(-8px); }
.ribbon {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-900);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
}
.pack-img { min-height: 205px; display: grid; place-items: center; }
.pack-img img { max-height: 220px; object-fit: contain; }
.two-pack {
  min-height: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.two-pack img { width: 42%; max-height: 210px; object-fit: contain; }
.two-pack img:first-child { transform: translateX(18px); }
.two-pack img:last-child { transform: translateX(-18px) scale(.94); opacity: .9; }
.bonus { color: var(--red); font-weight: 900; }
.tagline { color: var(--green-700); font-weight: 850; }
.price { font-size: 1.3rem; font-weight: 950; color: var(--green-950); }
.guarantee {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--green-900);
  color: #fff;
}
.guarantee img { width: 100px; }
.guarantee p { color: #dcebe0; }
.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.comparison th, .comparison td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.comparison th { background: var(--green-900); color: #fff; }
.comparison td:nth-child(2) { color: var(--green-700); font-weight: 900; }
.review-card img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}
.stars { color: var(--gold); font-weight: 950; letter-spacing: 0; }
.review-meta { color: var(--muted); font-size: .9rem; margin-bottom: 8px; }
.faq-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}
.faq-list { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}
.faq-item button::after { content: "+"; color: var(--green-700); font-weight: 950; }
.faq-item.open button::after { content: "-"; }
.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}
.faq-item.open .faq-answer { display: block; }
.side-offer {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
  text-align: center;
}
.side-offer img { margin: 0 auto; max-height: 310px; object-fit: contain; }
.site-footer {
  background: var(--green-950);
  color: #ecf4ef;
  padding: 46px 0 92px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}
.footer-links button {
  border: 0;
  background: transparent;
  color: #ecf4ef;
  padding: 0;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}
.modal, .exit-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(14, 26, 18, .62);
}
.modal.open, .exit-modal.open { display: flex; }
.modal-panel {
  width: min(640px, 100%);
  max-height: 86vh;
  overflow: auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 22px 70px rgba(0,0,0,.25);
}
.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 14px;
}
.modal-close {
  border: 1px solid var(--line);
  background: var(--soft);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 900;
}
.exit-panel {
  width: min(780px, 100%);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: center;
}
.exit-panel img { max-height: 330px; object-fit: contain; margin: 0 auto; }
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  padding: 10px 14px;
  background: rgba(255,255,255,.96);
  border-top: 1px solid var(--line);
}
.note { color: var(--muted); font-size: .9rem; margin-top: 16px; }

@media (max-width: 980px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero .wrap, .split, .ingredient-grid, .faq-split, .footer-grid, .exit-panel { grid-template-columns: 1fr; }
  .hero .wrap { min-height: auto; padding-top: 42px; }
  .hero-visual { min-height: 380px; }
  .benefit-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid, .steps { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .guarantee { grid-template-columns: 90px 1fr; }
  .guarantee .btn { grid-column: 1 / -1; }
  .side-offer { position: static; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 24px, 1160px); }
  .section { padding: 58px 0; }
  .topbar .wrap { align-items: flex-start; flex-direction: column; padding: 8px 0; }
  .brand span { max-width: 170px; line-height: 1.15; }
  .nav-actions .btn { display: none; }
  .hero-copy { gap: 18px; }
  .hero-copy .lead { font-size: 1.08rem; }
  .availability .wrap, .benefit-grid, .review-grid { grid-template-columns: 1fr; }
  .status-box { justify-content: flex-start; }
  .comparison { display: block; overflow-x: auto; white-space: nowrap; }
  .guarantee { grid-template-columns: 1fr; text-align: center; }
  .guarantee img { margin: 0 auto; }
  .mobile-cta { display: block; }
}
