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

:root {
  --birch: #f8f5f0;
  --birch-mid: #ede8df;
  --birch-dark: #d6cfc3;
  --forest-deep: #1a2e1a;
  --forest-mid: #3d6b35;
  --forest-light: #8fbc5a;
  --amber: #c8a96e;
  --amber-light: #dfc48e;
  --ink: #2c2c2c;
  --ink-soft: #4a4a4a;
  --text-muted: #6b6b6b;
  --white: #fdfcfa;
  --border: rgba(26,46,26,0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 12px rgba(26,46,26,0.08);
  --shadow-md: 0 8px 40px rgba(26,46,26,0.12);
  --shadow-lg: 0 20px 80px rgba(26,46,26,0.18);

  --transition: 0.3s ease;
}

*, *::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(--birch);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
}

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

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

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

.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);
}

/* ─── ON-DARK SCOPING ─── */
.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.70);
}
.on-dark a:not(.btn):not(.btn-underline) {
  color: inherit;
}

/* ─── ADVERTORIAL BANNER ─── */
.advertorial-bar {
  background: var(--birch-mid);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.advertorial-bar a {
  color: var(--forest-mid);
  text-decoration: underline;
}

/* ─── NAV (V3 — Frosted) ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background: rgba(248,245,240,0.60);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}

.nav--scrolled {
  background: rgba(248,245,240,0.92);
  border-bottom-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding-inline: clamp(20px, 5vw, 48px);
  max-width: 1280px;
  margin-inline: auto;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--forest-deep);
  letter-spacing: 0.02em;
}

.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: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--forest-mid);
  transition: width var(--transition);
}

.nav__links a:hover { color: var(--forest-mid); }
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: var(--transition);
}

/* ─── BUTTONS (B4 — Underline only) ─── */
.btn-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--forest-mid);
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  border-bottom: 1.5px solid var(--forest-mid);
  transition: color var(--transition), border-color var(--transition), gap var(--transition);
  letter-spacing: 0.03em;
}

.btn-underline:hover {
  color: var(--forest-deep);
  border-color: var(--forest-deep);
  gap: 12px;
}

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

.btn-underline--dark:hover {
  color: var(--amber-light);
  border-color: var(--amber-light);
}

.btn-underline--white {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

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

/* Primary action button (used only next to product+price) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  background: var(--forest-deep);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px 36px;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition), transform 0.2s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
}

/* ─── 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: var(--font-body);
  text-align: center;
  padding: 0 16px;
}

/* ─── 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(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-up.revealed { opacity: 1; transform: translateY(0); }

/* ─── HERO (Variant A — Editorial Split) ─── */
.hero {
  padding-top: 68px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--birch);
  position: relative;
  overflow: hidden;
}

.hero__layout {
  display: grid;
  grid-template-columns: 62% 38%;
  min-height: calc(100vh - 68px);
  align-items: center;
}

.hero__left {
  padding: clamp(40px, 7vw, 100px) clamp(20px, 5vw, 48px) clamp(40px, 7vw, 100px) clamp(20px, 5vw, 72px);
  position: relative;
  z-index: 2;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fade-up 0.8s ease forwards;
  opacity: 0;
}

.hero__label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--forest-mid);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1.05;
  margin-bottom: 28px;
  animation: fade-up 0.8s ease 0.15s forwards;
  opacity: 0;
}

.hero__title em {
  font-style: italic;
  color: var(--forest-mid);
}

.hero__subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
  animation: fade-up 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 36px;
  animation: fade-up 0.8s ease 0.45s forwards;
  opacity: 0;
}

.hero__price-badge {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--forest-deep);
  letter-spacing: 0.01em;
}

.hero__price-badge span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
  display: block;
  margin-top: 2px;
}

.hero__right {
  position: relative;
  height: 100%;
  min-height: calc(100vh - 68px);
  overflow: visible;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
  overflow: visible;
}

.hero__image-wrap img {
  width: 110%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  animation: fade-up 0.9s ease 0.2s forwards;
  opacity: 0;
}

.hero__bg-shape {
  position: absolute;
  top: -10%;
  right: -20%;
  width: 80%;
  height: 120%;
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest-mid) 100%);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero__image-wrap {
  z-index: 1;
}

.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fade-up 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero__stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 1;
}

.hero__stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ─── DISCLAIMER BAR ─── */
.disclaimer-bar {
  background: var(--forest-deep);
  padding: 14px 20px;
  text-align: center;
}

.disclaimer-bar p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

/* ─── MARQUEE ─── */
.marquee-section {
  background: var(--forest-mid);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.marquee-track span::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
}

