/* ============================================================
   Lulutox Avis — Modern editorial wellness design
   Mobile-first · 2026
   ============================================================ */

:root {
  /* Refined palette */
  --forest-950: #0F1F15;
  --forest-900: #1B3324;
  --forest-700: #2F5C40;
  --forest-500: #4F8965;
  --forest-100: #DDE7DB;
  --forest-50:  #EEF3EB;

  --sage-100: #E5EBDF;
  --sage-50:  #F2F5EE;

  --peach-700: #B6543B;
  --peach-500: #E89B6E;
  --peach-300: #F2C39B;
  --peach-100: #FBE5D2;
  --peach-50:  #FDF1E5;

  --coral-700: #B33A29;
  --coral-500: #D9624A;
  --coral-400: #E37760;

  --gold:     #E0A93B;

  --cream-50: #FBF7F1;
  --cream-100:#F4ECDC;
  --bg:       #FBF7F1;
  --bg-alt:   #FFFFFF;
  --card:     #FFFFFF;

  --line:     #E8E0D0;
  --line-soft:#F0E8D8;

  --ink:      #15201A;
  --ink-soft: #3A4A3F;
  --muted:    #6E776E;

  --shadow-xs: 0 1px 2px rgba(15, 31, 21, 0.04);
  --shadow-sm: 0 2px 4px rgba(15, 31, 21, 0.04), 0 4px 12px rgba(15, 31, 21, 0.04);
  --shadow:    0 8px 16px -8px rgba(15, 31, 21, 0.08), 0 16px 36px -12px rgba(15, 31, 21, 0.1);
  --shadow-lg: 0 24px 48px -16px rgba(15, 31, 21, 0.18);
  --shadow-cta:0 10px 24px -6px rgba(217, 98, 74, 0.4);

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius:    18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --container: 1200px;
  --container-tight: 980px;

  --font-display: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --font-sans:    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --t: cubic-bezier(0.22, 1, 0.36, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 96px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: var(--forest-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .18s var(--t);
}
a:hover { color: var(--coral-500); }
ul, ol { padding-left: 1.2em; }
::selection { background: var(--peach-100); color: var(--forest-950); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--forest-950);
  line-height: 1.08;
  margin: 0 0 0.55em;
  letter-spacing: -0.025em;
  font-weight: 500;
}
h1 {
  font-size: clamp(2.1rem, 5vw + 0.4rem, 3.6rem);
  font-weight: 500;
  line-height: 1.04;
}
h2 {
  font-size: clamp(1.6rem, 2.4vw + 0.7rem, 2.4rem);
  font-weight: 500;
  margin-top: 2.2em;
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(1.18rem, 0.6vw + 0.95rem, 1.4rem);
  font-weight: 600;
  font-variation-settings: "opsz" 24;
  margin-top: 1.8em;
  color: var(--forest-900);
  letter-spacing: -0.01em;
}
p { margin: 0 0 1.05em; color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }
.stars { color: var(--gold); letter-spacing: 1.5px; }
.star-half { opacity: 0.45; }

/* BUTTONS */
.btn {
  --btn-bg: var(--coral-500);
  --btn-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  padding: 14px 24px;
  background: var(--btn-bg);
  color: var(--btn-color);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform .2s var(--t), box-shadow .25s var(--t), background .2s var(--t);
  box-shadow: var(--shadow-cta);
  text-align: center;
  line-height: 1.2;
  position: relative;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
  pointer-events: none;
  z-index: -1;
}
.btn:hover {
  background: var(--coral-700);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(217, 98, 74, 0.5);
  color: #fff;
}
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--peach-300); outline-offset: 3px; }
.btn__sub {
  font-weight: 400;
  font-size: 0.78rem;
  opacity: 0.92;
  letter-spacing: 0;
}
.btn--lg { padding: 18px 32px; font-size: 1.05rem; }
.btn--sm { padding: 9px 18px; font-size: 0.88rem; }
.btn--primary { background: var(--coral-500); }
.btn--outline {
  --btn-bg: transparent;
  --btn-color: var(--forest-900);
  border: 1.5px solid var(--forest-700);
  box-shadow: none;
}
.btn--outline:hover {
  background: var(--forest-900);
  color: #fff;
  border-color: var(--forest-900);
}
.btn--outline::before { display: none; }

