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

:root {
  --forest-deep: #1B3A2D;
  --forest-mid: #2C5F4E;
  --forest-teal: #4A7C6F;
  --forest-sage: #8DB8A8;
  --forest-mist: #E8F4F0;
  --cream: #F5F0E8;
  --cream-dark: #EDE8DF;
  --white-off: #FAFAF8;
  --ink: #1A2820;
  --ink-mid: #3D5249;
  --ink-light: #6B8578;
  --accent: #2C5F4E;
  --accent-bright: #4A7C6F;
  --gold: #B89A5A;
  --red-soft: #C75B4E;
  --border-light: rgba(27,58,45,0.12);
  --border-mid: rgba(27,58,45,0.22);
  --shadow-sm: 0 2px 12px rgba(27,58,45,0.08);
  --shadow-md: 0 8px 32px rgba(27,58,45,0.12);
  --shadow-lg: 0 20px 60px rgba(27,58,45,0.16);
  --font-display: 'Newsreader', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s 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; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── ON-DARK SCOPING ─── */
.on-dark { color: rgba(255,255,255,0.85); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark h5 { color: #fff; }
.on-dark p { color: rgba(255,255,255,0.72); }
.on-dark a:not(.btn) { color: inherit; }
.on-dark .eyebrow { color: var(--forest-sage); }

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.container--narrow { max-width: 800px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.container--wide { max-width: 1400px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
}
h1 { font-size: clamp(40px, 6vw, 80px); font-weight: 600; }
h2 { font-size: clamp(32px, 4.5vw, 60px); font-weight: 600; }
h3 { font-size: clamp(22px, 3vw, 36px); font-weight: 600; }
h4 { font-size: clamp(18px, 2vw, 24px); font-weight: 600; }
p { font-size: clamp(15px, 1.5vw, 17px); line-height: 1.7; color: var(--ink-mid); }
em { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-teal);
  display: block;
  margin-bottom: 12px;
}

/* ─── BUTTONS (B6 — Animated border) ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--forest-deep);
  color: #fff;
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--forest-sage);
  border-radius: var(--radius-sm);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--primary:hover::before { clip-path: inset(0 0 0 0); }
.btn--primary:hover { background: var(--forest-mid); }

.btn--outline {
  background: transparent;
  color: var(--forest-deep);
  border: 2px solid var(--forest-deep);
}
.btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--forest-deep);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.btn--outline:hover::before { clip-path: inset(0 0 0 0); }
.btn--outline:hover { color: #fff; }
.btn--outline span { position: relative; z-index: 1; }

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); }

.btn--lg { padding: 18px 44px; font-size: 15px; }
.btn--sm { padding: 10px 20px; font-size: 12px; }

/* ─── CARDS (C7 — Outlined bold) ─── */
.card {
  background: var(--white-off);
  border: 2px solid var(--forest-teal);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--forest-deep);
}

/* ─── 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; }

/* ─── NAVIGATION (V3 — Frosted) ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(245,240,232,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), padding var(--transition);
}
.nav--scrolled {
  background: rgba(245,240,232,0.95);
  border-bottom-color: var(--border-light);
  padding: 10px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--forest-deep);
  text-decoration: none;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.nav__logo span { font-style: italic; color: var(--forest-teal); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__links a:hover { color: var(--forest-deep); }
.nav__cta { flex-shrink: 0; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest-deep);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}

/* ─── ADVERTORIAL BANNER ─── */
.advertorial-bar {
  background: var(--forest-mist);
  border-bottom: 1px solid var(--border-light);
  padding: 8px 0;
  text-align: center;
  position: relative;
  z-index: 999;
}
.advertorial-bar p {
  font-size: 12px;
  color: var(--ink-light);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.advertorial-bar strong { color: var(--forest-mid); }

/* ─── HERO (Variant F — Stacked Card) ─── */
.hero {
  padding-top: calc(80px + 60px);
  padding-bottom: 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(141,184,168,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero__panel {
  background: var(--white-off);
  border: 2px solid var(--forest-teal);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 560px;
}
.hero__texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(74,124,111,0.06) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  border-radius: var(--radius-lg);
}
.hero__content {
  padding: clamp(32px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-mist);
  color: var(--forest-mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  border: 1px solid var(--border-mid);
  margin-bottom: 24px;
  width: fit-content;
}
.hero__title {
  color: var(--forest-deep);
  margin-bottom: 12px;
  font-size: clamp(36px, 4.5vw, 68px);
}
.hero__title em { color: var(--forest-teal); }
.hero__subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-mid);
  margin-bottom: 32px;
  max-width: 440px;
  line-height: 1.6;
}
.hero__checklist {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-mid);
  font-weight: 500;
}
.hero__check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--forest-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero__check-icon svg { width: 12px; height: 12px; stroke: #fff; fill: none; }
.hero__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--forest-deep);
}
.hero__price-note {
  font-size: 13px;
  color: var(--ink-light);
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__image-col {
  position: relative;
  background: var(--forest-mist);
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.hero__img-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
}
.hero__img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(27,58,45,0.18));
}
.hero__badge {
  position: absolute;
  z-index: 10;
  background: var(--white-off);
  border: 2px solid var(--forest-teal);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  min-width: 140px;
  animation: fade-up 0.8s ease forwards;
  opacity: 0;
}
.hero__badge--tl { top: 24px; left: -20px; animation-delay: 0.6s; }
.hero__badge--br { bottom: 40px; right: -20px; animation-delay: 0.9s; }
.hero__badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--forest-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__badge-icon svg { width: 18px; height: 18px; stroke: var(--forest-mid); fill: none; }
.hero__badge-text { display: flex; flex-direction: column; }
.hero__badge-title { font-size: 13px; font-weight: 700; color: var(--forest-deep); line-height: 1.2; }
.hero__badge-sub { font-size: 11px; color: var(--ink-light); }