/* ─── SECTION HEADERS ─── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--forest-mid);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--forest-mid);
}

.section-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 560px;
}

/* ─── PROBLEM SECTION ─── */
.problem-section {
  background: var(--forest-deep);
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
  padding: clamp(80px, 12vw, 140px) 0 clamp(100px, 14vw, 160px);
}

.problem-section .section-eyebrow {
  color: var(--amber);
}

.problem-section .section-eyebrow::before {
  background: var(--amber);
}

.problem-section .section-title {
  color: #fff;
}

.problem-section .section-title em {
  color: var(--forest-light);
}

.problem-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-top: clamp(48px, 7vw, 80px);
  align-items: start;
}

.problem-col-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.problem-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.problem-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.problem-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--amber);
  fill: none;
}

.problem-item__text h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}

.problem-item__text p {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  font-weight: 300;
  line-height: 1.7;
}

.problem-col-right {
  position: relative;
}

.problem-big-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: clamp(32px, 4vw, 52px);
  margin-bottom: 24px;
}

.problem-big-stat__num {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 700;
  color: var(--forest-light);
  line-height: 1;
  margin-bottom: 12px;
}

.problem-big-stat__text {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.7;
  max-width: 320px;
}

.problem-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  line-height: 1.65;
}

/* ─── PRODUCT SECTION ─── */
.product-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--birch);
  position: relative;
}

.product-layout {
  display: grid;
  grid-template-columns: 52% 44%;
  gap: clamp(32px, 4vw, 60px);
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.product-gallery__main {
  position: relative;
  background: var(--birch-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.4s ease;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.product-thumb {
  aspect-ratio: 1 / 1;
  background: var(--birch-mid);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumb.active,
.product-thumb:hover {
  border-color: var(--forest-mid);
}

.product-info {
  padding-top: 8px;
}

.product-info__name {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1.1;
  margin-bottom: 8px;
}

.product-info__name em {
  font-style: italic;
  color: var(--forest-mid);
}

.product-info__tagline {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 28px;
}

.product-info__price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 6px;
}

.product-info__price-note {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 32px;
}

.product-info__cta {
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.product-info__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-item__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.spec-item__value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--forest-deep);
}

/* ─── HOW IT WORKS ─── */
.how-section {
  background: var(--birch-mid);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding: clamp(100px, 14vw, 160px) 0;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  margin-top: clamp(48px, 7vw, 80px);
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.67% + 20px);
  width: calc(66.66% - 40px);
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--forest-mid), var(--border));
  z-index: 0;
}

.how-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(24px, 3vw, 36px);
}

.how-step__num {
  width: 56px;
  height: 56px;
  background: var(--forest-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  position: relative;
}

.how-step__num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--forest-mid);
  opacity: 0.4;
}

.how-step__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  opacity: 0.7;
}

.how-step__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--forest-mid);
  fill: none;
  stroke-width: 1.5;
}

.how-step__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 12px;
}

.how-step__text {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ─── BENEFITS ─── */
.benefits-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--birch);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-top: clamp(48px, 7vw, 80px);
}

.benefits-sticky {
  position: sticky;
  top: 100px;
}

.benefits-large-num {
  font-family: var(--font-display);
  font-size: clamp(100px, 14vw, 180px);
  font-weight: 700;
  color: var(--birch-dark);
  line-height: 0.9;
  user-select: none;
  pointer-events: none;
  margin-bottom: 24px;
}

.benefits-sticky p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 280px;
}

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

.benefit-card {
  background: var(--birch-mid);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.benefit-card:hover {
  border-color: var(--border);
  background: var(--white);
}

.benefit-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
}

.benefit-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--forest-mid);
  fill: none;
  stroke-width: 1.5;
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 10px;
}

.benefit-card__text {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ─── GUARANTEE ─── */
.guarantee-section {
  background: var(--forest-deep);
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  padding: clamp(100px, 14vw, 160px) 0;
}

.guarantee-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.guarantee-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.guarantee-circle {
  width: clamp(180px, 24vw, 280px);
  height: clamp(180px, 24vw, 280px);
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
  animation: float 5s ease-in-out infinite;
}

.guarantee-circle::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.25);
}

.guarantee-circle__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.guarantee-circle__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

.guarantee-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.guarantee-content h2 em {
  font-style: italic;
  color: var(--amber);
}

.guarantee-content p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 440px;
}

.guarantee-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guarantee-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.guarantee-point__dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.guarantee-point p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

/* ─── FAQ ─── */
.faq-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--birch);
}

.faq-layout {
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-top: clamp(48px, 7vw, 80px);
}

.faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq-sidebar p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 20px;
  max-width: 260px;
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-question__text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--forest-deep);
  line-height: 1.3;
  transition: color var(--transition);
}

