:root {
  --green: #6f7f47;
  --green-dark: #303826;
  --green-soft: #f5f0e6;
  --mint: #e7ddc6;
  --black: #171713;
  --ink: #292820;
  --muted: #716b5e;
  --line: #e4d8c4;
  --white: #ffffff;
  --gold: #c8842f;
  --cream: #fbf7ee;
  --clay: #9b5f37;
  --hero: #eee2cc;
  --shadow: 0 20px 60px rgba(41, 40, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.no-select,
body.no-select * {
  user-select: none;
  -webkit-user-select: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  padding: 10px 16px;
  color: var(--white);
  background: #211f1a;
  font-size: 14px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 41px;
  z-index: 25;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(251, 247, 238, 0.94);
  border-bottom: 1px solid rgba(228, 216, 196, 0.9);
  backdrop-filter: blur(14px);
}

.brand img,
.site-footer img {
  width: 174px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--clay);
}

.header-cta {
  border: 1px solid var(--clay);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--clay);
  font-weight: 800;
}

.section {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 116px);
  background:
    radial-gradient(circle at 86% 20%, rgba(217, 234, 220, 0.78), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4faf5 100%);
}

.classic-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 116px);
  background: var(--hero);
}

.classic-product-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: clamp(24px, 4vw, 44px);
  border: 0;
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.classic-product-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(155, 95, 55, 0.18);
  border-radius: 6px;
  pointer-events: none;
}

.classic-product-frame img {
  position: relative;
  z-index: 1;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(12, 34, 20, 0.14));
}

.seal {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: var(--white);
  background: var(--clay);
  text-align: center;
  box-shadow: 0 18px 32px rgba(20, 55, 32, 0.24);
}

.seal strong,
.seal span {
  display: block;
}

.seal strong {
  margin-bottom: -20px;
  font-size: 28px;
}

.seal span {
  max-width: 78px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  color: #2b251f;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 20px;
}

.subhead {
  max-width: 650px;
  color: #5d5145;
  font-size: clamp(18px, 2vw, 22px);
}

.availability {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 20px;
  padding: 10px 14px;
  color: #3b3027;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(155, 95, 55, 0.22);
  border-radius: 999px;
  font-weight: 800;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  max-width: 700px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.hero-bullets li,
.benefit-grid div {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.hero-bullets li::before,
.benefit-grid div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: inset 0 0 0 4px var(--mint);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-assurance span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #4b3b2f;
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--black);
  box-shadow: 0 12px 28px rgba(41, 40, 32, 0.22);
}

.button.secondary {
  color: #2b251f;
  background: transparent;
  border: 1px solid rgba(43, 37, 31, 0.32);
}

.button.accent {
  color: #21180f;
  background: #f0bf67;
  box-shadow: 0 14px 30px rgba(155, 95, 55, 0.24);
}

.button.full {
  width: 100%;
}

.hero-media {
  padding: clamp(10px, 2vw, 22px);
}

.hero-media img {
  width: min(100%, 680px);
  margin-inline: auto;
  filter: drop-shadow(0 28px 36px rgba(12, 34, 20, 0.18));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: var(--line);
}

.trust-strip div {
  padding: 22px 18px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: #c6d5ca;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.feature-grid,
.benefit-grid,
.review-grid,
.pricing-grid,
.steps {
  display: grid;
  gap: 18px;
}

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

.feature-grid article,
.steps article,
.review-grid article,
.price-card,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-grid article,
.steps article {
  padding: 24px;
}

.process,
.pricing,
.faq {
  background: var(--green-soft);
}

.icon-benefits {
  background: var(--white);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.icon-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
  box-shadow: 0 12px 30px rgba(20, 55, 32, 0.06);
}

.line-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
}

.line-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.how-work {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--green-dark);
  color: var(--white);
}

.how-work h2,
.how-work h3,
.how-work .eyebrow {
  color: var(--white);
}

.how-work p {
  color: #d9eadc;
}

.routine-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.routine-card strong {
  font-size: 22px;
}