/* ─── MARQUEE ─── */
.marquee-strip {
  background: var(--forest-deep);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-strip__track {
  display: flex;
  gap: 48px;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--forest-sage);
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-strip__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--forest-teal);
}

/* ─── PROBLEM SECTION ─── */
.problem {
  padding: 100px 0;
  background: var(--forest-deep);
}
.problem__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.problem__text { }
.problem__big-stat {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 700;
  color: rgba(141,184,168,0.12);
  line-height: 0.9;
  position: absolute;
  left: -20px;
  top: -20px;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.problem__stat-block {
  position: relative;
  z-index: 1;
}
.problem__stat-number {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 120px);
  font-weight: 700;
  color: var(--forest-sage);
  line-height: 0.9;
  display: block;
  margin-bottom: 16px;
}
.problem__stat-label {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 280px;
  line-height: 1.5;
}
.problem__pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.problem__pain-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  border: 2px solid rgba(141,184,168,0.2);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), background var(--transition);
}
.problem__pain-item:hover {
  border-color: rgba(141,184,168,0.5);
  background: rgba(141,184,168,0.05);
}
.problem__pain-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(141,184,168,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.problem__pain-icon svg { width: 20px; height: 20px; stroke: var(--forest-sage); fill: none; stroke-width: 1.8; }
.problem__pain-body h4 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.problem__pain-body p { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0; }

/* ─── HOW IT WORKS ─── */
.how {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.how__header { text-align: center; margin-bottom: 70px; }
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  position: relative;
}
.how__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--forest-teal), var(--forest-sage), var(--forest-teal));
  z-index: 0;
}
.how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.how__step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white-off);
  border: 2px solid var(--forest-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  flex-shrink: 0;
}
.how__step-num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  animation: pulse-ring 2.5s ease-out infinite;
}
.how__step-num span {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--forest-teal);
  font-style: italic;
}
.how__step h3 {
  font-size: 22px;
  color: var(--forest-deep);
  margin-bottom: 12px;
}
.how__step p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.65;
}
.how__visual {
  margin-top: 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
.how__diagram {
  background: var(--forest-mist);
  border: 2px solid var(--forest-teal);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.how__diagram-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white-off);
  border: 2px solid var(--border-mid);
  border-radius: var(--radius-md);
}
.how__diagram-row svg { width: 24px; height: 24px; stroke: var(--forest-mid); fill: none; flex-shrink: 0; }
.how__diagram-row p { font-size: 14px; font-weight: 500; color: var(--ink); margin: 0; }

