:root {
  --color-primary: #1E293B;
  --color-primary-dark: #0F172A;
  --color-secondary: #334155;
  --color-accent: #C2410C;
  --color-accent-hover: #9A3412;
  --color-accent-soft: #FEF0E7;
  --color-bg: #FFFFFF;
  --color-bg-alt: #EDF2F8;
  --color-surface: #FFFFFF;
  --color-surface-raised: #F8FAFC;
  --color-text: #0F172A;
  --color-text-muted: #52627A;
  --color-text-invert: #F1F5F9;
  --color-border: #DCE3EC;
  --color-border-strong: #C3CEDC;
  --color-warning-bg: #FEF3C7;
  --color-warning-text: #92400E;
  --color-error-bg: #FDEDEC;
  --color-error-text: #C0392B;
  --font-heading: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, .08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, .12);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --header-h: 64px;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 .6em;
  color: var(--color-text);
  letter-spacing: -.01em;
}

p { margin: 0 0 1em; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--color-accent-hover); }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
button { font-family: inherit; cursor: pointer; }

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow { max-width: 860px; }

.auto-email { word-break: break-all; }

/* ---------------------------------------------------------------- buttons */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9375rem;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}

.btn-primary {
  background: var(--color-accent);
  color: #FFFFFF;
  border-color: var(--color-accent);
}
.btn-primary:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); color: #FFFFFF; transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-secondary:hover { background: var(--color-accent); color: #FFFFFF; }

.btn-ghost {
  background: transparent;
  color: var(--color-secondary);
  border-color: var(--color-border-strong);
}
.btn-ghost:hover { background: var(--color-surface-raised); color: var(--color-primary-dark); border-color: var(--color-secondary); }

.hero .btn-ghost,
.newsletter .btn-ghost,
.sticky-cta .btn-ghost,
.footer .btn-ghost {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, .55);
}
.hero .btn-ghost:hover,
.newsletter .btn-ghost:hover,
.sticky-cta .btn-ghost:hover,
.footer .btn-ghost:hover {
  background: rgba(255, 255, 255, .14);
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn-sm { padding: 9px 18px; font-size: .875rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ---------------------------------------------------------------- header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .2s var(--ease);
}

.header--scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.header__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -.02em;
  color: var(--color-primary-dark);
  flex-shrink: 0;
}
.header__logo:hover { color: var(--color-accent); }

.header__nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease);
}

.header__nav.is-open { max-height: 60vh; box-shadow: var(--shadow-md); }

.header__nav ul {
  list-style: none;
  margin: 0;
  padding: 8px 20px 16px;
}

.header__nav li { border-bottom: 1px solid var(--color-border); }
.header__nav li:last-child { border-bottom: 0; }

.header__nav a {
  display: block;
  padding: 12px 0;
  color: var(--color-secondary);
  font-weight: 500;
  font-size: .9375rem;
}
.header__nav a:hover, .header__nav a.is-active { color: var(--color-accent); }

.header__cta { display: none; }

.header__hamburger {
  background: transparent;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  line-height: 1;
  padding: 7px 12px;
  color: var(--color-primary-dark);
}
.header__hamburger:hover { background: var(--color-surface-raised); }

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  margin-top: var(--header-h);
  padding: 44px 0 64px;
  background-color: var(--color-primary-dark);
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, .93) 0%, rgba(30, 41, 59, .82) 55%, rgba(194, 65, 12, .55) 100%),
    url('imgs/hero-tedgetal.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-text-invert);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 44px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 44' preserveAspectRatio='none'%3E%3Cpath d='M0 44V16c180 22 360 22 540 6S900-6 1080 4s270 22 360 26v14z' fill='%23EDF2F8'/%3E%3C/svg%3E") no-repeat center/100% 100%;
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 1; width: 100%; }
.hero__content { max-width: 760px; }

