/* =====================================================================
   BrainX — Промо „Безплатна Термо Чаша – Champagne"
   Self-contained landing page styles.
   Design system: DESIGN.md (olive #404D3B / orange #FF8F23, Mont type).
   Scoped, mobile-first, no framework. Author: BigBiznisCorp.
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 1. Fonts — self-hosted Mont (copied from the live site)            */
/* ------------------------------------------------------------------ */
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------------ */
/* 2. Design tokens (from DESIGN.md)                                  */
/* ------------------------------------------------------------------ */
:root {
  /* Brand & action */
  --color-primary: #404d3b;          /* olive — brand chrome + transactional */
  --color-primary-hover: #4b5945;
  --color-olive-deep: #181d16;
  --color-primary-ultra-light: #f2f4f1;
  --color-primary-light: #d7ded4;

  --color-secondary: #ff8f23;        /* orange — marketing CTAs + stars */
  --color-secondary-hover: #ffa552;
  --color-secondary-ultra-light: #fff2e6;
  --color-secondary-light: #ffd7b3;
  --color-secondary-dark: #803e00;   /* orange text-on-light where contrast needed */

  /* Surface */
  --color-canvas: #ffffff;
  --color-panel: #f7f4ef;
  --tint-green: #f1f3ef;             /* tea / energy family */
  --tint-cream: #efe7df;            /* coffee family */
  --tint-lavender: #eceaf2;          /* sleep family */

  /* Text */
  --color-ink: #141414;
  --color-muted: #595959;
  --color-faint: #a6a6a6;
  --color-on-dark: #ffffff;
  --color-on-dark-muted: rgba(255, 255, 255, 0.8);

  /* Accent & semantic */
  --color-star: #ff8000;
  --color-success: #3c7d3a;
  --color-success-soft: rgba(60, 125, 58, 0.12);
  --color-alert: #d23b3b;
  --color-hairline: rgba(0, 0, 0, 0.10);
  --color-hairline-strong: rgba(0, 0, 0, 0.20);

  /* Radii */
  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-pill: 9999px;

  /* Glow shadows (diffuse, directionless) */
  --shadow-md: 0 0 40px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 0 60px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 0 80px rgba(0, 0, 0, 0.22);

  /* Spacing */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --section: 48px;                   /* per-side section padding → ~96px gap between blocks (DESIGN.md rhythm) */

  /* Layout */
  --content-width: 1240px;
  --gutter: 20px;

  /* Fonts */
  --font-body: "Mont", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-head: "Mont", "Montserrat", "Poppins", system-ui, sans-serif;
}

/* ------------------------------------------------------------------ */
/* 3. Reset / base                                                    */
/* ------------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-hover); }

button { font-family: inherit; }

h1, h2, h3, h4, p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ------------------------------------------------------------------ */
/* 4. Layout helpers                                                  */
/* ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); }
.section--tight { padding-block: var(--space-xxl); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-xxl);
}
.section-head .eyebrow { justify-content: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--color-secondary-dark);
  background: var(--color-secondary-ultra-light);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--space-md);
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--color-ink);
  line-height: 1.15;
  font-weight: 700;
}
.h2 {
  font-size: clamp(26px, 4.5vw, 30px);
  font-weight: 600;
  color: var(--color-primary);
}
.section-head p {
  margin-top: var(--space-sm);
  font-size: 18px;
  color: var(--color-muted);
}

.text-orange { color: var(--color-secondary-dark); }
.text-olive { color: var(--color-primary); }

/* Dual-currency price */
.price { font-family: var(--font-head); font-weight: 700; }
.price .eur { color: var(--color-ink); }
.price .bgn { color: var(--color-muted); font-weight: 600; }
.price .old {
  color: var(--color-faint);
  text-decoration: line-through;
  font-weight: 600;
  margin-right: 6px;
}

/* ------------------------------------------------------------------ */
/* 5. Buttons (two-CTA discipline)                                    */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1;
  min-height: 48px;
  padding: 15px 28px;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn--lg { font-size: 18px; padding: 18px 34px; min-height: 56px; }
.btn--block { display: flex; width: 100%; }

