:root {
  --forest: #0f5a34;
  --deep: #07391f;
  --leaf: #1f8b4c;
  --mint: #b7e3c2;
  --cream: #fff8e8;
  --sand: #f4ead0;
  --cherry: #b6162c;
  --gold: #f7c948;
  --text: #153020;
  --muted: #657568;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(11, 55, 31, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fffdf7;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.center {
  text-align: center;
}

.section-pad {
  padding: 86px 0;
}

.top-strip {
  background: var(--deep);
  color: #f7ffe9;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 16px;
}

.top-strip a {
  font-weight: 900;
  color: #d4ff99;
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 90, 52, 0.12);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-logo {
  width: 147px;
  height: auto;
}

.footer-brand .brand-logo {
  width: 160px;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 800;
}

.nav a,
.footer a {
  text-decoration: none;
}

.nav a:hover,
.footer a:hover {
  color: var(--leaf);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta,
.btn,
.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta {
  background: var(--forest);
  color: var(--white);
  min-height: 44px;
  padding: 0 20px;
  box-shadow: 0 10px 22px rgba(15, 90, 52, 0.22);
}

.btn {
  min-height: 54px;
  padding: 0 28px;
}

.btn-primary {
  background: var(--cherry);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(182, 22, 44, 0.22);
}

.btn-secondary {
  background: var(--white);
  color: var(--forest);
  border: 2px solid rgba(15, 90, 52, 0.18);
}

.btn-direct,
.header-direct,
.mini-direct {
  background: var(--forest);
  color: var(--white);
  border: 2px solid rgba(15, 90, 52, 0.18);
  box-shadow: 0 12px 24px rgba(15, 90, 52, 0.18);
}

.header-direct {
  background: var(--white);
  color: var(--forest);
}

.light-btn {
  background: var(--gold);
  color: var(--deep);
  box-shadow: 0 12px 24px rgba(247, 201, 72, 0.28);
}

.full {
  width: 100%;
}

.mini-cta {
  min-height: 44px;
  padding: 0 20px;
  background: var(--gold);
  color: var(--deep);
  box-shadow: 0 8px 20px rgba(247, 201, 72, 0.27);
}

.mini-direct {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(15, 90, 52, 0.22);
}

.header-cta:hover,
.btn:hover,
.mini-cta:hover {
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  background: var(--forest);
  color: white;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.3rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(183, 227, 194, 0.85), transparent 32%),
    linear-gradient(135deg, #fff8e8 0%, #e6f7df 48%, #cbefbe 100%);
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 56px;
}

.align-center {
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--leaf);
  font-weight: 900;
  font-size: 0.82rem;
}

.eyebrow.light {
  color: #d4ff99;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
  color: var(--deep);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
  color: var(--deep);
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.hero-lead,
.section-intro,
.green-band p,
.routine-copy p,
.image-feature p {
  font-size: 1.1rem;
  color: var(--muted);
}

.green-band p,
.green-band h2,
.green-band li,
.offer h2,
.offer p,
.offer li {
  color: #fffdf0;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.hero-points div,
.formula-stats div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 90, 52, 0.12);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(11, 55, 31, 0.08);
}

.hero-points strong,
.formula-stats strong {
  display: block;
  color: var(--forest);
  font-size: 1.38rem;
  line-height: 1;
}

.hero-points span,
.formula-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.87rem;
  margin-top: 6px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.microcopy {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow {
  position: absolute;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(15, 90, 52, 0.2), transparent 65%);
  border-radius: 50%;
  filter: blur(4px);
}

.product-bottle {
  position: relative;
  z-index: 2;
  width: min(470px, 92%);
  border-radius: 28px;
  filter: drop-shadow(0 30px 40px rgba(7, 57, 31, 0.24));
}

.price-card {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 46px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 20px;
  min-width: 220px;
  border: 1px solid rgba(15, 90, 52, 0.1);
}

