:root {
  --forest: #123f2b;
  --forest-2: #0b2c1d;
  --leaf: #2f8b55;
  --mint: #edf8ef;
  --cream: #fbf4e6;
  --gold: #f4b83f;
  --gold-2: #ffcf5f;
  --rust: #d9792c;
  --ink: #17231c;
  --muted: #657168;
  --line: #dbe7dc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 63, 43, 0.16);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fffef9;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; user-select: none; -webkit-user-drag: none; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { color: var(--ink); line-height: 1.08; margin: 0 0 1rem; letter-spacing: 0; }
h1 { font-size: clamp(2.55rem, 7vw, 4.25rem); max-width: 11ch; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.18rem; }
button { font: inherit; }

.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section-pad { padding: 84px 0; }
.cream { background: var(--cream); }
.green-tint { background: linear-gradient(180deg, #f5fbf3 0%, #ecf7ec 100%); }
.narrow { max-width: 780px; }
.centered { text-align: center; margin-inline: auto; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--leaf);
  font-weight: 850;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
}
.section-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.section-heading { text-align: center; max-width: 820px; margin: 0 auto 42px; }
.section-heading p { font-size: 1.05rem; }

.top-bar {
  background: var(--forest-2);
  color: #f9f3df;
  overflow: hidden;
  font-weight: 750;
  font-size: .88rem;
}
.top-bar__track {
  display: flex;
  gap: 34px;
  white-space: nowrap;
  width: max-content;
  padding: 9px 0;
  animation: slideTrack 27s linear infinite;
}
.top-bar__track span::before { content: "•"; color: var(--gold); margin: 0 12px 0 4px; }
@keyframes slideTrack { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 254, 249, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18, 63, 43, .1);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; color: var(--forest); }
.brand img { border-radius: 50%; box-shadow: 0 8px 24px rgba(18, 63, 43, .12); }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-size: .88rem; color: var(--muted); }
.nav-menu { display: flex; align-items: center; gap: 20px; font-weight: 760; font-size: .95rem; }
.nav-menu > a:not(.primary-btn) { color: #2c3e33; }
.nav-menu > a:not(.primary-btn):hover { color: var(--leaf); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--forest); margin: 5px auto; }

.primary-btn, .secondary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.primary-btn {
  color: #1d230f;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 45%, #f08d2f);
  box-shadow: 0 14px 34px rgba(217, 121, 44, .32);
}
.primary-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent);
  transition: transform .55s ease;
}
.primary-btn:hover, .primary-btn:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 46px rgba(217, 121, 44, .44), 0 0 0 5px rgba(244, 184, 63, .16);
}
.primary-btn:hover::after, .primary-btn:focus-visible::after { transform: translateX(130%) skewX(-18deg); }
.secondary-btn {
  color: var(--forest);
  background: var(--white);
  border: 1px solid rgba(18, 63, 43, .18);
  box-shadow: 0 10px 28px rgba(18, 63, 43, .09);
}
.secondary-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.secondary-btn--light { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.35); }
.header-action { min-height: 44px; padding: 12px 18px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 14px; }
.button-stack { display: grid; gap: 14px; justify-items: start; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, rgba(244, 184, 63, .22), transparent 26%),
    linear-gradient(135deg, #fffef9 0%, #edf8ef 52%, #fff5df 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(18,63,43,.045) 1px, transparent 1px),
    linear-gradient(rgba(18,63,43,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 46px; }
.hero-lead { font-size: 1.18rem; max-width: 720px; color: #47564c; }
.trust-pill {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.trust-pill span {
  padding: 8px 12px;
  border: 1px solid rgba(47,139,85,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--forest);
  font-weight: 850;
  font-size: .88rem;
}
.hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.hero-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 750;
  color: #2d4638;
}
.hero-list li::before, .check-panel li::before {
  content: "";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: inset 0 0 0 5px #dff3df;
}
.micro-note { font-weight: 800; color: var(--forest); font-size: .94rem; }
.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}
.product-stage > img {
  max-height: 560px;
  width: auto;
  filter: drop-shadow(0 34px 42px rgba(18, 63, 43, .22));
  z-index: 2;
}
.leaf-ring {
  position: absolute;
  width: min(92vw, 510px);
  aspect-ratio: 1;
  border: 28px solid rgba(47, 139, 85, .16);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(244,184,63,.12));
}
.floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  border: 1px solid rgba(18,63,43,.1);
}
.floating-card strong { color: var(--forest); }
.floating-card span { color: var(--muted); font-size: .86rem; }
.floating-card--top { top: 82px; right: 12px; }
.floating-card--bottom { bottom: 104px; left: 12px; }