/* Orange — marketing / navigational CTAs */
.btn--primary {
  background: var(--color-secondary);
  color: #fff;
  border-radius: var(--r-xl);
  box-shadow: 0 0 30px rgba(255, 143, 35, 0.30);
}
.btn--primary:hover { background: var(--color-secondary-hover); color: #fff; }

/* Olive — transactional add-to-cart */
.btn--buy {
  background: var(--color-primary);
  color: #fff;
}
.btn--buy:hover { background: var(--color-primary-hover); color: #fff; }

.btn--outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn--outline:hover { background: var(--color-primary-ultra-light); }

/* ------------------------------------------------------------------ */
/* 6. Top utility bar (olive strip)                                   */
/* ------------------------------------------------------------------ */
.topbar {
  background: var(--color-primary);
  color: var(--color-on-dark);
}
/* One benefit at a time, cross-fading like the trybrainx.com homepage strip */
.topbar__rotator {
  position: relative;
  height: 44px;
}
.topbar__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.1px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}
.topbar__slide.is-active { opacity: 1; }

/* Brand mark (no nav) */
.brandbar {
  display: flex;
  justify-content: center;
  padding-block: var(--space-lg);
}
.brandbar img { height: 26px; width: auto; }

/* ------------------------------------------------------------------ */
/* 7. Hero                                                            */
/* ------------------------------------------------------------------ */
.hero { padding-top: var(--space-xl); padding-bottom: var(--section); }
.hero__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}
.hero__copy { text-align: center; }
.hero h1 {
  font-size: clamp(30px, 7vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  text-wrap: balance;
}
.hero h1 .hl { color: var(--color-secondary-dark); }
.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-muted);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}
.hero__sub b { color: var(--color-ink); font-weight: 700; }

.hero__hype {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.35;
  color: var(--color-secondary-dark);
  margin-bottom: var(--space-md);
}
.hero__counter {
  background: var(--color-primary-ultra-light);
  border: 1px solid var(--color-hairline);
  border-radius: var(--r-lg);
  padding: 13px 16px;
  margin: 0 auto var(--space-lg);
  max-width: 420px;
}
.hero__counter-line {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 11px;
}
.hero__counter-line b { color: var(--color-secondary-dark); font-weight: 800; }
.progress--slim { height: 10px; margin-top: 0; }
.hero__cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero__cta .btn { width: 100%; max-width: 420px; }
.hero__microtrust {
  font-size: 13px;
  color: var(--color-muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
}
.hero__microtrust span { display: inline-flex; align-items: center; gap: 6px; }

.hero__media { display: flex; justify-content: center; }
/* No box, no background — the bottle levitates straight on the page.
   aspect-ratio is kept only to reserve the square so layout stays stable. */
.hero__panel {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Levitating bottle + its grounding shadow */
.hero__stage {
  position: relative;
  z-index: 1;
  height: 92%;
  display: flex;
  justify-content: center;
}
.hero__stage img {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 22px 26px rgba(64, 77, 59, 0.30));
}
.hero__stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6%;
  width: 58%;
  height: 5%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(24, 29, 22, 0.32) 0%, transparent 72%);
  filter: blur(3px);
  z-index: -1;
}

/* Levitating fire / ice emojis with hot / cold labels */
.hero__float {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
.hero__float-emoji {
  font-size: clamp(34px, 7vw, 52px);
  line-height: 1;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.18));
}
.hero__float-txt {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11.5px;
  line-height: 1;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}
.hero__float--fire .hero__float-txt { color: #b3420a; }
.hero__float--ice  .hero__float-txt { color: #1f6fa8; }
.hero__float--fire { top: 8%;  right: 3%; animation: hero-float-fire 3.6s ease-in-out infinite; }
.hero__float--ice  { bottom: 11%; left: 2%; animation: hero-float-ice 4.2s ease-in-out infinite 0.4s; }

@keyframes hero-float-fire {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
@keyframes hero-float-ice {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__float--fire,
  .hero__float--ice { animation: none; }
}
/* The tumbler art sits ~14% left-of-center in its PNG (heavy body left, light
   tag right), which reads as off-centre in the single-column hero. Nudge it
   right to optically centre it. % keeps it proportional across phone widths. */
@media (max-width: 979px) {
  .hero__stage { transform: translateX(14%); }
}

.hero__gift-flag {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
}

.live-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 0 0 rgba(255, 143, 35, 0.55);
  animation: pulse 2s infinite;
  flex: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 143, 35, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(255, 143, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 143, 35, 0); }
}

/* ------------------------------------------------------------------ */
/* 8. Scarcity counter                                               */
/* ------------------------------------------------------------------ */
.scarcity .container { max-width: 760px; }
.scarcity__card {
  background: var(--color-canvas);
  border: 1px solid var(--color-secondary-light);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md), 0 0 70px rgba(255, 143, 35, 0.14);
  padding: clamp(24px, 5vw, 44px);
  text-align: center;
}
.scarcity__num {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  font-size: clamp(64px, 18vw, 120px);
  letter-spacing: -2px;
  text-shadow: 0 0 30px rgba(255, 143, 35, 0.30);
  animation: counterGlow 2.6s ease-in-out infinite;
}
@keyframes counterGlow {
  0%, 100% { text-shadow: 0 0 18px rgba(255, 143, 35, 0.22); }
  50%      { text-shadow: 0 0 44px rgba(255, 143, 35, 0.58); }
}
.scarcity__num .of {
  color: var(--color-faint);
  font-weight: 700;
  font-size: 0.42em;
  letter-spacing: 0;
}
.scarcity__label {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-ink);
  margin-top: var(--space-xs);
}
.scarcity__sub { font-size: 15px; color: var(--color-muted); margin-top: var(--space-xs); }