/* ─── PRODUCTS SECTION (index) ─── */
.products-section {
  padding: 100px 0;
  background: var(--cream-dark);
}
.products-section__header { margin-bottom: 60px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white-off);
  border: 2px solid var(--forest-teal);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--forest-deep);
}
.product-card__img {
  height: 240px;
  overflow: hidden;
  position: relative;
  background: var(--forest-mist);
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  display: block;
}
.product-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1.25;
}
.product-card__desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.6;
  flex: 1;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--forest-deep);
}
.product-card__btn {
  margin-top: 8px;
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ─── BENEFITS ─── */
.benefits {
  padding: 100px 0;
  background: var(--white-off);
}
.benefits__header { margin-bottom: 64px; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.benefit-card {
  padding: 32px;
  border: 2px solid var(--forest-teal);
  border-radius: var(--radius-md);
  background: var(--white-off);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--forest-deep);
}
.benefit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--forest-mist);
  border: 2px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-card__icon svg { width: 24px; height: 24px; stroke: var(--forest-mid); fill: none; stroke-width: 1.8; }
.benefit-card__body h4 { color: var(--forest-deep); margin-bottom: 8px; font-size: 18px; }
.benefit-card__body p { font-size: 14px; color: var(--ink-mid); line-height: 1.65; margin: 0; }

/* ─── TRUST / GUARANTEE ─── */
.guarantee {
  padding: 100px 0;
  background: var(--forest-deep);
}
.guarantee__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.guarantee__badges {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}
.guarantee__badge {
  border: 2px solid rgba(141,184,168,0.3);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color var(--transition), background var(--transition);
}
.guarantee__badge:hover {
  border-color: rgba(141,184,168,0.7);
  background: rgba(141,184,168,0.06);
}
.guarantee__badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(141,184,168,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee__badge-icon svg { width: 24px; height: 24px; stroke: var(--forest-sage); fill: none; }
.guarantee__badge-title { font-size: 14px; font-weight: 700; color: #fff; }
.guarantee__badge-sub { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.4; }

/* ─── FAQ ─── */
.faq {
  padding: 100px 0;
  background: var(--cream);
}
.faq__header { margin-bottom: 56px; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
}
.faq__item {
  border: 2px solid var(--border-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
  background: var(--white-off);
}
.faq__item.faq--open { border-color: var(--forest-teal); }
.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--forest-deep);
  transition: background var(--transition);
}
.faq__question:hover { background: var(--forest-mist); }
.faq__icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--border-mid);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.faq__icon svg { width: 14px; height: 14px; stroke: var(--forest-mid); fill: none; transition: transform var(--transition); }
.faq--open .faq__icon { background: var(--forest-deep); border-color: var(--forest-deep); }
.faq--open .faq__icon svg { stroke: #fff; transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq--open .faq__answer { max-height: 400px; }
.faq__answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.7;
}

/* ─── COMPARISON TABLE ─── */
.comparison {
  padding: 100px 0;
  background: var(--cream-dark);
}
.comparison__header { margin-bottom: 56px; }
.table-scroll {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--white-off);
}
.spec-table th, .spec-table td {
  padding: 16px 22px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  font-family: var(--font-body);
}
.spec-table thead th {
  background: var(--forest-deep);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.spec-table__label {
  background: var(--forest-mist);
  font-weight: 600;
  text-align: left;
  color: var(--ink);
}
.spec-table tbody th.spec-table__label { text-align: left; }
.spec-table__hl {
  background: var(--forest-mid) !important;
  color: #fff !important;
  font-weight: 700;
}
.spec-table thead th.spec-table__hl { background: var(--forest-teal) !important; }
.spec-table tbody tr:last-child td,
.spec-table tbody tr:last-child th { border-bottom: none; }
.check-yes { color: #2C5F4E; font-weight: 700; font-size: 18px; }
.check-no { color: #C75B4E; font-weight: 700; font-size: 18px; }

/* ─── DISCLAIMER VISIBLE ─── */
.page-disclaimer {
  background: var(--forest-mist);
  border-top: 2px solid var(--border-mid);
  border-bottom: 2px solid var(--border-mid);
  padding: 16px 0;
  text-align: center;
}
.page-disclaimer p {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.5;
}
.page-disclaimer strong { color: var(--forest-mid); }

/* ─── FOOTER ─── */
.footer {
  background: var(--ink);
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 12px;
}
.footer__brand-name span { font-style: italic; color: var(--forest-sage); }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 20px; }
.footer__contact-block { display: flex; flex-direction: column; gap: 6px; }
.footer__contact-block a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__contact-block a:hover { color: var(--forest-sage); }
.footer__contact-block span { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer__col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-sage);
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer__legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal-links a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color var(--transition); }
.footer__legal-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── ANIMATIONS ─── */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes pulse-ring { 0%{transform:scale(1);opacity:0.6} 100%{transform:scale(1.4);opacity:0} }
@keyframes fade-up { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes spin { to{transform:rotate(360deg)} }
@keyframes slide-in-left { from{opacity:0;transform:translateX(-40px)} to{opacity:1;transform:translateX(0)} }
@keyframes border-draw {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-up { opacity: 0; transform: translateY(60px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-up.revealed { opacity: 1; transform: translateY(0); }

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--white-off);
  border-top: 2px solid var(--forest-teal);
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 -8px 32px rgba(27,58,45,0.12);
  transition: bottom 0.4s cubic-bezier(0.4,0,0.2,1);
  flex-wrap: wrap;
}
.sticky-cta--visible { bottom: 0; }
.sticky-cta__text {
  font-size: 15px;
  font-weight: 600;
  color: var(--forest-deep);
}
.sticky-cta__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--forest-deep);
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27,58,45,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 20px;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white-off);
  border: 2px solid var(--forest-teal);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }
.modal-box__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--forest-mist);
  border: 2px solid var(--forest-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.modal-box__icon svg { width: 30px; height: 30px; stroke: var(--forest-mid); fill: none; }
.modal-box h3 { font-size: 26px; color: var(--forest-deep); margin-bottom: 12px; }
.modal-box p { font-size: 15px; color: var(--ink-mid); line-height: 1.65; margin-bottom: 28px; }
.modal-close { margin-top: 8px; }

/* ─── SPINNER ─── */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--white-off);
  border: 2px solid var(--forest-teal);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  z-index: 1800;
  box-shadow: var(--shadow-lg);
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 10px;
}
.cookie-banner p { font-size: 13px; color: var(--ink-mid); line-height: 1.6; margin-bottom: 18px; }
.cookie-banner p a { color: var(--forest-teal); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.cookie-banner__btn {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-banner__btn--accept {
  background: var(--forest-deep);
  color: #fff;
  border-color: var(--forest-deep);
}
.cookie-banner__btn--reject {
  background: transparent;
  color: var(--forest-deep);
  border-color: var(--border-mid);
}
.cookie-banner__btn--config {
  background: transparent;
  color: var(--ink-light);
  border-color: transparent;
  text-decoration: underline;
  padding-left: 0;
  padding-right: 0;
}
.cookie-config-panel {
  display: none;
  border-top: 1px solid var(--border-light);
  margin-top: 12px;
  padding-top: 16px;
}
.cookie-config-panel.visible { display: block; }
.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.cookie-toggle-row span { font-size: 13px; color: var(--ink); font-weight: 500; }
.cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-mid);
  border-radius: 11px;
  transition: background var(--transition);
  cursor: pointer;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--transition);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--forest-mid); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.6; cursor: not-allowed; }

/* ─── FORM VALIDATION ERRORS ─── */
.field-error {
  font-size: 12px;
  color: var(--red-soft);
  margin-top: 4px;
  display: none;
}
.field-error.visible { display: block; }
.input-invalid { border-color: var(--red-soft) !important; }

/* ─── INPUT STYLES ─── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white-off);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--forest-teal);
  box-shadow: 0 0 0 3px rgba(74,124,111,0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ─── CATALOG PAGE ─── */
.catalog-hero {
  padding-top: calc(80px + 80px);
  padding-bottom: 80px;
  background: var(--forest-deep);
}
.catalog-hero h1 { color: #fff; }
.catalog-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin-top: 16px; }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.catalog-page { padding: 80px 0; background: var(--cream); }

/* ─── PRODUCT PAGE SPECIFIC ─── */
.product-hero {
  padding-top: calc(80px + 60px);
  padding-bottom: 60px;
  background: var(--cream);
}
.product-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}
.product-hero__image {
  position: relative;
  background: var(--forest-mist);
  border: 2px solid var(--forest-teal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.product-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product-hero__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--forest-mid);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 2;
}
.product-hero__content { display: flex; flex-direction: column; gap: 20px; }
.product-hero__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 1.15;
}
.product-hero__claim {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.65;
}
.product-hero__price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--forest-deep);
}
.product-hero__cod {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest-mid);
  background: var(--forest-mist);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-mid);
}
.product-hero__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-mid);
}
.product-hero__feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest-teal);
  flex-shrink: 0;
}