.hero__title {
  font-size: clamp(1.75rem, 4.4vw, 2.75rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: .35em;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #E2E8F0;
  margin-bottom: 1em;
  max-width: 62ch;
}

.hero__lead {
  font-size: .9375rem;
  color: #CBD5E1;
  max-width: 62ch;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}

.hero__bullets li {
  position: relative;
  padding-left: 30px;
  font-size: .9375rem;
  color: #E2E8F0;
}

.hero__bullets li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #FFFFFF;
  font-size: .7rem;
  font-weight: 700;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------------------------------------------------------------- trust strip */
.trust-strip {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 18px;
}

.trust-badge { display: flex; align-items: center; gap: 10px; }
.trust-badge__icon { font-size: 1.15rem; line-height: 1; }
.trust-badge__text {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--color-secondary);
  letter-spacing: .01em;
}

/* ---------------------------------------------------------------- sections */
main > section {
  position: relative;
  padding: 60px 0;
  background: var(--color-surface);
}

main > section.section-alt { background: var(--color-bg-alt); }

.section-title {
  font-size: clamp(1.5rem, 3.4vw, 2.125rem);
  font-weight: 700;
  margin-bottom: .35em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 68ch;
  margin-bottom: 2.2em;
}

.section-footnote {
  margin-top: 28px;
  font-size: .9375rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.products-section, .benefits, .how-it-works, .features, .info-gain,
.about-brief, .reviews, .comparison, .what-you-get, .fears, .mission,
.faq, .gallery { overflow: hidden; }

.features .section-subtitle, .fears .section-subtitle,
.what-you-get .section-subtitle, .mission .section-subtitle { margin-bottom: 1.8em; }

.reviews .section-title, .gallery .section-title, .mission .section-title { max-width: 26ch; }

/* ---------------------------------------------------------------- products */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.product-card--unavailable .product-card__media img { filter: grayscale(.55); }
.product-card--unavailable .product-card__title { color: var(--color-text-muted); }

.product-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-warning-bg);
  color: var(--color-warning-text);
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
}

.product-badge--restock { background: var(--color-accent-soft); color: var(--color-accent-hover); }

.product-card__media {
  display: block;
  background: var(--color-surface-raised);
  border-bottom: 1px solid var(--color-border);
}

.product-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 16px;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.product-card__title { font-size: 1.0625rem; font-weight: 600; margin-bottom: .4em; }

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: .875rem;
}

.product-card__stars { color: #D97706; font-size: 1rem; }
.product-card__score { font-weight: 700; color: var(--color-text); }
.product-card__reviews { color: var(--color-text-muted); }

.product-card__spec {
  font-size: .8125rem;
  color: var(--color-secondary);
  background: var(--color-surface-raised);
  border-left: 3px solid var(--color-border-strong);
  padding: 8px 10px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 12px;
}

.product-card__description {
  font-size: .9375rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__description.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.product-card__more {
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0 0 4px;
  margin-bottom: 12px;
  color: var(--color-accent);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: underline;
}
.product-card__more:hover { color: var(--color-accent-hover); }

.product-card__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}

.product-card__highlights li {
  position: relative;
  padding-left: 20px;
  font-size: .875rem;
  color: var(--color-secondary);
}

.product-card__highlights li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--color-accent);
}

.product-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: #FFFFFF;
  font-weight: 600;
  font-size: .9375rem;
  transition: background-color .2s var(--ease);
}
.product-card__cta:hover { background: var(--color-accent); color: #FFFFFF; }

.category-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.category-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  color: var(--color-secondary);
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s var(--ease);
}
.category-chip:hover { border-color: var(--color-accent); color: var(--color-accent); background: var(--color-accent-soft); }

.category-chips__all { padding: 8px 18px; border-radius: 999px; font-size: .875rem; }

/* ---------------------------------------------------------------- benefits */
.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15, 23, 42, .07) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .6;
  pointer-events: none;
}

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

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

.benefit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  background: var(--color-accent-soft);
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.benefit-card__title { font-size: 1.0625rem; font-weight: 600; margin-bottom: .5em; }
.benefit-card__text { font-size: .9375rem; color: var(--color-text-muted); margin: 0; }