.progress {
  margin-top: var(--space-lg);
  height: 16px;
  border-radius: var(--r-pill);
  background: var(--color-primary-ultra-light);
  border: 1px solid var(--color-hairline);
  overflow: hidden;
}
.progress__fill {
  height: 100%;
  width: 0;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-hover));
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.progress__caption {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--color-muted);
  margin-top: 8px;
}

.scarcity__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-top: var(--space-lg);
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 600;
}
.scarcity__stats li { display: inline-flex; align-items: center; gap: 7px; }

/* ------------------------------------------------------------------ */
/* 9. How it works                                                   */
/* ------------------------------------------------------------------ */
.steps {
  display: grid;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}
.step {
  position: relative;
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
  text-align: center;
}
.step__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}
.step h3 { font-size: 19px; color: var(--color-primary); margin-bottom: 6px; }
.step p { font-size: 15px; color: var(--color-muted); }

/* ------------------------------------------------------------------ */
/* 10. Gift reveal                                                   */
/* ------------------------------------------------------------------ */
.reveal__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}
.reveal__media { display: flex; justify-content: center; }
.reveal__panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  background: radial-gradient(120% 120% at 50% 20%, #fbf2e4 0%, var(--tint-cream) 60%, #e7dccf 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
/* Full-bleed lifestyle photo filling the rounded panel (panel clips the corners). */
.reveal__panel img { width: 100%; height: 100%; object-fit: cover; }
.reveal__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
}

.reveal__copy .eyebrow { color: var(--color-primary); background: var(--color-primary-ultra-light); }
.reveal__copy h2 { font-size: clamp(24px, 4.5vw, 30px); color: var(--color-primary); margin-bottom: var(--space-xs); }
.reveal__name { font-size: 18px; font-weight: 600; color: var(--color-ink); margin-bottom: var(--space-md); }
.reveal__pricetag {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: var(--space-md);
}
.reveal__pricetag .was {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-faint);
  text-decoration: line-through;
}
.reveal__pricetag .arrow { color: var(--color-muted); font-size: 18px; }
.reveal__pricetag .now {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 30px;
  color: var(--color-secondary-dark);
}
.reveal__pricetag .now small { font-size: 16px; font-weight: 700; }
.reveal__body { color: var(--color-muted); font-size: 16px; margin-bottom: var(--space-md); }
.checklist { display: grid; gap: 10px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--color-ink);
  font-weight: 500;
}
.checklist .check {
  flex: none;
  width: 22px; height: 22px;
  margin-top: 1px;
  color: var(--color-success);
}

/* ------------------------------------------------------------------ */
/* 11. Offers                                                        */
/* ------------------------------------------------------------------ */
.offers__grid {
  display: grid;
  gap: var(--space-lg);
  align-items: stretch;
}
.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--r-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}
.offer--featured {
  border: 2px solid var(--color-secondary);
  box-shadow: 0 0 50px rgba(255, 143, 35, 0.22);
}
.offer__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: 0 0 24px rgba(255, 143, 35, 0.40);
}
.offer__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  margin-bottom: var(--space-md);
}
.badge--tea { background: var(--tint-green); color: var(--color-primary); }
.badge--coffee { background: var(--tint-cream); color: var(--color-ink); }
.badge--combo { background: var(--color-secondary-ultra-light); color: var(--color-secondary-dark); }

.offer__panel {
  position: relative;
  border-radius: var(--r-lg);
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
  margin-bottom: var(--space-md);
  overflow: hidden;
}
.panel--tea { background: var(--tint-green); }
.panel--coffee { background: var(--tint-cream); }
.panel--combo { background: linear-gradient(135deg, var(--tint-cream) 0%, var(--tint-green) 100%); }
/* picture wrappers must not become the flex item, or % widths/centering break */
.offer__panel picture,
.hero__panel picture,
.reveal__panel picture { display: contents; }
.offer__panel img {
  width: 56%;
  max-height: 90%;
  object-fit: contain;
  /* white-background pack shots blend into the tinted panel */
  mix-blend-mode: multiply;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.12));
}
/* Full-bleed composition photos (gift bundles) are square (1000×1000) studio
   shots — keep the panel square so the whole composition shows. A 16/11 cover
   was cropping the product bottoms and the "Подарък" badge off. */