/* ─── SPEC TABLE (product page) ─── */
.specs-section {
  padding: 80px 0;
  background: var(--cream-dark);
}
.specs-section__header { margin-bottom: 48px; }
.specs-full-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--border-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white-off);
}
.specs-full-table th, .specs-full-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  font-family: var(--font-body);
  text-align: left;
}
.specs-full-table thead th {
  background: var(--forest-deep);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.specs-full-table th.spec-row-label {
  background: var(--forest-mist);
  color: var(--ink);
  font-weight: 600;
  width: 35%;
}
.specs-full-table td { color: var(--ink-mid); }
.specs-full-table tr:last-child td,
.specs-full-table tr:last-child th { border-bottom: none; }

/* ─── FEATURE GRID (product page) ─── */
.feature-grid-section {
  padding: 80px 0;
  background: var(--white-off);
}
.feature-grid-section__header { margin-bottom: 52px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.feature-tile {
  padding: 28px 24px;
  border: 2px solid var(--forest-teal);
  border-radius: var(--radius-md);
  background: var(--white-off);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--forest-deep);
}
.feature-tile__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--forest-mist);
  border: 2px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.feature-tile__icon svg { width: 24px; height: 24px; stroke: var(--forest-mid); fill: none; stroke-width: 1.8; }
.feature-tile h4 { font-size: 16px; color: var(--forest-deep); margin-bottom: 8px; }
.feature-tile p { font-size: 13px; color: var(--ink-mid); line-height: 1.6; margin: 0; }

/* ─── GALLERY (product page) ─── */
.gallery-section {
  padding: 80px 0;
  background: var(--cream);
}
.gallery-section__header { margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border-mid);
  background: var(--forest-mist);
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
}
.gallery-item:hover { border-color: var(--forest-teal); transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: contain; padding: 12px; display: block; }

/* ─── ORDER BLOCK (product page) ─── */
.order-block {
  padding: 80px 0;
  background: var(--forest-deep);
}
.order-block__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}
.order-block__info h2 { color: #fff; margin-bottom: 16px; }
.order-block__info p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.65; }
.order-block__price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin: 20px 0 8px;
}
.order-block__cod {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest-sage);
  background: rgba(141,184,168,0.15);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(141,184,168,0.3);
  margin-bottom: 32px;
}
.order-block__trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order-block__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.order-block__trust-item svg { width: 18px; height: 18px; stroke: var(--forest-sage); fill: none; flex-shrink: 0; }

/* ─── CHECKOUT PAGE ─── */
.checkout-page {
  min-height: 100vh;
  background: var(--cream);
  padding-top: calc(80px + 40px);
  padding-bottom: 80px;
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 48px;
  align-items: start;
}
.checkout-form-col { }
.checkout-summary-col { }
.checkout-section-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-teal);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}
.checkout-block {
  background: var(--white-off);
  border: 2px solid var(--forest-teal);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 20px;
}
.checkout-form-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
.checkout-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
}
.checkout-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--forest-mid);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.checkout-checkbox label { font-size: 13px; color: var(--ink-mid); line-height: 1.5; }
.checkout-checkbox label a { color: var(--forest-teal); text-decoration: underline; }
.order-summary {
  background: var(--white-off);
  border: 2px solid var(--forest-teal);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: sticky;
  top: 120px;
}
.order-summary__header {
  background: var(--forest-deep);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.order-summary__header h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
}
.order-summary__header svg { stroke: var(--forest-sage); fill: none; width: 18px; height: 18px; transition: transform var(--transition); }
.order-summary__header.collapsed svg { transform: rotate(-90deg); }
.order-summary__body { padding: 24px; }
.order-product-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}
.order-product-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-mid);
  background: var(--forest-mist);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-product-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.order-product-info { flex: 1; }
