@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  --color-primary: #4a7c4a;
  --color-primary-dark: #2e5c2e;
  --color-primary-light: #6a9e6a;
  --color-bg: #f0ebe0;
  --color-bg-alt: #e8f4e8;
  --color-dark: #1a2e1a;
  --color-dark-mid: #2e4a2e;
  --color-espresso: #2d1f0e;
  --color-amber: #c8a96e;
  --color-amber-light: #e0c890;
  --color-text: #1e2e1e;
  --color-text-muted: #4a5a4a;
  --color-white: #fafaf7;
  --color-off-white: #f5f0e6;
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  box-sizing: border-box;
}

/* ===== ON-DARK SCOPE ===== */
.on-dark { color: rgba(255,255,255,0.85); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark p { color: rgba(255,255,255,0.72); }
.on-dark a:not(.btn) { color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p { font-family: var(--font-body); }

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-amber);
}

/* T5 — Outline accent word */
.outline-word {
  -webkit-text-stroke: 2px currentColor;
  color: transparent;
}
.outline-word-amber {
  -webkit-text-stroke: 2px var(--color-amber);
  color: transparent;
}

/* ===== BUTTONS (B4 — underline only) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 4px 0;
  border-bottom: 2px solid currentColor;
  transition: gap var(--transition), opacity var(--transition);
  position: relative;
}
.btn:hover { gap: 14px; opacity: 0.75; }

.btn-primary {
  color: var(--color-amber);
  border-bottom-color: var(--color-amber);
}

.btn-dark {
  color: var(--color-dark);
  border-bottom-color: var(--color-dark);
}

.btn-white {
  color: #fff;
  border-bottom-color: #fff;
}

.btn-filled {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--color-amber);
  color: var(--color-espresso);
  border: none;
  cursor: pointer;
  padding: 18px 36px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  overflow: hidden;
}
.btn-filled:hover {
  background: var(--color-amber-light);
  transform: translateY(-2px);
}

.btn-filled-dark {
  background: var(--color-dark);
  color: var(--color-amber);
}
.btn-filled-dark:hover { background: var(--color-dark-mid); }

/* ===== NAVIGATION (V2 — solid dark) ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--color-dark);
  padding: 0;
  transition: box-shadow var(--transition);
}
nav.nav--scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 48px);
  max-width: 1200px;
  margin-inline: auto;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav__logo span { color: var(--color-amber); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--color-amber); }

.nav__cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-espresso);
  background: var(--color-amber);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition);
}
.nav__cta:hover { background: var(--color-amber-light); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.4,0,0.2,1), transform 0.85s cubic-bezier(0.4,0,0.2,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.85s cubic-bezier(0.4,0,0.2,1), transform 0.85s cubic-bezier(0.4,0,0.2,1);
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.85s cubic-bezier(0.4,0,0.2,1), transform 0.85s cubic-bezier(0.4,0,0.2,1);
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal-up.revealed { opacity: 1; transform: translateY(0); }

/* ===== CSS KEYFRAME ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes blob-morph {
  0%, 100% { border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%; }
  25% { border-radius: 44% 56% 60% 40% / 50% 62% 38% 50%; }
  50% { border-radius: 38% 62% 44% 56% / 46% 38% 62% 54%; }
  75% { border-radius: 56% 44% 38% 62% / 62% 54% 46% 38%; }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(200, 169, 110, 0.3); }
  50% { box-shadow: 0 0 60px rgba(200, 169, 110, 0.6); }
}
@keyframes draw-line {
  from { stroke-dashoffset: 600; }
  to { stroke-dashoffset: 0; }
}
@keyframes count-fade {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ===== HERO (Variant A — Editorial Split) ===== */
.hero {
  min-height: 100vh;
  background: var(--color-dark);
  display: flex;
  align-items: stretch;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero__blob-bg {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(74,124,74,0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: blob-morph 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero__blob-bg-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(200,169,110,0.12) 0%, transparent 70%);
  bottom: 50px;
  left: 50px;
  animation: blob-morph 16s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 80px);
}

.hero__content {
  padding: 80px 0;
  padding-right: 60px;
  animation: slide-in-left 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 28px;
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--color-amber);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 28px;
}

.hero__title .outline-word-amber {
  display: block;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__price-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.hero__price-note strong {
  color: var(--color-amber);
  font-weight: 700;
  font-size: 20px;
}

.hero__trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}
.hero__trust-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Hero image side */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  animation: slide-in-right 0.9s cubic-bezier(0.4,0,0.2,1) 0.15s forwards;
  opacity: 0;
}

.hero__blob-shape {
  position: absolute;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, rgba(74,124,74,0.22), rgba(200,169,110,0.15));
  animation: blob-morph 10s ease-in-out infinite;
  z-index: 0;
}