.routine-card span {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #eaf4ec;
  font-weight: 800;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.ingredients {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.product-card {
  display: grid;
  place-items: center;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f4f7f5, #ffffff);
  box-shadow: var(--shadow);
}

.product-card img {
  max-height: 600px;
  object-fit: contain;
}

.facts {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.facts div {
  display: grid;
  grid-template-columns: minmax(160px, 0.5fr) 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.facts dt {
  color: var(--muted);
  font-weight: 800;
}

.facts dd {
  margin: 0;
  color: var(--black);
  font-weight: 900;
}

.note {
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  background: var(--green-soft);
  font-weight: 700;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.comparison {
  background: #f8fbf8;
}

.compare-table {
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(20, 55, 32, 0.08);
}

.compare-row {
  display: grid;
  grid-template-columns: 0.75fr 1.1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.compare-row div:last-child {
  border-right: 0;
}

.compare-row div:first-child {
  color: var(--black);
  font-weight: 900;
}

.compare-row div:nth-child(2) {
  color: var(--green-dark);
  background: #f1f8f2;
  font-weight: 900;
}

.compare-row.head div {
  color: var(--white);
  background: var(--black);
  font-weight: 900;
}

.benefit-grid div {
  padding: 18px 18px 18px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefit-grid div::before {
  left: 18px;
}

.pricing {
  text-align: center;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 30px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  text-align: center;
  box-shadow: 0 12px 34px rgba(20, 55, 32, 0.08);
}

.price-card.best {
  border: 2px solid var(--green);
  transform: translateY(-10px);
}

.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 16px;
  border-radius: 999px;
  color: var(--black);
  background: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.price-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  margin: 10px 0 18px;
}

.price-card .bottles {
  margin-bottom: 2px;
  color: var(--black);
  font-size: 28px;
  font-weight: 950;
}

.efficiency {
  color: var(--green);
  font-weight: 900;
}

.today {
  color: var(--black);
}

.price-card .button {
  margin-top: auto;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.review-summary {
  display: grid;
  grid-template-columns: 150px minmax(280px, 1fr) minmax(240px, 0.8fr);
  gap: 24px;
  align-items: center;
  margin: 28px 0 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--green-soft);
}

.score {
  color: var(--green-dark);
  line-height: 1;
}

.score strong {
  font-size: 58px;
}

.score span {
  color: var(--muted);
  font-size: 24px;
  font-weight: 900;
}

.rating-bars {
  display: grid;
  gap: 8px;
}

.rating-bars div {
  display: grid;
  grid-template-columns: 58px 1fr 44px;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

meter {
  width: 100%;
  height: 12px;
}

meter::-webkit-meter-bar {
  border: 0;
  border-radius: 999px;
  background: #d7e5da;
}

meter::-webkit-meter-optimum-value {
  border-radius: 999px;
  background: var(--green);
}

.review-grid.six {
  grid-template-columns: repeat(3, 1fr);
}

.review-grid article {
  padding: 24px;
}

.review-grid img {
  width: 78px;
  height: 78px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.review-grid strong,
.review-grid span {
  display: block;
}

.review-grid span {
  color: var(--muted);
  font-size: 14px;
}

.availability-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--white);
  background: var(--green-dark);
}

.availability-section h2,
.availability-section .eyebrow,
.availability-section p {
  color: var(--white);
}

.availability-section p {
  max-width: 760px;
  color: #d9eadc;
}

.faq details {
  max-width: 920px;
  margin: 12px 0;
  padding: 18px 22px;
}

.faq summary {
  cursor: pointer;
  color: var(--black);
  font-weight: 900;
}

.faq details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 46px clamp(18px, 5vw, 72px);
  color: #d7e2d9;
  background: var(--black);
}

.classic-footer {
  padding-top: 52px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.45fr) minmax(220px, 0.65fr);
  gap: clamp(24px, 5vw, 70px);
  margin-bottom: 26px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-top h3 {
  color: var(--white);
}

.footer-top a,
.footer-top p {
  display: block;
  margin: 0 0 10px;
  color: #d7e2d9;
}

.site-footer img {
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.medical {
  max-width: 1000px;
  color: #d7e2d9;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.footer-actions button {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-weight: 800;
}

.copyright {
  margin: 0;
  color: #9aaca0;
  font-size: 13px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(5, 8, 6, 0.7);
}

.modal.is-open {
  display: grid;
}

.modal-panel {
  position: relative;
  width: min(100%, 680px);
  max-height: min(720px, 90vh);
  overflow: auto;
  border-radius: 8px;
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  font-size: 24px;
  line-height: 1;
}

.exit-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
}

.exit-panel img {
  max-height: 260px;
  object-fit: contain;
}

/* Refreshed visual direction */
.trust-strip div,
.site-footer {
  background: #2a2924;
}

.trust-strip span,
.site-footer,
.footer-top a,
.footer-top p,
.medical {
  color: #e7ddc6;
}

.icon-grid article {
  background: linear-gradient(180deg, #ffffff 0%, #fbf7ee 100%);
}

.line-icon {
  color: var(--clay);
  background: #fff4df;
}

.how-work {
  background: #2b2922;
}

.steps span,
meter::-webkit-meter-optimum-value {
  background: var(--clay);
}

.note {
  border-left-color: var(--clay);
}

.comparison {
  background: #fbf7ee;
}

.compare-row div:nth-child(2) {
  color: #4b3524;
  background: #fff4df;
}

.price-card {
  background: #ffffff;
}

.price-card.best {
  border-color: var(--clay);
}

.efficiency,
.score {
  color: var(--clay);
}

.review-summary {
  background: #fff4df;
}

.availability-section {
  color: #2a2018;
  background: #f1d39e;
}

.availability-section h2,
.availability-section .eyebrow,
.availability-section p {
  color: #2a2018;
}

.availability-section p {
  color: #594331;
}

.faq {
  background: #fffaf1;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

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

.faq details {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.faq summary {
  position: relative;
  list-style: none;
  padding: 20px 54px 20px 0;
  color: #2b251f;
  font-size: 18px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--clay);
  background: #fff4df;
  font-size: 22px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: -4px 0 20px;
  color: var(--muted);
}

.faq-product {
  position: sticky;
  top: 118px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.faq-product img {
  width: 100%;
  padding: 28px 24px 10px;
  object-fit: contain;
}

.faq-product div {
  padding: 24px;
  color: var(--white);
  background: #2a2924;
}

.faq-product strong,
.faq-product span {
  display: block;
}

.faq-product strong {
  margin-bottom: 4px;
  font-size: 22px;
  line-height: 1.15;
}

.faq-product span {
  margin-bottom: 18px;
  color: #e7ddc6;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    top: 40px;
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .classic-hero,
  .split,
  .ingredients,
  .how-work,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero,
  .classic-hero {
    min-height: auto;
  }

  .classic-product-frame {
    order: -1;
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

  .trust-strip,
  .pricing-grid,
  .review-grid,
  .review-grid.six,
  .steps,
  .benefit-grid,
  .icon-grid,
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-summary {
    grid-template-columns: 130px 1fr;
  }

  .review-summary p {
    grid-column: 1 / -1;
  }

  .faq-product {
    position: static;
    max-width: 520px;
    margin-inline: auto;
  }

  .price-card.best {
    transform: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 142px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero-bullets,
  .trust-strip,
  .feature-grid,
  .pricing-grid,
  .review-grid,
  .review-grid.six,
  .steps,
  .benefit-grid,
  .icon-grid,
  .facts div,
  .exit-panel,
  .footer-top,
  .review-summary,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 16px;
  }

  h1 {
    font-size: 40px;
  }

  .availability {
    border-radius: 8px;
  }

  .cta-row .button,
  .hero-actions .button {
    width: 100%;
  }

  .classic-product-frame {
    padding: 18px;
  }

  .classic-product-frame::before {
    inset: 10px;
  }

  .seal {
    right: 16px;
    bottom: 16px;
    width: 92px;
    height: 92px;
  }

  .seal strong {
    margin-bottom: -14px;
    font-size: 22px;
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-row {
    min-width: 680px;
  }

  .rating-bars div {
    grid-template-columns: 54px 1fr 38px;
  }

  .price-card img {
    height: 190px;
  }

  .availability-section {
    display: block;
  }

  .availability-section .button {
    width: 100%;
    margin-top: 18px;
  }

  .modal-panel {
    padding: 26px 18px;
  }

  .exit-panel img {
    max-height: 210px;
    margin-inline: auto;
  }
}