.order-product-name { font-size: 15px; font-weight: 600; color: var(--forest-deep); margin-bottom: 4px; }
.order-product-qty { font-size: 13px; color: var(--ink-light); }
.order-product-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--forest-deep);
}
.order-totals { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.order-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-mid);
}
.order-total-row.grand-total {
  font-size: 17px;
  font-weight: 700;
  color: var(--forest-deep);
  border-top: 2px solid var(--border-mid);
  padding-top: 12px;
  margin-top: 4px;
}
.seller-block {
  background: var(--forest-mist);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 16px;
}
.seller-block h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin-bottom: 8px;
}
.seller-block p { font-size: 13px; color: var(--ink-mid); line-height: 1.6; margin: 0; }
.seller-block a { color: var(--forest-teal); text-decoration: none; }
.order-terms {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.6;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  border: 1px solid var(--border-light);
}
.cod-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--forest-deep);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.cod-badge svg { width: 20px; height: 20px; stroke: var(--forest-sage); fill: none; flex-shrink: 0; }
.cod-badge span { font-size: 14px; font-weight: 600; }
.checkout-submit {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  border-radius: var(--radius-sm);
  justify-content: center;
  margin-top: 8px;
}

/* ─── STAT BIG NUMBERS ─── */
.stats-strip {
  padding: 80px 0;
  background: var(--cream-dark);
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 2px solid var(--forest-teal);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-block {
  padding: 48px 40px;
  text-align: center;
  border-right: 2px solid var(--border-light);
}
.stat-block:last-child { border-right: none; }
.stat-block__number {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 0.9;
  display: block;
  letter-spacing: -0.03em;
}
.stat-block__unit {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--forest-teal);
  font-style: italic;
}
.stat-block__label {
  font-size: 14px;
  color: var(--ink-light);
  margin-top: 12px;
  display: block;
  font-weight: 500;
}

/* ─── LEGAL PAGES ─── */
.legal-page {
  padding-top: calc(80px + 60px);
  padding-bottom: 80px;
  background: var(--cream);
  min-height: 60vh;
}
.legal-page h1 { margin-bottom: 8px; font-size: clamp(32px, 5vw, 56px); }
.legal-page .lead {
  font-size: 17px;
  color: var(--ink-mid);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}
.legal-page h2 { font-size: 24px; margin: 36px 0 12px; color: var(--forest-deep); }
.legal-page h3 { font-size: 19px; margin: 24px 0 8px; color: var(--forest-mid); }
.legal-page p { font-size: 15px; color: var(--ink-mid); line-height: 1.75; margin-bottom: 16px; }
.legal-page ul, .legal-page ol { padding-left: 24px; margin-bottom: 16px; }
.legal-page li { font-size: 15px; color: var(--ink-mid); line-height: 1.7; margin-bottom: 8px; }
.legal-page a { color: var(--forest-teal); text-decoration: underline; }

/* ─── ABOUT PAGE SPECIFIC ─── */
.about-hero { padding-top: calc(80px + 80px); padding-bottom: 80px; background: var(--forest-deep); }
.about-section { padding: 80px 0; }
.about-section:nth-child(even) { background: var(--cream-dark); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  padding: 28px 24px;
  border: 2px solid var(--forest-teal);
  border-radius: var(--radius-md);
  background: var(--white-off);
}
.value-card h4 { font-size: 18px; color: var(--forest-deep); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.65; margin: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .checkout-layout { grid-template-columns: minmax(0, 1fr); }
  .order-summary { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .nav__links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white-off); flex-direction: column; justify-content: center; align-items: center; gap: 32px; z-index: 999; }
  .nav__links--open { display: flex; }
  .nav__links a { font-size: 20px; }
  .nav__burger { display: flex; z-index: 1000; }
  .nav__cta { display: none; }
  .hero__panel { grid-template-columns: minmax(0, 1fr); }
  .hero__image-col { min-height: 300px; }
  .hero__badge--tl, .hero__badge--br { display: none; }
  .problem__inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .how__steps { grid-template-columns: minmax(0, 1fr); }
  .how__steps::before { display: none; }
  .how__visual { grid-template-columns: minmax(0, 1fr); }
  .products-grid, .catalog-grid { grid-template-columns: minmax(0, 1fr); }
  .benefits__grid { grid-template-columns: minmax(0, 1fr); }
  .guarantee__inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .guarantee__badges { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .stats-strip__grid { grid-template-columns: minmax(0, 1fr); }
  .stat-block { border-right: none; border-bottom: 1px solid var(--border-light); }
  .stat-block:last-child { border-bottom: none; }
  .product-hero__inner { grid-template-columns: minmax(0, 1fr); }
  .order-block__inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .footer__inner { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .checkout-form-row { grid-template-columns: minmax(0, 1fr); }
  .feature-grid { grid-template-columns: minmax(0, 1fr); }
  .values-grid { grid-template-columns: minmax(0, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* 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;
}