.offer__panel--photo { aspect-ratio: 1 / 1; }
.offer__panel--photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  mix-blend-mode: normal;
  filter: none;
}

.offer__title { font-size: 21px; font-weight: 700; color: var(--color-primary); margin-bottom: 4px; }
.offer__benefit { font-size: 14.5px; color: var(--color-muted); margin-bottom: var(--space-sm); min-height: 2.6em; }

.rating { display: inline-flex; align-items: center; gap: 7px; margin-bottom: var(--space-sm); }
.rating__stars { display: inline-flex; gap: 1px; color: var(--color-star); }
.rating__stars svg { width: 16px; height: 16px; }
.rating__text { font-size: 12.5px; color: var(--color-muted); font-weight: 500; }

.offer__price { margin-bottom: var(--space-sm); }
.offer__price .eur { font-size: 24px; }
.offer__price .bgn { font-size: 15px; }
.offer__price .plus { font-size: 13px; color: var(--color-muted); font-weight: 500; display: block; margin-top: 2px; }

.offer__includes {
  display: grid;
  gap: 8px;
  margin: var(--space-sm) 0 var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-hairline);
}
.offer__includes li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--color-ink);
}
.offer__includes .check { flex: none; width: 18px; height: 18px; color: var(--color-success); }
.offer__includes .gift-thumb {
  flex: none;
  width: 30px; height: 30px;
  border-radius: var(--r-sm);
  background: var(--color-primary-ultra-light);
  object-fit: contain;
  padding: 2px;
}

.gift-callout {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-secondary-ultra-light);
  color: var(--color-secondary-dark);
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  margin-bottom: var(--space-md);
}
.offer__cta-wrap { margin-top: auto; }
.offer__note { text-align: center; font-size: 12px; color: var(--color-muted); margin-top: 9px; }

/* Flavor selector (variant-selector pattern) */
.flavors { margin-bottom: var(--space-md); }
.flavors__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 9px;
}
.flavors__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.flavor {
  position: relative;
}
.flavor input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
}
.flavor label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-canvas);
  border: 1.5px solid var(--color-hairline-strong);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.flavor label:hover { border-color: var(--color-secondary); }
.flavor input:checked + label {
  border-color: var(--color-secondary);
  background: var(--color-secondary-ultra-light);
  color: var(--color-secondary-dark);
}
.flavor input:focus-visible + label {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}
.flavor__current {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 9px;
}
.flavor__current b { color: var(--color-primary); }

/* ------------------------------------------------------------------ */
/* 12. Benefits trio                                                 */
/* ------------------------------------------------------------------ */
.benefits__grid { display: grid; gap: var(--space-lg); }
.benefit-card {
  border-radius: var(--r-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-hairline);
}
.benefit-card--tea { background: var(--tint-green); }
.benefit-card--coffee { background: var(--tint-cream); }
.benefit-card--sleep { background: var(--tint-lavender); }
.benefit-card .cat {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--color-primary);
  display: inline-flex;
  gap: 6px;
  margin-bottom: 10px;
}
.benefit-card h3 { font-size: 18px; color: var(--color-ink); margin-bottom: 6px; }
.benefit-card p { font-size: 14.5px; color: var(--color-muted); }

/* ------------------------------------------------------------------ */
/* 13. Trust band                                                    */
/* ------------------------------------------------------------------ */
.trust { background: var(--color-primary-ultra-light); }
.trust__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--space-xl);
  text-align: center;
}
.trust__rating .rating__stars svg { width: 24px; height: 24px; }
.trust__rating .score {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-primary);
}
.trust__rating .who { font-size: 15px; color: var(--color-muted); }
.trust__creds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.cred {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.cred__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cred__icon svg { width: 26px; height: 26px; }
.cred span { font-size: 13px; font-weight: 600; color: var(--color-primary); }

/* ------------------------------------------------------------------ */
/* 14. FAQ                                                           */
/* ------------------------------------------------------------------ */
.faq .container { max-width: 760px; }
.faq__list { display: grid; gap: var(--space-sm); }
.faq__item {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  padding: 18px var(--space-lg);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-ink);
}
.faq__toggle {
  flex: none;
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: #f2f2f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.faq__toggle::before { width: 14px; height: 2px; }
.faq__toggle::after { width: 2px; height: 14px; }
.faq__q[aria-expanded="true"] .faq__toggle::after { transform: scaleY(0); opacity: 0; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__a-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-muted);
  font-size: 15.5px;
}