/* PROMO BAR */
.promo-bar {
  background: var(--forest-950);
  color: #fff;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}
.promo-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(232, 155, 110, 0.25), transparent 60%),
    radial-gradient(circle at 85% 50%, rgba(79, 137, 101, 0.3), transparent 60%);
  pointer-events: none;
}
.promo-bar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px 22px;
  text-align: center;
}
.promo-bar__text strong {
  color: var(--peach-300);
  margin-right: 4px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.promo-bar__cta {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition: background .2s var(--t);
}
.promo-bar__cta:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 241, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(232, 224, 208, 0.6);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
}
.site-header__logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  color: var(--forest-950);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.site-header__logo img { height: 32px; width: auto; }
.site-header__sub {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--peach-500);
  font-weight: 400;
  font-size: 1.1rem;
}
.site-header__nav {
  display: none;
  gap: 26px;
  margin-left: auto;
}
.site-header__nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
}
.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--forest-700);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--t);
}
.site-header__nav a:hover { color: var(--forest-900); }
.site-header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-header__cta { margin-left: auto; }

@media (min-width: 920px) {
  .site-header__nav { display: inline-flex; }
  .site-header__cta { margin-left: 0; }
}

/* BREADCRUMB */
.breadcrumb {
  background: transparent;
  font-size: 0.84rem;
  border: 0;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
}
.breadcrumb li + li::before {
  content: "→";
  margin-right: 8px;
  color: var(--muted);
  font-size: 0.75rem;
}
.breadcrumb a { text-decoration: none; color: var(--muted); }
.breadcrumb a:hover { color: var(--forest-700); }
.breadcrumb [aria-current="page"] { color: var(--ink-soft); font-weight: 500; }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 36px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 90% 10%, rgba(242, 195, 155, 0.4), transparent 70%),
    radial-gradient(50% 60% at 5% 100%, rgba(221, 231, 219, 0.7), transparent 70%);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 224, 208, 0.8), transparent);
  z-index: -1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-700);
  font-weight: 600;
  margin: 0 0 18px;
}
.hero__kicker-dot {
  width: 7px;
  height: 7px;
  background: var(--coral-500);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.hero__kicker-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--coral-500);
  opacity: 0.4;
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(0.7); opacity: 0; }
  50%      { transform: scale(1.4); opacity: 0.5; }
}
.hero__content h1 {
  margin-bottom: 18px;
}
.hero__lead {
  font-size: 1.06rem;
  color: var(--ink-soft);
  margin-bottom: 26px;
  max-width: 56ch;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: var(--shadow-xs);
}
.badge--rating .stars { font-size: 0.92rem; }
.badge--rating strong { color: var(--forest-900); }
.badge--check::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: var(--forest-700);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}
.hero__cta-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-top: 8px;
}
.hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.86rem;
  color: var(--forest-700);
  font-weight: 500;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hero__media {
  position: relative;
  text-align: center;
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: 14% 8% 0 8%;
  background: radial-gradient(50% 50% at 50% 50%, var(--peach-100), transparent 70%);
  z-index: -1;
  filter: blur(20px);
}
.hero__media img {
  margin: 0 auto;
  max-width: 480px;
  width: 100%;
  filter: drop-shadow(0 40px 60px rgba(31, 51, 36, 0.18));
}
.hero__price-tag {
  position: absolute;
  top: 4px;
  right: 0;
  background: var(--coral-500);
  color: #fff;
  border-radius: 50%;
  width: 102px;
  height: 102px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  box-shadow: 0 18px 36px -8px rgba(217, 98, 74, 0.5);
  transform: rotate(-10deg);
  font-weight: 600;
  border: 3px solid var(--bg);
}
.hero__price-tag__label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.95;
  font-family: var(--font-sans);
  font-weight: 500;
}
.hero__price-tag__price {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

@media (min-width: 920px) {
  .hero { padding: 56px 0 60px; }
  .hero__grid { grid-template-columns: 1.1fr 1fr; gap: 60px; }
  .hero__cta-row { flex-direction: row; align-items: center; gap: 24px; }
  .hero__price-tag { width: 116px; height: 116px; right: -8px; top: 12px; }
  .hero__price-tag__price { font-size: 1.95rem; }
}

/* TRUST STRIP */
.trust-strip {
  background: var(--forest-950);
  color: #fff;
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.trust-strip::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 200%;
  background:
    radial-gradient(circle at 20% 50%, rgba(79, 137, 101, 0.3), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(232, 155, 110, 0.18), transparent 50%);
  pointer-events: none;
}
.trust-strip__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  text-align: center;
}
.trust-strip__item {
  position: relative;
}
.trust-strip__item::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -8px;
  width: 1px;
  height: calc(100% - 16px);
  background: rgba(255, 255, 255, 0.1);
}
.trust-strip__item:last-child::after { display: none; }
.trust-strip__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--peach-300);
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.trust-strip__item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