.hero__product-wrap {
  position: relative;
  z-index: 1;
  width: 340px;
  height: 420px;
  animation: float 6s ease-in-out infinite;
}

.hero__product-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__badge {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  z-index: 10;
  animation: fade-up 0.8s ease 0.5s both;
}

.hero__badge-top {
  top: 20px;
  right: -20px;
}
.hero__badge-bottom {
  bottom: 40px;
  left: -30px;
}

.hero__badge-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.hero__badge-value {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  display: block;
}
.hero__badge-value.amber { color: var(--color-amber); }

/* Hero wave divider */
.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 2;
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: var(--color-primary);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.marquee-strip__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.marquee-strip__dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== PRODUCT SECTION ===== */
.product-section {
  background: var(--color-bg);
  padding: 120px 0 100px;
  position: relative;
  margin-top: -2px;
}

.product-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-section__image-col {
  position: relative;
}

.product-section__image-blob {
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  background: linear-gradient(135deg, var(--color-bg-alt), rgba(200,169,110,0.1));
  animation: blob-morph 14s ease-in-out infinite;
  z-index: 0;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
}

.product-section__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  display: block;
  object-fit: contain;
  animation: float-slow 8s ease-in-out infinite;
  animation: glow-pulse 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(74,124,74,0.2));
}

.product-section__content {}

.product-section__title {
  color: var(--color-dark);
  margin-bottom: 20px;
}