/* ---------------------------------------------------------------- how it works */
.how-it-works::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(15, 23, 42, .05) 0 1px, transparent 1px 16px);
  pointer-events: none;
}

.how-it-works > .container { position: relative; z-index: 1; }

.steps-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.step-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.step-card__title { font-size: 1rem; font-weight: 600; margin-bottom: .45em; }
.step-card__text { font-size: .9375rem; color: var(--color-text-muted); margin: 0; }

/* ---------------------------------------------------------------- features */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
}
.feature-row:first-of-type { border-top: 0; padding-top: 8px; }

.feature-row__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.feature-row__body { min-width: 0; }
.feature-row__title { font-size: clamp(1.15rem, 2.6vw, 1.5rem); font-weight: 600; }
.feature-row__text { font-size: .9375rem; color: var(--color-text-muted); }

.feature-row__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}

.feature-row__list li {
  position: relative;
  padding-left: 26px;
  font-size: .9375rem;
  color: var(--color-secondary);
}

.feature-row__list li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* ---------------------------------------------------------------- information gain */
.info-gain::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(30, 41, 59, .06) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.info-gain > .container { position: relative; z-index: 1; }

.info-gain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.info-gain-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}

.info-gain-card__number {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-accent-hover);
  margin-bottom: .4em;
  line-height: 1.25;
}

.info-gain-card__claim { font-size: .9375rem; color: var(--color-text); margin-bottom: .7em; }
.info-gain-card__gap { font-size: .875rem; color: var(--color-text-muted); margin-bottom: .7em; }

.info-gain-card__proof {
  font-size: .8125rem;
  color: var(--color-secondary);
  font-style: italic;
  margin: 0;
  padding-top: 10px;
  border-top: 1px dashed var(--color-border);
}

/* ---------------------------------------------------------------- about */
.about-brief__inner, .about-story__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.about-brief__media img, .about-story__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-brief__body p, .about-story__body p { font-size: .9375rem; color: var(--color-text-muted); }
.about-story { padding: 60px 0; background: var(--color-surface); }
.about-values, .about-stats { padding: 60px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}

.stat-card__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-hover);
  margin-bottom: 4px;
}

.stat-card__label { display: block; font-size: .8125rem; color: var(--color-text-muted); }

/* ---------------------------------------------------------------- reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}

.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.review-card__stars { color: #D97706; font-size: .95rem; letter-spacing: 1px; }

.review-card__badge {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #166534;
  background: #DCFCE7;
  padding: 4px 9px;
  border-radius: 999px;
}

.review-card__text { font-size: .9375rem; color: var(--color-text-muted); }

.review-card__meta {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  font-size: .8125rem;
  color: var(--color-text-muted);
}

.review-card__name { font-weight: 700; color: var(--color-text); }
.review-card__product { color: var(--color-secondary); }

/* ---------------------------------------------------------------- comparison */
.comparison::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='40' viewBox='0 0 120 40'%3E%3Cpath d='M0 20c15-12 30-12 45 0s30 12 45 0 22-9 30-4' fill='none' stroke='%230F172A' stroke-width='1.4' opacity='.05'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.comparison > .container { position: relative; z-index: 1; }

.comparison__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: .875rem;
}

.comparison-table th, .comparison-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.comparison-table thead th {
  background: var(--color-primary-dark);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 600;
}

.comparison-table tbody th {
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-surface-raised);
  width: 22%;
}

.comparison-table td { color: var(--color-text-muted); }
.comparison-table tbody tr:last-child th, .comparison-table tbody tr:last-child td { border-bottom: 0; }

.comparison-table .is-brand { background: var(--color-accent-soft); color: var(--color-text); font-weight: 600; }
.comparison-table thead .is-brand { background: var(--color-accent); color: #FFFFFF; }

/* ---------------------------------------------------------------- timeline */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.timeline__item {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 20px 22px 24px;
  border-left: 4px solid var(--color-accent);
}

.timeline__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-accent-hover);
  margin-bottom: 8px;
}