@media (min-width: 720px) {
  .trust-strip__grid { grid-template-columns: repeat(4, 1fr); }
  .trust-strip__item:nth-child(2)::after { display: block; }
  .trust-strip__item strong { font-size: 2.4rem; }
}

/* ARTICLE BODY */
.article-body { padding: 36px 22px 16px; }
.section {
  padding: 14px 0;
  scroll-margin-top: 100px;
}
.section p:not([class]) { max-width: 72ch; }

@media (min-width: 960px) {
  .article-body {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 72px;
    padding: 56px 22px 28px;
    max-width: var(--container);
    margin: 0 auto;
  }
  .toc {
    grid-row: 1 / span 99;
    align-self: start;
    position: sticky;
    top: 100px;
  }
  .article-body > .section,
  .article-body > .cta-box { grid-column: 2; }
}

/* TOC */
.toc {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px 22px;
  margin-bottom: 28px;
  font-size: 0.9rem;
}
.toc__title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest-950);
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
}
.toc li {
  counter-increment: toc;
  padding: 0;
}
.toc a {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 6px;
  transition: color .15s;
}
.toc a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--peach-500);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  font-size: 0.78rem;
  flex-shrink: 0;
  padding-top: 2px;
}
.toc a:hover { color: var(--forest-900); }

/* CTA BOX (inline) */
.cta-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin: 32px 0;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 110% -20%, var(--peach-100), transparent 60%),
    radial-gradient(50% 60% at -10% 120%, var(--sage-100), transparent 60%);
  z-index: -1;
}
.cta-box__content { position: relative; }
.cta-box__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--forest-950);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.cta-box__text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.cta-box .btn {
  align-self: stretch;
  position: relative;
  z-index: 1;
}
.cta-box--alt {
  background: var(--forest-50);
  border-color: var(--forest-100);
}
.cta-box--alt::before {
  background:
    radial-gradient(60% 60% at -10% -20%, rgba(255, 255, 255, 0.6), transparent 60%);
}
.cta-box--final {
  background: var(--forest-950);
  border: 0;
  color: #fff;
}
.cta-box--final::before {
  background:
    radial-gradient(50% 60% at 100% 0%, rgba(232, 155, 110, 0.4), transparent 60%),
    radial-gradient(60% 80% at 0% 100%, rgba(79, 137, 101, 0.4), transparent 60%);
}
.cta-box--final .cta-box__title {
  color: #fff;
  font-size: 1.6rem;
}
.cta-box--final .cta-box__text { color: rgba(255, 255, 255, 0.8); }

@media (min-width: 720px) {
  .cta-box {
    flex-direction: row;
    align-items: center;
    padding: 30px 34px;
    gap: 28px;
  }
  .cta-box__content { flex: 1; }
  .cta-box .btn { align-self: center; flex-shrink: 0; }
  .cta-box__title { font-size: 1.5rem; }
}

/* FIGURE */
.figure {
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sage-50);
  position: relative;
}
.figure img {
  width: 100%;
  border-radius: var(--radius);
}
.figure figcaption {
  padding: 12px 18px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
}

/* INGREDIENTS GRID */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.ingredient {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  transition: transform .25s var(--t), border-color .2s, box-shadow .25s;
  position: relative;
}
.ingredient:hover {
  transform: translateY(-3px);
  border-color: var(--forest-100);
  box-shadow: var(--shadow);
}
.ingredient__icon {
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage-50);
  margin-bottom: 4px;
}
.ingredient strong {
  color: var(--forest-950);
  font-size: 0.96rem;
  font-weight: 600;
}
.ingredient span {
  color: var(--muted);
  font-size: 0.82rem;
}

@media (min-width: 600px) { .ingredients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .ingredients-grid { grid-template-columns: repeat(4, 1fr); } }