.faq-question:hover .faq-question__text {
  color: var(--forest-mid);
}

.faq-question__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.faq-question__icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--forest-mid);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

.faq-item.faq--open .faq-question__icon {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  transform: rotate(45deg);
}

.faq-item.faq--open .faq-question__icon svg {
  stroke: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-answer__inner {
  padding-bottom: 24px;
}

.faq-answer__inner p {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
}

.faq-item.faq--open .faq-answer {
  max-height: 400px;
}

/* ─── SUPPORT SECTION ─── */
.support-section {
  background: var(--birch-mid);
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
  padding: clamp(100px, 14vw, 160px) 0 clamp(80px, 10vw, 120px);
}

.support-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-top: clamp(40px, 6vw, 64px);
}

.support-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.support-card:hover {
  box-shadow: var(--shadow-md);
}

.support-card__icon {
  width: 48px;
  height: 48px;
  background: var(--forest-deep);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.support-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
}

.support-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 12px;
}

.support-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 24px;
}

.support-card__detail {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--forest-mid);
}

.support-card__detail a {
  color: inherit;
  border-bottom: 1px solid var(--forest-mid);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.support-card__detail a:hover {
  color: var(--forest-deep);
  border-color: var(--forest-deep);
}

/* ─── TRUST BADGES ─── */
.trust-section {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--birch);
}

.trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 24px 16px;
  background: var(--birch-mid);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.trust-badge__icon {
  width: 36px;
  height: 36px;
}

.trust-badge__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--forest-mid);
  fill: none;
  stroke-width: 1.5;
}

.trust-badge__text {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--forest-deep);
  padding: clamp(64px, 8vw, 100px) 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  display: block;
}

.footer__tagline {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.50);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.5;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: var(--amber);
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.60);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--amber);
}

.footer__impressum {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__impressum-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 12px;
}

.footer__impressum-text {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

.footer__impressum-text a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__impressum-text a:hover {
  color: var(--amber);
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  font-weight: 300;
}

.footer__domain {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  font-weight: 300;
}

/* ─── STICKY CTA (bottom) ─── */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  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 a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--forest-deep);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  transition: background var(--transition);
  text-decoration: none;
}

.sticky-cta a:hover {
  background: var(--forest-mid);
}

.sticky-cta a svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* ─── KEYFRAMES ─── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@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 marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  display: none;
}

.cookie-banner.cookie-show {
  display: block;
}

.cookie-banner h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 10px;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 20px;
}

.cookie-banner a {
  color: var(--forest-mid);
  text-decoration: underline;
}

.cookie-btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.cookie-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn--accept {
  background: var(--forest-deep);
  color: #fff;
}

.cookie-btn--accept:hover { background: var(--forest-mid); }

.cookie-btn--reject {
  background: var(--birch-mid);
  color: var(--ink);
  border: 1px solid var(--border);
}

.cookie-btn--reject:hover { background: var(--birch-dark); }

.cookie-btn--configure {
  background: none;
  color: var(--forest-mid);
  border: none;
  padding: 10px 0;
  font-size: 12px;
  text-decoration: underline;
}

.cookie-configure-panel {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cookie-configure-panel.open {
  display: flex;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-toggle-row label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.cookie-toggle-row span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 300;
}

.cookie-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  margin-top: 4px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--birch-dark);
  border-radius: 11px;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--forest-mid);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(18px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-save-btn {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  background: var(--forest-deep);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-save-btn:hover { background: var(--forest-mid); }

/* ─── CHECKOUT PAGE ─── */
.checkout-page {
  min-height: 100vh;
  background: var(--birch);
  padding-top: 68px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  min-height: calc(100vh - 68px);
}

.checkout-form-col {
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 56px) 60px;
  border-right: 1px solid var(--border);
}

.checkout-summary-col {
  background: var(--birch-mid);
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 40px) 60px;
}

.checkout-summary-toggle {
  display: none;
  width: 100%;
  background: var(--birch-mid);
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--forest-mid);
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.checkout-summary-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--forest-mid);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

.checkout-summary-toggle.open svg {
  transform: rotate(180deg);
}

.checkout-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 32px;
}

.checkout-breadcrumb a {
  color: var(--forest-mid);
  text-decoration: underline;
}

.checkout-breadcrumb span { color: var(--birch-dark); }

.checkout-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--forest-deep);
  display: block;
  margin-bottom: 32px;
  text-decoration: none;
}

.checkout-section-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.checkout-section-title:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.checkout-field {
  margin-bottom: 16px;
}

.checkout-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--birch-dark);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color var(--transition);
  appearance: none;
}

.checkout-field input:focus,
.checkout-field select:focus {
  outline: none;
  border-color: var(--forest-mid);
}