.timeline__text { font-size: .9375rem; color: var(--color-text-muted); margin: 0; }

/* ---------------------------------------------------------------- fears */
.fears-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.fear-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
}

.fear-card__title { font-size: 1.0625rem; font-weight: 600; margin-bottom: .5em; }
.fear-card__text { font-size: .9375rem; color: var(--color-text-muted); margin-bottom: 12px; }

.fear-card__stat {
  margin: 0;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--color-warning-text);
  background: var(--color-warning-bg);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

/* ---------------------------------------------------------------- mission */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-accent-soft);
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.value-card__title { font-size: 1.0625rem; font-weight: 600; margin-bottom: .5em; }
.value-card__text { font-size: .9375rem; color: var(--color-text-muted); margin: 0; }

/* ---------------------------------------------------------------- faq */
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='50' viewBox='0 0 140 50'%3E%3Cpath d='M0 25c17-14 35-14 52 0s35 14 52 0 24-10 36-5' fill='none' stroke='%231E293B' stroke-width='1.5' opacity='.04'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.faq > .container { position: relative; z-index: 1; }

.faq-list, .faq-more { display: grid; gap: 12px; }
.faq-more { margin-top: 12px; }

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq-item[open] { border-color: var(--color-border-strong); box-shadow: var(--shadow-sm); }

.faq-item > summary {
  cursor: pointer;
  list-style: none;
}
.faq-item > summary::-webkit-details-marker { display: none; }

.faq-question {
  position: relative;
  display: block;
  padding: 16px 46px 16px 18px;
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--color-text);
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1;
}

.faq-item[open] .faq-question::after { content: "\2212"; }
.faq-item[open] .faq-question { color: var(--color-accent-hover); }

.faq-answer { padding: 0 18px 18px; }
.faq-answer p { margin: 0; font-size: .9375rem; color: var(--color-text-muted); }

.faq-toggle {
  display: block;
  width: 100%;
  margin: 20px 0 0;
  padding: 14px 22px;
  background: transparent;
  border: 2px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9375rem;
  color: var(--color-secondary);
  transition: all .2s var(--ease);
}
.faq-toggle:hover { border-color: var(--color-accent); color: var(--color-accent); background: var(--color-accent-soft); }

/* ---------------------------------------------------------------- gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .35s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item__caption {
  padding: 10px 14px;
  font-size: .8125rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, .93);
}

.lightbox__figure { margin: 0; max-width: 900px; text-align: center; }
.lightbox__image { max-width: 100%; max-height: 78vh; border-radius: var(--radius-md); margin: 0 auto; }
.lightbox__caption { margin-top: 14px; color: #E2E8F0; font-size: .9375rem; }

.lightbox__close {
  position: absolute;
  top: 18px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .12);
  color: #FFFFFF;
  font-size: 1.6rem;
  line-height: 1;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .24); }

/* ---------------------------------------------------------------- newsletter */
.newsletter {
  position: relative;
  background-color: var(--color-primary-dark) !important;
  background-image: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #7C2D12 100%);
  color: var(--color-text-invert);
  text-align: center;
  overflow: hidden;
}

.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 5px);
  pointer-events: none;
}