/* BENEFITS GRID (bento) */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 28px 0;
}
.benefit-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s var(--t), box-shadow .25s;
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.benefit-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, var(--peach-100), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}
.benefit-card:nth-child(2)::after { background: radial-gradient(circle, var(--forest-100), transparent 70%); }
.benefit-card:nth-child(3)::after { background: radial-gradient(circle, var(--sage-100), transparent 70%); }
.benefit-card__num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--forest-700);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.benefit-card__num span {
  font-size: 1.3rem;
  color: var(--coral-500);
  margin-left: 4px;
  font-weight: 400;
}
.benefit-card p {
  margin: 12px 0 0;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

@media (min-width: 720px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

/* STEPS */
.steps {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  counter-reset: steps;
}
.steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: border-color .2s;
}
.steps li:hover { border-color: var(--forest-100); }
.steps__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--forest-50);
  color: var(--forest-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
}
.steps li > div { display: flex; flex-direction: column; }
.steps li strong {
  display: block;
  color: var(--forest-950);
  margin-bottom: 2px;
  font-size: 1rem;
}
.steps li > div { color: var(--ink-soft); font-size: 0.92rem; }

@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 28px 0;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
  position: relative;
  transition: transform .25s var(--t), box-shadow .25s;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--peach-300);
  line-height: 1;
  font-weight: 600;
}
.testimonial header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-500), var(--peach-300));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
  font-family: var(--font-sans);
}
.testimonial__name {
  margin: 0;
  font-weight: 600;
  color: var(--forest-950);
  font-size: 0.98rem;
}
.testimonial__meta {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.testimonial header .stars {
  margin-left: auto;
  font-size: 0.92rem;
}
.testimonial p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-style: italic;
}

@media (min-width: 720px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

/* PROS & CONS */
.proscons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 28px 0;
}
.proscons__col {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.proscons__col h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.proscons__col h3::before {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-sans);
}
.proscons__col--pro h3::before {
  content: "✓";
  background: var(--forest-700);
}
.proscons__col--con h3::before {
  content: "!";
  background: var(--peach-500);
}
.proscons__col ul { list-style: none; padding: 0; margin: 0; }
.proscons__col li {
  position: relative;
  padding: 9px 0 9px 28px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.proscons__col li:last-child { border-bottom: 0; }
.proscons__col--pro li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--forest-50);
  color: var(--forest-700);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proscons__col--con li::before {
  content: "!";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--peach-100);
  color: var(--peach-700);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 720px) { .proscons { grid-template-columns: 1fr 1fr; } }

/* PRICING */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 28px 0 8px;
}
.pricing__card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-xs);
  transition: transform .25s var(--t), box-shadow .25s;
}
.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pricing__card .btn { margin-top: auto; }
.pricing__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--forest-950);
  margin: 0;
  letter-spacing: -0.02em;
}
.pricing__qty {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0;
}
.pricing__price {
  margin: 12px 0;
  font-family: var(--font-display);
}
.pricing__price s {
  color: var(--muted);
  font-size: 0.95rem;
  margin-right: 8px;
  font-family: var(--font-sans);
  font-weight: 400;
}
.pricing__price span {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--forest-950);
  letter-spacing: -0.03em;
}
.pricing__card--popular {
  border-color: var(--forest-700);
  border-width: 1.5px;
  box-shadow: 0 24px 56px -16px rgba(31, 51, 36, 0.22);
  background:
    linear-gradient(180deg, var(--forest-50), var(--card) 60%);
}
.pricing__card--popular .pricing__price span { color: var(--coral-500); }
.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest-950);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
}
.pricing__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 6px 0 0;
}

@media (min-width: 820px) { .pricing { grid-template-columns: repeat(3, 1fr); } }

/* TABLE */
.table-wrap {
  overflow-x: auto;
  margin: 28px 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--card);
}
.comparison {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  font-size: 0.92rem;
  min-width: 580px;
}
.comparison th,
.comparison td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}
.comparison thead th {
  background: var(--cream-50);
  color: var(--forest-950);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.comparison tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--card);
}
.comparison tr:last-child td,
.comparison tr:last-child th { border-bottom: 0; }
.comparison .comparison__highlight {
  background: var(--forest-50);
  color: var(--forest-950);
  font-weight: 600;
}
.comparison thead th.comparison__highlight {
  background: var(--forest-950);
  color: #fff;
}