.trust-strip { background: var(--forest); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-grid div { padding: 23px 18px; border-right: 1px solid rgba(255,255,255,.14); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong { display: block; color: var(--gold-2); }
.trust-grid span { color: rgba(255,255,255,.78); font-size: .9rem; }

.split-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 54px; align-items: center; }
.what-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.what-visual {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18,63,43,.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 18%, rgba(244,184,63,.22), transparent 30%),
    linear-gradient(145deg, #fffef8, #ecf7ec);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.what-visual::before {
  content: "";
  position: absolute;
  width: 280px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 22px solid rgba(47,139,85,.14);
}
.what-visual img {
  position: relative;
  z-index: 1;
  max-height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(18,63,43,.18));
}
.what-badge {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  display: grid;
  padding: 13px 15px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(18,63,43,.12);
  box-shadow: 0 16px 36px rgba(18,63,43,.14);
}
.what-badge strong { color: var(--forest); }
.what-badge span { color: var(--muted); font-size: .88rem; }
.ingredients-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 40px; align-items: center; }
.ingredient-card, .check-panel, .compare-wrap {
  background: var(--white);
  border: 1px solid rgba(18,63,43,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.ingredient-card { padding: 30px; }
.facts-head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--forest); margin-bottom: 18px; }
.facts-head strong { font-size: 1.4rem; color: var(--forest); }
.facts-head span { color: var(--muted); text-align: right; }
dl { margin: 0 0 18px; }
dl div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
dt { font-weight: 850; }
dd { margin: 0; color: var(--forest); text-align: right; }
small { color: #6f796f; display: block; }

.step-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.step-card, .benefit-card, .review-card, .price-card {
  background: var(--white);
  border: 1px solid rgba(18,63,43,.12);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(18, 63, 43, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}
.step-card:hover, .benefit-card:hover, .review-card:hover, .price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.step-card { padding: 28px; position: relative; overflow: hidden; }
.step-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background: var(--forest);
  color: var(--gold-2);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 950;
  margin-bottom: 20px;
}
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit-card { padding: 24px; }
.benefit-card i {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  height: 38px;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #e2f3e5;
  color: var(--forest);
  font-style: normal;
  font-weight: 950;
  font-size: .8rem;
}

.check-panel { padding: 28px; list-style: none; margin: 0; display: grid; gap: 14px; }
.check-panel li { display: flex; align-items: flex-start; gap: 10px; font-weight: 750; color: #2c4435; }
.compare-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 17px 20px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: var(--forest); color: var(--white); }
td:nth-child(2) { color: var(--leaf); font-weight: 850; }

.dark-section {
  background:
    linear-gradient(rgba(12,44,29,.93), rgba(12,44,29,.93)),
    url("assets/5-bottles.webp") center/420px no-repeat;
}
.dark-section h2, .dark-section h3, .dark-section .section-heading p { color: var(--white); }
.dark-section .section-kicker { color: var(--gold-2); }
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.review-card { padding: 24px; }
.review-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #f7d789;
  margin-bottom: 14px;
}
.review-card strong { display: block; color: var(--forest); }
.review-card span { color: var(--muted); font-size: .9rem; }
.stars { color: #f0ac26; letter-spacing: 0; font-weight: 950; margin: 12px 0 8px; }

.price-section { background: linear-gradient(180deg, #fff 0%, #fff7e8 100%); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.price-card {
  position: relative;
  padding: 28px;
  text-align: center;
  overflow: hidden;
}
.price-card.best {
  border: 2px solid var(--gold);
  transform: translateY(-12px);
  background: linear-gradient(180deg, #fffdf7, #ffffff);
}
.price-card.best:hover { transform: translateY(-17px); }
.badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--gold-2);
  font-weight: 950;
  font-size: .82rem;
  margin-bottom: 14px;
}
.popular .badge { background: var(--leaf); color: var(--white); }
.price-card h3 { font-size: 1.42rem; }
.price-card > p { color: var(--rust); font-weight: 950; margin-bottom: 8px; }
.price-card > img { height: 230px; object-fit: contain; margin: 12px auto 16px; }
.two-bottle { height: 230px; display: flex; align-items: center; justify-content: center; margin: 12px auto 16px; }
.two-bottle img { width: 42%; max-height: 228px; object-fit: contain; filter: drop-shadow(0 18px 22px rgba(18,63,43,.13)); }
.two-bottle img:first-child { transform: translateX(18px) scale(.94); opacity: .92; }
.two-bottle img:last-child { transform: translateX(-18px); }
.price-card ul { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 7px; color: #3d4d41; font-weight: 750; }
.price { color: var(--forest); font-size: 2rem; line-height: 1.1; font-weight: 950; margin-bottom: 18px; }
.price span { display: block; font-size: .93rem; color: var(--muted); font-weight: 750; }
.package-note { text-align: center; margin-top: 18px; font-size: .92rem; }

.guarantee { background: #f6fbf5; }
.guarantee-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(18,63,43,.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.guarantee-box img { width: 96px; }
.final-band { background: linear-gradient(135deg, var(--forest), #1f6f43); color: var(--white); }
.final-band h2, .final-band p { color: var(--white); }
.final-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }

.faq-list { display: grid; gap: 12px; max-width: 920px; margin: 0 auto; }
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(18,63,43,.06);
  padding: 0 20px;
}
summary { cursor: pointer; padding: 18px 0; font-weight: 900; color: var(--forest); }
details p { padding-bottom: 18px; }

.site-footer {
  background: #071d13;
  color: rgba(255,255,255,.8);
  padding: 46px 0 22px;
}
.site-footer p { color: rgba(255,255,255,.7); max-width: 520px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 34px; }
.footer-brand { color: var(--white); margin-bottom: 12px; }
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  max-width: 560px;
}
.footer-menu button {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  border-radius: var(--radius);
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 750;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.footer-menu button:hover { border-color: var(--gold); color: var(--gold-2); background: rgba(255,255,255,.1); }
.copyright { border-top: 1px solid rgba(255,255,255,.1); margin-top: 28px; padding-top: 18px; font-size: .9rem; color: rgba(255,255,255,.62); }

.mobile-order {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.mobile-order .primary-btn { width: 100%; }

.info-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(7, 29, 19, .68);
}
.info-panel[hidden] { display: none; }
.info-card {
  position: relative;
  width: min(640px, 100%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 30px 100px rgba(0,0,0,.3);
  padding: 34px;
}
.info-card h2 { padding-right: 46px; }
.info-card p { margin-bottom: 0; }
.info-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #eef5ef;
  color: var(--forest);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}
.info-close:hover { background: #dfece2; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .nav-menu { gap: 12px; font-size: .9rem; }
  .hero-grid, .ingredients-grid, .split-layout, .what-grid, .final-grid { grid-template-columns: 1fr; }
  h1 { max-width: 13ch; }
  .product-stage { min-height: 520px; }
  .trust-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card.best { transform: none; grid-column: 1 / -1; }
  .price-card.best:hover { transform: translateY(-5px); }
  .guarantee-box { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 820px) {
  body { padding-bottom: 78px; }
  .section-pad { padding: 62px 0; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .header-action { width: 100%; }
  .hero-grid { gap: 18px; }
  .hero-list { grid-template-columns: 1fr; }
  .product-stage { min-height: 470px; }
  .product-stage > img { max-height: 430px; }
  .floating-card { display: none; }
  .step-flow, .review-grid, .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-menu { justify-content: flex-start; }
  .mobile-order { display: block; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1180px); }
  .brand span { font-size: .92rem; }
  .trust-pill { display: grid; }
  .button-row, .button-stack { display: grid; }
  .primary-btn, .secondary-btn { width: 100%; padding-inline: 16px; }
  .trust-grid, .benefit-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .facts-head, dl div { display: grid; gap: 4px; }
  .facts-head span, dd { text-align: left; }
  .ingredient-card, .info-card { padding: 24px 18px; }
  .price-card { padding: 24px 18px; }
  .price-card > img, .two-bottle { height: 195px; }
  .top-bar__track { animation-duration: 18s; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