/* ------------------------------------------------------------------ */
/* 15. Final CTA                                                     */
/* ------------------------------------------------------------------ */
.final .container { max-width: 720px; }
.final__card {
  text-align: center;
  background: radial-gradient(120% 130% at 50% 0%, #4b5945 0%, var(--color-primary) 55%, #38432f 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(32px, 6vw, 56px) var(--gutter);
  box-shadow: var(--shadow-lg);
}
.final__card .eyebrow { color: #fff; background: rgba(255, 255, 255, 0.14); }
.final__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(30px, 6vw, 40px);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}
.final__num .hl { color: var(--color-secondary-hover); }
.final__sub { color: var(--color-on-dark-muted); font-size: 17px; margin-bottom: var(--space-lg); }
.final__card .btn--primary { width: 100%; max-width: 360px; }
.final__ship { margin-top: var(--space-md); font-size: 13.5px; color: var(--color-on-dark-muted); display: inline-flex; gap: 7px; align-items: center; }
.final__progress { max-width: 420px; margin: 0 auto var(--space-lg); }
.final__progress .progress { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.18); }
.final__progress .progress__caption { color: var(--color-on-dark-muted); }

/* ------------------------------------------------------------------ */
/* 16. Footer                                                        */
/* ------------------------------------------------------------------ */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-olive-deep) 100%);
  color: var(--color-on-dark);
  overflow: hidden;
  padding-block: var(--space-xxl);
}
.site-footer__art {
  position: absolute;
  bottom: 0;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}
.site-footer__art--left { left: 0; width: clamp(120px, 22vw, 230px); }
.site-footer__art--right { right: 0; width: clamp(140px, 26vw, 280px); }
.site-footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}
.site-footer__logo img { height: 24px; width: auto; }
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px 18px;
}
.site-footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 2px;
  color: var(--color-on-dark);
  font-size: 14px;
  opacity: 0.92;
}
.site-footer__links a:hover { color: #fff; opacity: 1; text-decoration: underline; }
.site-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}
.site-footer__phone svg { width: 17px; height: 17px; }
.site-footer__meta { font-size: 13px; color: var(--color-on-dark-muted); }
.site-footer__meta--row { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px; }
.site-footer__social { display: flex; gap: 12px; margin-top: 4px; }
.site-footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.site-footer__social a:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.site-footer__social svg { width: 18px; height: 18px; }

/* ------------------------------------------------------------------ */
/* Botanical accents (DESIGN.md margin line-art)                      */
/* ------------------------------------------------------------------ */
.section--decor { position: relative; overflow: hidden; }
.section--decor > .container { position: relative; z-index: 1; }
.leaf-accent {
  position: absolute;
  width: clamp(110px, 17vw, 200px);
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.leaf-accent--tr { top: -12px; right: -26px; transform: rotate(14deg); }
.leaf-accent--bl { bottom: -12px; left: -26px; transform: rotate(196deg); }

/* ------------------------------------------------------------------ */
/* Sticky mobile CTA (jump link)                                      */
/* ------------------------------------------------------------------ */
.sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 15px 24px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #fff;
  background: var(--color-secondary);
  border-radius: var(--r-xl);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), 0 0 24px rgba(255, 143, 35, 0.30);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sticky-cta:hover { color: #fff; background: var(--color-secondary-hover); }
.sticky-cta.is-hidden { transform: translateY(170%); opacity: 0; pointer-events: none; }
@media (max-width: 860px) {
  .sticky-cta { display: flex; }
}

/* ------------------------------------------------------------------ */
/* 17. Responsive                                                    */
/* ------------------------------------------------------------------ */
@media (min-width: 600px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .benefits__grid { grid-template-columns: repeat(3, 1fr); }
  .trust__creds { grid-template-columns: repeat(4, 1fr); }
}

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

@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero__copy { text-align: left; }
  .hero__sub { margin-inline: 0; }
  .hero__counter { margin-inline: 0; }
  .hero__cta { align-items: flex-start; }
  .hero__microtrust { justify-content: flex-start; }
  .reveal__grid { grid-template-columns: 0.9fr 1.1fr; }
  .reveal__media { order: -1; }
}

@media (max-width: 1024px) { :root { --section: 32px; } }
@media (max-width: 600px) { :root { --section: 24px; } }