/* FAQ */
.faq { margin: 28px 0; display: grid; gap: 12px; }
.faq__item {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s, border-color .2s;
}
.faq__item[open] {
  box-shadow: var(--shadow);
  border-color: var(--forest-100);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-950);
  flex: 1;
  font-family: var(--font-sans);
  letter-spacing: -0.005em;
}
.faq__chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--forest-50);
  position: relative;
  transition: background .2s, transform .25s var(--t);
}
.faq__item:hover .faq__chevron { background: var(--forest-100); }
.faq__chevron::before,
.faq__chevron::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  background: var(--forest-700);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .25s var(--t);
}
.faq__chevron::before { transform: translate(-50%, -50%) rotate(0deg); }
.faq__chevron::after  { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__chevron::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__item[open] .faq__chevron { background: var(--forest-700); }
.faq__item[open] .faq__chevron::before,
.faq__item[open] .faq__chevron::after { background: #fff; }
.faq__answer {
  padding: 0 24px 22px 22px;
  animation: fadein .3s var(--t);
}
.faq__answer p { margin: 0; color: var(--ink-soft); }

@keyframes fadein {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* VERDICT */
.section--verdict {
  background:
    linear-gradient(135deg, var(--forest-950), #1a3527 60%, #2a4734);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 28px !important;
  margin: 36px 0 12px;
  position: relative;
  overflow: hidden;
}
.section--verdict::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 100% 0%, rgba(232, 155, 110, 0.3), transparent 60%),
    radial-gradient(60% 80% at 0% 100%, rgba(79, 137, 101, 0.4), transparent 60%);
  pointer-events: none;
}
.section--verdict h2 {
  margin-top: 0;
  color: #fff;
  position: relative;
}
.section--verdict p { color: rgba(255, 255, 255, 0.85); }
.verdict {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.verdict__score {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.verdict__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--peach-300);
  margin: 0 0 8px;
  font-weight: 600;
}
.verdict__value {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.04em;
}
.verdict__value span {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}
.verdict__stars {
  font-size: 1.7rem;
  margin: 8px 0 0;
  color: var(--gold);
  letter-spacing: 3px;
}

@media (min-width: 820px) {
  .verdict { grid-template-columns: 260px 1fr; gap: 40px; }
  .section--verdict { padding: 48px 44px !important; }
}

/* FOOTER */
.site-footer {
  margin-top: 80px;
  background: var(--forest-950);
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 0 24px;
  font-size: 0.92rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 155, 110, 0.4), transparent);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.site-footer__brand span {
  color: var(--peach-300);
  font-style: italic;
  font-weight: 400;
}
.site-footer__tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  max-width: 36ch;
}
.site-footer__heading {
  color: #fff;
  font-weight: 600;
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color .2s;
}
.site-footer a:hover { color: var(--peach-300); }
.site-footer__legal {
  margin: 24px 0 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  max-width: 90ch;
}

@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }

/* STICKY CTA (bottom) */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px;
  pointer-events: none;
  transform: translateY(120%);
  transition: transform .35s var(--t);
}
.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px -12px rgba(15, 31, 21, 0.2);
}
.sticky-cta__img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--sage-50);
  flex-shrink: 0;
}
.sticky-cta__text { flex: 1; min-width: 0; }
.sticky-cta__title {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest-950);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-sans);
}
.sticky-cta__sub {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta__sub .stars { font-size: 0.78rem; margin-right: 4px; }
.sticky-cta__btn {
  flex-shrink: 0;
  padding: 11px 16px;
  font-size: 0.86rem;
}

@media (min-width: 720px) {
  .sticky-cta { padding: 14px; }
  .sticky-cta__inner { padding: 12px 18px; gap: 18px; }
  .sticky-cta__img { width: 52px; height: 52px; }
  .sticky-cta__title { font-size: 1.05rem; }
  .sticky-cta__btn { padding: 13px 22px; font-size: 0.92rem; }
}

/* SCROLL-DRIVEN FADE-IN (progressively enhanced) */
@supports (animation-timeline: view()) {
  .section,
  .cta-box,
  .figure,
  .testimonial,
  .ingredient,
  .benefit-card,
  .pricing__card,
  .proscons__col {
    animation: enter linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  @keyframes enter {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ACCESSIBILITY / MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
}

/* PRINT */
@media print {
  .promo-bar, .site-header, .sticky-cta, .cta-box { display: none !important; }
  body { padding-bottom: 0; background: #fff; }
  *, *::before, *::after {
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
}