.newsletter > .container { position: relative; z-index: 1; }
.newsletter .section-title { color: #FFFFFF; }
.newsletter .section-subtitle { color: #E2E8F0; margin-left: auto; margin-right: auto; }

.newsletter-form {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .95);
  color: var(--color-text);
  font-size: 1rem;
  font-family: var(--font-body);
}

.newsletter-form input::placeholder { color: #64748B; }

.newsletter-message {
  max-width: 520px;
  margin: 14px auto 0;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  text-align: left;
}

.newsletter-message--error {
  color: var(--color-error-text);
  background: var(--color-error-bg);
  border: 1px solid var(--color-error-text);
}

.newsletter-note { margin: 16px 0 0; font-size: .8125rem; color: #CBD5E1; }

/* ---------------------------------------------------------------- page hero */
.page-hero {
  margin-top: var(--header-h);
  padding: 44px 0 32px;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.page-hero--about { background: linear-gradient(160deg, #EDF2F8 0%, #E2E9F2 100%); }
.page-hero--contact { background: linear-gradient(160deg, #EDF2F8 0%, #FEF0E7 130%); }
.page-hero--legal { background: var(--color-bg-alt); }

.page-hero__back {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-secondary);
}
.page-hero__back:hover { color: var(--color-accent); }

.page-hero__title { font-size: clamp(1.6rem, 4.2vw, 2.5rem); font-weight: 700; margin-bottom: .3em; }
.page-hero__subtitle { font-size: 1rem; color: var(--color-text-muted); max-width: 62ch; margin: 0; }

/* ---------------------------------------------------------------- contact page */
.contact-page { padding: 60px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

.contact-intro { font-size: .9375rem; color: var(--color-text-muted); }

.contact-form { display: grid; gap: 16px; }

.form-group { display: grid; gap: 6px; }

.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.form-required { color: var(--color-accent); }

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color .2s var(--ease);
}

.form-group input:focus, .form-group textarea:focus { border-color: var(--color-accent); outline-offset: 1px; }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-message {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
}

.form-message--error {
  color: var(--color-error-text);
  background: var(--color-error-bg);
  border: 1px solid var(--color-error-text);
}

.contact-form-col, .contact-info-col { min-width: 0; }

.contact-details { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 18px; }

.contact-details li {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}
.contact-details li:last-child { border-bottom: 0; padding-bottom: 0; }

.contact-details__label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.contact-details__value { font-size: .9375rem; color: var(--color-text); font-style: normal; }

.contact-subheading { font-size: 1.0625rem; font-weight: 600; margin-bottom: .5em; }
.contact-note { font-size: .9375rem; color: var(--color-text-muted); margin: 0; }

/* ---------------------------------------------------------------- legal pages */
.legal-page { padding: 52px 0 60px; }

.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.8em;
  padding-top: .6em;
  border-top: 1px solid var(--color-border);
}
.legal-body h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }

.legal-body p { font-size: .9375rem; color: var(--color-text-muted); }

/* ---------------------------------------------------------------- footer */
.footer {
  position: relative;
  background: var(--color-primary-dark);
  color: #CBD5E1;
  padding: 56px 0 28px;
}

.footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -1px;
  height: 40px;
  transform: translateY(-100%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0 40V10c200 26 400 26 600 8s340-24 500-8 240 24 340 26v4z' fill='%230F172A'/%3E%3C/svg%3E") no-repeat center/100% 100%;
  pointer-events: none;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer__col { min-width: 0; }
.footer__col--brand { max-width: 40ch; }

.footer__logo {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer__tagline { font-size: .875rem; color: #94A3B8; }

.footer__address {
  font-style: normal;
  font-size: .875rem;
  line-height: 1.8;
  color: #CBD5E1;
  margin-bottom: 12px;
}

.footer__address a { color: #CBD5E1; }
.footer__address a:hover { color: #FFFFFF; }

.footer__hours { font-size: .8125rem; color: #94A3B8; margin: 0; }

.footer__heading {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer__list a { font-size: .875rem; color: #CBD5E1; }
.footer__list a:hover { color: #FFFFFF; }

.footer__social { display: flex; flex-wrap: wrap; gap: 10px; }

.footer__social a {
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-sm);
  font-size: .8125rem;
  color: #CBD5E1;
}
.footer__social a:hover { background: rgba(255, 255, 255, .1); color: #FFFFFF; }

.footer__languages { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 20px; }
.footer__languages:empty { display: none; }
.footer__languages a { font-size: .8125rem; color: #CBD5E1; }

.footer__bottom { padding-top: 24px; }
.footer__copyright { font-size: .8125rem; color: #94A3B8; margin: 0 0 8px; }
.footer__bottom p { font-size: .75rem; color: #8595AB; margin: 0; }

/* ---------------------------------------------------------------- cookie banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1100;
  background: rgba(15, 23, 42, .97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 12px 0;
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.cookie-banner__text { margin: 0; font-size: .8125rem; color: #E2E8F0; }
.cookie-banner__text a { color: #FDBA74; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; }

/* ---------------------------------------------------------------- sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, .96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 10px 0;
}

.sticky-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.sticky-cta__text { margin: 0; font-size: .8125rem; color: #E2E8F0; font-weight: 500; }

.sticky-cta__actions { display: flex; align-items: center; gap: 10px; width: 100%; }
.sticky-cta__actions .btn-primary { flex: 1; }

.sticky-cta__close {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, .28);
  background: transparent;
  color: #E2E8F0;
  font-size: 1.25rem;
  line-height: 1;
}
.sticky-cta__close:hover { background: rgba(255, 255, 255, .12); color: #FFFFFF; }

/* ---------------------------------------------------------------- scroll reveal */
.benefit-card, .step-card, .info-gain-card, .review-card,
.fear-card, .value-card, .timeline__item, .feature-row, .gallery-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.benefit-card.visible, .step-card.visible, .info-gain-card.visible, .review-card.visible,
.fear-card.visible, .value-card.visible, .timeline__item.visible, .feature-row.visible,
.gallery-item.visible { opacity: 1; transform: none; }

/* ---------------------------------------------------------------- breakpoints */
@media (min-width: 600px) {
  .newsletter-form { grid-template-columns: 1fr auto; }
  .products-grid, .benefits-grid, .reviews-grid, .fears-grid,
  .values-grid, .info-gain-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .cookie-banner__inner, .sticky-cta__inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .sticky-cta__actions { width: auto; }
  .sticky-cta__actions .btn-primary { flex: none; }
}

@media (min-width: 768px) {
  main > section { padding: 80px 0; }
  .about-story, .about-values, .about-stats, .contact-page { padding: 80px 0; }
  .legal-page { padding: 64px 0 80px; }
  .container { padding: 0 40px; }
  .trust-strip__inner { grid-template-columns: repeat(4, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-row { grid-template-columns: repeat(4, 1fr); }
  .footer__content { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 60px 0 44px; }
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    padding: 44px 0;
  }
  .feature-row--reverse .feature-row__media { order: 2; }
  .about-brief__inner { grid-template-columns: 380px 1fr; gap: 44px; }
  .about-story__inner { grid-template-columns: 1fr 380px; gap: 44px; }
  .about-story__media { order: 2; }
  .contact-grid { grid-template-columns: 1.15fr .85fr; gap: 48px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .header__nav {
    position: static;
    max-height: none;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .header__nav ul { display: flex; gap: 26px; padding: 0; }
  .header__nav li { border: 0; }
  .header__nav a { padding: 0; }
  .header__hamburger { display: none; }
  .header__cta { display: block; }

  .hero { padding: 40px 0 56px; }
  .hero__content {
    max-width: none;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    column-gap: 56px;
    align-items: start;
    grid-template-areas:
      "title    lead"
      "subtitle bullets"
      "actions  bullets";
  }
  .hero__title { grid-area: title; margin-bottom: .25em; }
  .hero__subtitle { grid-area: subtitle; margin-bottom: .8em; }
  .hero__lead { grid-area: lead; margin-bottom: 0; }
  .hero__bullets { grid-area: bullets; margin-bottom: 0; align-self: end; }
  .hero__actions { grid-area: actions; }

  .products-grid, .benefits-grid, .reviews-grid, .info-gain-grid { grid-template-columns: repeat(3, 1fr); }
  .fears-grid, .values-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .comparison-table { min-width: 100%; }
  .footer__content { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
}

@media (min-width: 1200px) {
  .container { padding: 0 24px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

@media (min-width: 1600px) {
  .container { max-width: 1320px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .benefit-card, .step-card, .info-gain-card, .review-card, .fear-card,
  .value-card, .timeline__item, .feature-row, .gallery-item { opacity: 1; transform: none; }
}