.product-section__desc {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.product-section__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.product-section__benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.5;
}
.product-section__benefit-icon {
  width: 22px;
  height: 22px;
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.product-section__benefit-icon svg {
  width: 12px;
  height: 12px;
}

.product-section__price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
}
.product-section__price {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--color-dark);
  letter-spacing: -0.03em;
}
.product-section__price-label {
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* ===== STATS STRIP (N2) ===== */
.stats-strip {
  background: var(--color-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(74,124,74,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}
.stats-strip__item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.stats-strip__item:last-child { border-right: none; }
.stats-strip__number {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  color: var(--color-amber);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  animation: count-fade 0.6s ease both;
}
.stats-strip__suffix {
  color: var(--color-amber);
}
.stats-strip__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  background: var(--color-bg-alt);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.problem-section__deco {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 240px);
  color: rgba(74,124,74,0.04);
  top: -20px;
  right: -20px;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.05em;
  user-select: none;
}

.problem-section__header {
  max-width: 700px;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.problem-section__title {
  color: var(--color-dark);
  margin-bottom: 20px;
}

.problem-section__subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.problem-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.problem-card {
  background: var(--color-bg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}
.problem-card:hover { transform: translateY(-4px); }

.problem-card__number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 64px;
  color: rgba(74,124,74,0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.problem-card__inner {
  position: relative;
  z-index: 1;
}

.problem-card__icon {
  width: 44px;
  height: 44px;
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.problem-card:hover .problem-card__icon {
  background: rgba(200,169,110,0.15);
}
.problem-card__icon svg { width: 22px; height: 22px; }

.problem-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.problem-card__text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.problem-section__question {
  background: var(--color-dark);
  padding: 60px 56px;
  margin-top: 2px;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.problem-section__question::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.12), transparent 70%);
  pointer-events: none;
}

.problem-section__q-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.025em;
  flex: 1;
  min-width: 0;
}

.problem-section__q-list {
  flex: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.problem-section__q-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.problem-section__q-check {
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(200,169,110,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.problem-section__q-check svg { width: 10px; height: 10px; }

/* ===== INGREDIENTS SECTION ===== */
.ingredients-section {
  background: var(--color-bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.ingredients-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
}

.ingredients-section__title {
  color: var(--color-dark);
  margin-bottom: 18px;
}

.ingredients-section__subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 80px;
}

.ingredient-card {
  background: var(--color-bg-alt);
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition);
}
.ingredient-card:hover { transform: translateY(-6px); }

.ingredient-card__photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.ingredient-card__body {
  padding: 28px 28px 32px;
}

.ingredient-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.ingredient-card__text {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.ingredient-card__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(74,124,74,0.1);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

/* Mechanism section (inside ingredients) */
.mechanism-block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
}

.mechanism-item {
  background: var(--color-dark);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}

.mechanism-item::before {
  content: attr(data-step);
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: var(--font-display);
  font-size: 100px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.mechanism-item__inner { position: relative; z-index: 1; }

.mechanism-item__step {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 16px;
  display: block;
}

.mechanism-item__title {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.mechanism-item__text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  background: var(--color-espresso);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.benefits-section__blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blob-morph 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.benefits-section__inner {
  position: relative;
  z-index: 1;
}

.benefits-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.benefits-section__title {
  color: #fff;
  line-height: 1.0;
}

.benefits-section__intro {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  padding-bottom: 6px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
}

.benefit-item {
  background: rgba(255,255,255,0.04);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.benefit-item:hover { background: rgba(255,255,255,0.07); }

.benefit-item--featured {
  background: rgba(200,169,110,0.1);
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.benefit-item__number {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--color-amber);
  margin-bottom: 20px;
  display: block;
}

.benefit-item__title {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.benefit-item__text {
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  flex: 1;
}

.benefit-item__featured-img {
  margin-top: auto;
  padding-top: 32px;
}

/* Prediabetes alert banner */
.prediabetes-banner {
  margin-top: 2px;
  background: linear-gradient(135deg, rgba(74,124,74,0.15), rgba(200,169,110,0.08));
  border: 1px solid rgba(200,169,110,0.2);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.prediabetes-banner__stat {
  text-align: center;
  padding-right: 48px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.prediabetes-banner__stat-num {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  color: var(--color-amber);
  line-height: 1;
  display: block;
}
.prediabetes-banner__stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  display: block;
}

.prediabetes-banner__content {}
.prediabetes-banner__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.prediabetes-banner__text {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--color-bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.testimonials-section__title {
  color: var(--color-dark);
  max-width: 500px;
}

.testimonials-section__note {
  font-size: 13px;
  color: var(--color-text-muted);
  max-width: 280px;
  line-height: 1.6;
  font-style: italic;
  padding-bottom: 6px;
}

/* Horizontal scroll editorial style */
.testimonials-scroll {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  padding-bottom: 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }

.testimonial-card {
  background: var(--color-bg-alt);
  padding: 48px 40px;
  min-width: 360px;
  max-width: 380px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); }

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 96px;
  color: rgba(74,124,74,0.1);
  line-height: 0.7;
  margin-bottom: 20px;
  display: block;
  user-select: none;
}

.testimonial-card__text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__author-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card__author-info {}
.testimonial-card__author-name {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}
.testimonial-card__author-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.testimonial-card__condition {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(74,124,74,0.1);
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}

.testimonials-featured {
  background: var(--color-dark);
  padding: 80px 80px;
  margin-bottom: 2px;
  position: relative;
  overflow: hidden;
}
.testimonials-featured::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 40px;
  font-family: var(--font-display);
  font-size: 280px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testimonials-featured__text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 38px);
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 780px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.testimonials-featured__author {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
.testimonials-featured__author strong {
  color: var(--color-amber);
  font-weight: 700;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--color-bg-alt);
  padding: 120px 0;
  position: relative;
}

.faq-section__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-section__sidebar {}
.faq-section__sidebar-title {
  color: var(--color-dark);
  margin-bottom: 20px;
}
.faq-section__sidebar-text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(26,46,26,0.1);
  overflow: hidden;
}
.faq-item:first-child {
  border-top: 1px solid rgba(26,46,26,0.1);
}

.faq-item__trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--color-dark);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}
.faq-item__trigger:hover { color: var(--color-primary); }

.faq-item__icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(26,46,26,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.faq-item__icon svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}

.faq-item--open .faq-item__icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.faq-item--open .faq-item__icon svg { transform: rotate(45deg); }
.faq-item--open .faq-item__trigger { color: var(--color-primary); }

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding var(--transition);
}
.faq-item--open .faq-item__body {
  max-height: 400px;
}

.faq-item__answer {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.75;
  padding-bottom: 24px;
}

/* ===== ORDER FORM (Style B — Split screen) ===== */
.order-section {
  background: var(--color-bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.order-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.25);
}

.order-section__left {
  background: var(--color-primary-dark);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.order-section__left-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.15), transparent 70%);
  bottom: -100px;
  right: -100px;
  animation: blob-morph 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.order-section__left-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.order-section__left-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.order-section__left-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 40px;
}

.order-section__trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex: 1;
}
.order-section__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}
.order-section__trust-icon {
  width: 20px;
  height: 20px;
  background: rgba(200,169,110,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.order-section__trust-icon svg { width: 10px; height: 10px; }

.order-section__price-big {
  margin-top: auto;
}
.order-section__price-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
  display: block;
}
.order-section__price-value {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--color-amber);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}
.order-section__price-per {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  display: block;
}

/* Form side */
.order-section__right {
  background: var(--color-off-white);
  padding: 64px 56px;
}

.order-section__form-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--color-dark);
  margin-bottom: 36px;
  letter-spacing: -0.015em;
}

.order-form {}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row--full {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-dark);
  background: #fff;
  border: 1.5px solid rgba(26,46,26,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5a4a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74,124,74,0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

.form-error {
  font-family: var(--font-body);
  font-size: 11px;
  color: #c0392b;
  font-weight: 600;
  display: none;
  margin-top: 2px;
}
.form-error.visible { display: block; }

.form-submit-wrap {
  margin-top: 28px;
}

.form-submit-btn {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-espresso);
  background: var(--color-amber);
  border: none;
  border-radius: var(--radius-sm);
  padding: 20px 32px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
}
.form-submit-btn:hover:not(:disabled) {
  background: var(--color-amber-light);
  transform: translateY(-2px);
}
.form-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-submit-btn__price {
  display: inline-block;
  font-weight: 700;
}