.price-card span,
.checkout-card span {
  display: block;
  color: var(--leaf);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-card strong,
.checkout-card strong {
  display: block;
  color: var(--deep);
  font-size: 2rem;
  margin: 3px 0;
}

.price-card small,
.checkout-card small {
  display: block;
  color: var(--muted);
  margin-bottom: 14px;
}

.price-card .mini-cta,
.routine-panel .mini-cta,
.formula-card .mini-cta,
.faq-cta-row .mini-cta {
  margin-top: 8px;
}

.leaf {
  position: absolute;
  width: 190px;
  height: 190px;
  opacity: 0.12;
  background: var(--forest);
  clip-path: ellipse(35% 48% at 50% 50%);
  transform: rotate(35deg);
}

.leaf-one {
  top: 120px;
  left: -60px;
}

.leaf-two {
  right: -70px;
  bottom: 90px;
  transform: rotate(-25deg);
}

.trust-row {
  background: var(--forest);
  color: #eaffdf;
  padding: 20px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  text-align: center;
  font-weight: 900;
  font-size: 0.94rem;
}

.card-grid {
  display: grid;
  gap: 22px;
  margin-top: 44px;
}

.card-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(15, 90, 52, 0.1);
  box-shadow: 0 16px 38px rgba(11, 55, 31, 0.08);
}

.benefit-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.green-band,
.offer {
  background:
    radial-gradient(circle at 10% 15%, rgba(183, 227, 194, 0.18), transparent 28%),
    linear-gradient(135deg, var(--deep), var(--forest));
}

.check-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 750;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
}

.formula-card,
.routine-panel,
.quality-card,
.checkout-card,
.inline-cta-box {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 90, 52, 0.1);
}

.formula-card img,
.panel-image,
.quality-card img {
  border-radius: 22px;
  width: 100%;
}

.formula-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.comparison-wrap {
  overflow-x: auto;
  margin-top: 34px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 90, 52, 0.1);
}

.comparison-table th {
  background: var(--forest);
  color: var(--white);
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.good {
  display: inline-block;
  color: var(--forest);
  font-weight: 900;
}

.inline-cta-box {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.inline-cta-box p {
  margin: 0;
  font-weight: 900;
  color: var(--deep);
}

.inline-cta-box span {
  display: block;
  font-weight: 600;
  color: var(--muted);
}

.cream {
  background: var(--cream);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.steps div {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(11, 55, 31, 0.07);
}

.steps span {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.steps p {
  margin: 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 12px;
  border-radius: 999px;
  background: #e7f6e6;
  color: var(--forest);
  font-weight: 800;
  font-size: 0.87rem;
}

.image-feature {
  background: linear-gradient(180deg, #fffdf7, #eef8e8);
}

.offer-card {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 42px;
  align-items: center;
}

.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.checkout-card {
  text-align: center;
}

.checkout-product-image {
  max-height: 280px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.checkout-card .btn {
  margin-top: 10px;
}

.checkout-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 12px;
}

.faq-list {
  max-width: 850px;
}

details {
  background: var(--white);
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 14px;
  box-shadow: 0 10px 25px rgba(11, 55, 31, 0.06);
  border: 1px solid rgba(15, 90, 52, 0.1);
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--deep);
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.footer {
  background: var(--deep);
  color: #f3ffe9;
  padding: 54px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr;
  gap: 36px;
}

.footer p,
.footer a {
  color: #dbeed9;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.footer h4 {
  margin: 0 0 12px;
  color: var(--white);
}

.disclaimer {
  font-size: 0.86rem;
}

.sticky-bottom-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(7, 57, 31, 0.18);
  backdrop-filter: blur(12px);
}

.sticky-bottom-cta strong {
  color: var(--deep);
  font-size: 0.95rem;
}

.sticky-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sticky-actions .mini-cta {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.86rem;
}

@media (max-width: 1000px) {
  .hero-grid,
  .split-grid,
  .offer-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.five {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    min-height: 460px;
  }

  .offer-card {
    gap: 28px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 86px;
  }

  .section-pad {
    padding: 60px 0;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav.is-open {
    display: flex;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 84px;
    padding: 18px;
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-points,
  .formula-stats,
  .card-grid.five,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 380px;
  }

  .product-bottle {
    width: min(330px, 84%);
  }

  .price-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -10px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .inline-cta-box {
    align-items: stretch;
  }

  .inline-cta-box .mini-cta {
    width: 100%;
  }

  .sticky-bottom-cta {
    display: flex;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-logo {
    width: 124px;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 16px;
    min-width: 190px;
  }
}