.checkout-field input.error,
.checkout-field select.error {
  border-color: #c0392b;
}

.checkout-field .field-error {
  font-size: 12px;
  color: #c0392b;
  font-weight: 400;
  margin-top: 5px;
  display: none;
}

.checkout-field .field-error.visible {
  display: block;
}

.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.checkout-checkbox-row input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--forest-mid);
  flex-shrink: 0;
}

.checkout-checkbox-row label {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.5;
}

.checkout-checkbox-row a {
  color: var(--forest-mid);
  text-decoration: underline;
}

.cod-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--birch-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 24px 0;
}

.cod-badge svg {
  width: 28px;
  height: 28px;
  stroke: var(--forest-mid);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.cod-badge p {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.cod-badge p span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 3px;
}

.checkout-submit {
  width: 100%;
  background: var(--forest-deep);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  padding: 18px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--transition);
  margin-top: 24px;
}

.checkout-submit:hover:not(:disabled) {
  background: var(--forest-mid);
}

.checkout-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* Summary column */
.summary-product {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.summary-product__img {
  width: 72px;
  height: 72px;
  background: var(--birch);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.summary-product__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.summary-product__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 4px;
}

.summary-product__variant {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

.summary-product__price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--forest-deep);
  margin-left: auto;
  white-space: nowrap;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 300;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.summary-total__label {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.summary-total__price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--forest-deep);
}

.summary-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.summary-qty label {
  font-size: 13px;
  color: var(--text-muted);
}

.summary-qty select {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

/* ─── SUCCESS MODAL ─── */
.success-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,46,26,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-modal.active {
  display: flex;
}

.success-modal__box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 56px);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: fade-up 0.4s ease forwards;
}

.success-modal__icon {
  width: 64px;
  height: 64px;
  background: var(--forest-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-modal__icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

.success-modal__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 16px;
}

.success-modal__text {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 28px;
}

.success-modal__close {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--forest-mid);
  border-bottom: 1px solid var(--forest-mid);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  padding: 4px 0;
  transition: color var(--transition);
}

.success-modal__close:hover { color: var(--forest-deep); }

/* ─── LEGAL / SIMPLE PAGES ─── */
.legal-hero {
  background: var(--forest-deep);
  padding: clamp(80px, 10vw, 120px) 0 clamp(60px, 8vw, 90px);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  margin-bottom: -40px;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.legal-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.60);
  font-weight: 300;
}

.legal-body {
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 120px);
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--forest-deep);
  margin-top: 40px;
  margin-bottom: 14px;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-body ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.legal-body ul li {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal-body strong {
  font-weight: 600;
  color: var(--ink);
}

.legal-body a {
  color: var(--forest-mid);
  text-decoration: underline;
}

/* ─── ABOUT PAGE ─── */
.about-section {
  padding: clamp(64px, 8vw, 100px) 0;
}

.about-section:nth-child(even) {
  background: var(--birch-mid);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.about-value {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.about-value h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 10px;
}

.about-value p {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ─── CONTACT PAGE ─── */
.contact-section {
  padding: clamp(64px, 8vw, 100px) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid var(--border);
}

.contact-form .checkout-field input,
.contact-form .checkout-field select,
.contact-form .checkout-field textarea {
  background: var(--birch);
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  background: var(--forest-deep);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
}

.contact-info-item__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-item__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-info-item__value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--forest-deep);
}

.contact-info-item__value a {
  color: inherit;
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}

.contact-info-item__value a:hover {
  border-color: var(--forest-mid);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__right {
    min-height: 50vw;
    height: 50vw;
  }

  .hero__bg-shape {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
    width: 60%;
  }

  .hero__image-wrap img {
    width: 100%;
  }

  .problem-cols,
  .guarantee-layout,
  .support-layout,
  .faq-layout,
  .benefits-layout,
  .product-layout,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary-col {
    order: -1;
  }

  .checkout-summary-toggle {
    display: flex;
  }

  .checkout-summary-content {
    display: none;
  }

  .checkout-summary-content.open {
    display: block;
  }

  .benefits-large-num {
    font-size: 80px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    inset: 68px 0 0;
    background: var(--birch);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 899;
  }

  .nav__links.nav__links--open {
    display: flex;
  }

  .nav__links a {
    font-size: 18px;
  }

  .nav__burger {
    display: flex;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .how-steps::before {
    display: none;
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(5, 1fr);
  }

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

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

  .product-info__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

  .about-values,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }

  .sticky-cta a {
    justify-content: center;
  }

  .cookie-banner {
    bottom: 0;
    left: 0;
    max-width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 42px;
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .checkout-summary-col {
    padding: 20px;
  }
}

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