/* ===== THANK YOU MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-box__icon {
  width: 72px;
  height: 72px;
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.modal-box__icon svg { width: 36px; height: 36px; }

.modal-box__title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-dark);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.1;
}

.modal-box__text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.modal-close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: none;
  border: none;
  border-bottom: 2px solid var(--color-dark);
  padding-bottom: 3px;
  cursor: pointer;
  transition: opacity var(--transition);
}
.modal-close:hover { opacity: 0.6; }

/* ===== PHOTO PLACEHOLDER ===== */
.photo-placeholder {
  background: linear-gradient(135deg, #ff6eb4, #ff3d9a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border-radius: inherit;
}
.photo-placeholder__icon { font-size: 32px; }
.photo-placeholder__label {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: sans-serif;
  text-align: center;
  padding: 0 16px;
}

/* ===== WAVE DIVIDERS ===== */
.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ===== FOOTER ===== */
footer {
  background: var(--color-espresso);
  padding: 72px 0 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: 56px;
}

.footer__brand {}
.footer__logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-white);
  text-decoration: none;
  margin-bottom: 16px;
  display: inline-block;
}
.footer__logo span { color: var(--color-amber); }

.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer__domain {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
}

.footer__links-group {}
.footer__links-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer__links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links-list a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__links-list a:hover { color: var(--color-amber); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}

.footer__disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  max-width: 600px;
  line-height: 1.5;
  text-align: right;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.sticky-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.sticky-cta__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 48px;
  box-shadow: 0 8px 32px rgba(74,124,74,0.4);
  transition: background var(--transition), transform var(--transition);
}
.sticky-cta__btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

/* ===== TABLE ===== */
.table-scroll {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: #fff;
}
.spec-table th, .spec-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 14px;
  font-family: var(--font-body);
}
.spec-table thead th {
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.spec-table__label {
  background: #f9f9f9;
  font-weight: 600;
  text-align: left;
  font-family: var(--font-body);
}
.spec-table tbody th.spec-table__label { text-align: left; }
.spec-table__hl {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
}
.spec-table thead th.spec-table__hl { background: var(--color-primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .hero__content {
    padding-right: 0;
    padding-bottom: 20px;
    order: 2;
  }
  .hero__visual { order: 1; }
  .hero__subtitle { margin-inline: auto; }
  .hero__cta-row { justify-content: center; }
  .hero__trust-row { justify-content: center; }

  .product-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stats-strip__item:nth-child(even) { border-bottom: none; }

  .problem-section__question { flex-direction: column; gap: 32px; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .mechanism-block { grid-template-columns: 1fr; }

  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefit-item--featured { grid-row: auto; }

  .prediabetes-banner { grid-template-columns: 1fr; gap: 32px; }
  .prediabetes-banner__stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-right: 0; padding-bottom: 32px; }

  .faq-section__inner { grid-template-columns: 1fr; gap: 40px; }

  .order-section__inner { grid-template-columns: 1fr; }
  .order-section__left { order: 2; }
  .order-section__right { order: 1; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__disclaimer { text-align: left; }

  .benefits-section__header { grid-template-columns: 1fr; gap: 24px; }

  .testimonials-featured { padding: 56px 36px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-dark); padding: 24px clamp(20px, 5vw, 48px); gap: 20px; border-top: 1px solid rgba(255,255,255,0.07); }
  .nav__links--open { display: flex; }
  .nav__hamburger { display: flex; }

  .hero__product-wrap { width: 240px; height: 300px; }
  .hero__badge-top { right: -10px; top: 0; }
  .hero__badge-bottom { left: -10px; bottom: 20px; }

  .problem-section__grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }

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

  .form-row { grid-template-columns: 1fr; }
  .order-section__left { padding: 48px 32px; }
  .order-section__right { padding: 48px 32px; }

  .testimonials-featured { padding: 48px 28px; }

  .stats-strip__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(40px, 10vw, 72px); }
  .prediabetes-banner { padding: 36px 28px; }
  .problem-section__question { padding: 36px 28px; }
}

/* Progressive-enhancement safety (injected by builder): scroll-reveal blocks stay VISIBLE
   unless JS confirms it can animate them by adding .js-anim to <html>. Guarantees a
   truncated page or a failed script can never leave content permanently hidden. */
html:not(.js-anim) .reveal,
html:not(.js-anim) .reveal-left,
html:not(.js-anim) .reveal-right,
html:not(.js-anim) .reveal-scale,
html:not(.js-anim) .stagger-child {
  opacity: 1 !important;
  transform: none !important;
}
