:root {
  --color-primary: #F97316;
  --color-primary-dark: #C2410C;
  --color-primary-deep: #7C2D12;
  --color-accent: #2563EB;
  --color-accent-dark: #1D4ED8;
  --color-bg: #FFFFFF;
  --color-alt: #FFF3E4;
  --color-cream: #FFF7ED;
  --color-surface: #FFFFFF;
  --color-ink: #16233A;
  --color-ink-soft: #24354F;
  --color-text: #1F2937;
  --color-muted: #5B5148;
  --color-border: #F1DCC4;
  --color-border-strong: #E7C9A6;
  --color-good: #166534;
  --color-warn: #B45309;
  --color-warn-bg: #FEF3C7;
  --color-error: #C0392B;
  --color-error-bg: #FDEDEC;
  --font-heading: 'Rubik', 'Trebuchet MS', sans-serif;
  --font-body: 'Nunito Sans', 'Segoe UI', system-ui, sans-serif;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 6px rgba(124, 45, 18, .08);
  --shadow-md: 0 6px 18px rgba(124, 45, 18, .10), 0 1px 3px rgba(124, 45, 18, .08);
  --shadow-lg: 0 16px 40px rgba(124, 45, 18, .16), 0 2px 6px rgba(124, 45, 18, .08);
  --shadow-inset: inset 0 2px 0 rgba(255, 255, 255, .7);
  --header-h: 72px;
}

*, *::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 { font-family: var(--font-heading); line-height: 1.2; margin: 0 0 .5em; color: var(--color-ink); }
p { margin: 0 0 1em; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent-dark); text-decoration: none; }
a:hover { color: var(--color-primary-dark); }
ul, ol { margin: 0 0 1em; padding-left: 1.1rem; }

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

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

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 26px; height: 26px; display: block; }

section { padding: 60px 0; position: relative; background: var(--color-bg); }
.section-alt { background: var(--color-alt); }

.section-title { font-size: clamp(1.6rem, 4vw, 2.35rem); font-weight: 800; letter-spacing: -.01em; margin-bottom: .35em; }
.section-subtitle {
  font-size: 1.02rem; color: var(--color-muted); max-width: 62ch; margin: 0 0 2rem;
}
.section-cta { margin: 2.2rem 0 0; text-align: center; }

/* ---------------------------------------------------------------- buttons */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-heading); font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; text-align: center; transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn-primary { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--color-accent-dark); color: #fff; transform: translateY(-2px); }
.btn-secondary { background: #fff; color: var(--color-accent-dark); border-color: var(--color-accent); }
.btn-secondary:hover { background: var(--color-accent); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--color-ink); border-color: var(--color-border-strong); }
.btn-ghost:hover { background: var(--color-cream); color: var(--color-ink); }
.btn-sm { padding: 9px 17px; font-size: .88rem; min-height: 44px; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }

.hero .btn-ghost, .newsletter .btn-ghost, .sticky-cta .btn-ghost, .cookie-banner .btn-ghost {
  color: #fff; border-color: rgba(255, 255, 255, .65);
}
.hero .btn-ghost:hover, .newsletter .btn-ghost:hover, .sticky-cta .btn-ghost:hover, .cookie-banner .btn-ghost:hover {
  background: rgba(255, 255, 255, .16); color: #fff;
}

/* ---------------------------------------------------------------- header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header--scrolled { box-shadow: var(--shadow-md); }
.header__inner { display: flex; align-items: center; gap: 14px; min-height: var(--header-h); }
.header__logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem;
  color: var(--color-ink); letter-spacing: -.02em;
}
.header__logo-mark {
  display: inline-grid; place-items: center; width: 36px; height: 36px;
  border-radius: 12px; background: var(--color-primary); color: #fff;
  font-weight: 800; box-shadow: var(--shadow-inset), var(--shadow-sm);
}
.header__nav { margin-left: auto; }
.header__nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.header__nav a {
  font-family: var(--font-heading); font-weight: 500; font-size: .95rem;
  color: var(--color-ink); padding: 6px 2px; border-bottom: 2px solid transparent;
}
.header__nav a:hover, .header__nav a.is-active { color: var(--color-primary-dark); border-bottom-color: var(--color-primary); }
.header__cta { margin-left: 8px; }
.header__hamburger {
  display: none; margin-left: auto; width: 44px; height: 44px;
  background: transparent; border: 2px solid var(--color-border-strong);
  border-radius: 12px; cursor: pointer; padding: 10px 9px;
}
.header__hamburger span { display: block; height: 2px; background: var(--color-ink); border-radius: 2px; margin: 4px 0; transition: transform .2s ease, opacity .2s ease; }
.header__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative; min-height: 50vh; margin-top: var(--header-h);
  background: var(--color-ink); color: #fff; overflow: hidden;
  padding: 38px 0 62px;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .46; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(22, 35, 58, .90) 0%, rgba(124, 45, 18, .70) 58%, rgba(249, 115, 22, .48) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 940px; }
.hero__title {
  color: #fff; font-size: clamp(1.55rem, 5.6vw, 3rem); font-weight: 800; line-height: 1.14;
  letter-spacing: -.02em; margin-bottom: .4em; text-wrap: balance;
}
.hero__subtitle { font-size: clamp(.95rem, 1.8vw, 1.12rem); color: #FFEBD8; max-width: 74ch; margin-bottom: .8rem; line-height: 1.52; }
.hero__lead { color: #F6E3D2; max-width: 60ch; font-size: .88rem; margin-bottom: 1rem; line-height: 1.55; }
.hero__bullets { list-style: none; padding: 0; margin: 0 0 1.3rem; display: grid; gap: .45rem; }
.hero__bullets li { display: flex; gap: .55rem; align-items: flex-start; color: #FFF3E6; font-size: .9rem; line-height: 1.5; }
.hero__tick { width: 21px; height: 21px; flex: 0 0 21px; margin-top: 3px; color: #FDBA74; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.4rem; }
.hero__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 0; max-width: 720px; }
.hero__stat {
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-md); padding: 9px 14px;
}
.hero__stat dt { font-family: var(--font-heading); font-weight: 800; font-size: 1.22rem; color: #FFD9B3; line-height: 1.2; }
.hero__stat dd { margin: 0; font-size: .74rem; color: #FFEEDD; text-transform: uppercase; letter-spacing: .04em; }
.hero__copy { display: grid; gap: 0; }
.hero::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 46px; z-index: 3;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 46' preserveAspectRatio='none'><path d='M0 46V18c140 22 280 26 420 12S720-4 900 6s220 20 300 24v16Z' fill='%23FFF3E4'/></svg>") bottom center / 100% 100% no-repeat;
}

/* ---------------------------------------------------------------- products */
.products-section { padding-top: 66px; }
.products-grid {
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
.product-card {
  background: var(--color-surface); border: 2px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 18px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card__media {
  display: block; border-radius: var(--radius-md); overflow: hidden;
  background: var(--color-cream); margin-bottom: 14px;
}
.product-card__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .3s ease; }
.product-card__media:hover img { transform: scale(1.04); }
.product-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
.product-card__rating { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: .5rem; }
.rating__stars { color: var(--color-primary); letter-spacing: 1px; font-size: 1rem; }
.rating__dim { color: var(--color-border-strong); }
.rating__value { font-family: var(--font-heading); font-weight: 700; color: var(--color-ink); }
.product-card__reviews { font-size: .82rem; color: var(--color-muted); }
.product-card__spec {
  font-size: .82rem; color: var(--color-ink-soft); background: var(--color-cream);
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  padding: 7px 10px; margin-bottom: .7rem;
}
.product-card__description {
  font-size: .93rem; color: var(--color-text); margin-bottom: .35rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card__description.is-expanded { -webkit-line-clamp: unset; overflow: visible; }
.product-card__more {
  align-self: flex-start; background: none; border: 0; padding: 4px 0 10px;
  min-height: 44px; display: inline-flex; align-items: center;
  color: var(--color-accent-dark); font-family: var(--font-body); font-size: .9rem;
  font-weight: 700; cursor: pointer;
}
.product-card__more:hover { color: var(--color-primary-dark); text-decoration: underline; }
.product-card__highlights { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: .45rem; }
.product-card__highlights li { display: flex; gap: .5rem; align-items: flex-start; font-size: .88rem; color: var(--color-muted); }
.product-card__tick { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 3px; color: var(--color-good); }
.product-card__cta {
  margin-top: auto; display: block; text-align: center; background: var(--color-accent);
  color: #fff; font-family: var(--font-heading); font-weight: 600;
  padding: 12px 18px; border-radius: var(--radius-pill); box-shadow: var(--shadow-md);
  transition: background-color .18s ease, transform .18s ease;
}
.product-card__cta:hover { background: var(--color-accent-dark); color: #fff; transform: translateY(-2px); }

.product-badge {
  display: inline-block; border-radius: var(--radius-pill); padding: 4px 10px;
  font-size: .8125rem; font-weight: 600; background: var(--color-warn-bg); color: var(--color-warn);
  margin-bottom: .5rem;
}
.product-badge--restock { background: var(--color-warn-bg); color: var(--color-warn); }
.product-card--unavailable img { filter: grayscale(.55); }
.product-card--unavailable .product-card__title { color: var(--color-muted); }

.category-chips {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 34px; padding-top: 26px; border-top: 1px dashed var(--color-border-strong);
}
.category-chip {
  display: inline-flex; align-items: center; padding: 8px 16px;
  border: 1px solid var(--color-border-strong); border-radius: var(--radius-pill);
  background: #fff; color: var(--color-ink); font-size: .9rem; font-weight: 600;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.category-chip:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.category-chips__all { padding: 8px 18px; font-size: .9rem; }

/* ---------------------------------------------------------------- benefits */
.benefits::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(124, 45, 18, .07) 1px, transparent 1px);
  background-size: 24px 24px;
}
.benefits .container { position: relative; z-index: 1; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.benefit-card {
  background: var(--color-surface); border: 2px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-card__icon {
  display: inline-grid; place-items: center; width: 52px; height: 52px; margin-bottom: 14px;
  border-radius: 16px; background: var(--color-cream); color: var(--color-primary-dark);
  box-shadow: var(--shadow-inset);
}
.benefit-card__title { font-size: 1.08rem; font-weight: 700; }
.benefit-card__text { margin: 0; color: var(--color-muted); font-size: .95rem; }

/* ---------------------------------------------------------------- how it works */
.how-it-works::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(45deg, rgba(124, 45, 18, .05) 0 1px, transparent 1px 16px);
}
.how-it-works .container { position: relative; z-index: 1; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 20px; counter-reset: step; }
.step { background: #fff; border: 2px solid var(--color-border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.step__number {
  display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 12px;
  border-radius: var(--radius-pill); background: var(--color-primary); color: #fff;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; box-shadow: var(--shadow-inset), var(--shadow-sm);
}
.step__title { font-size: 1.05rem; font-weight: 700; margin-bottom: .3rem; }
.step__text { margin: 0; color: var(--color-muted); font-size: .94rem; }

/* ---------------------------------------------------------------- features */
.features { display: grid; gap: 42px; }
.feature { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: center; }
.feature__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--color-cream); }
.feature__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature__title { font-size: clamp(1.2rem, 2.6vw, 1.6rem); font-weight: 700; }
.feature__text { color: var(--color-text); font-size: 1rem; }
.feature__list { list-style: none; padding: 0; margin: 0 0 1.3rem; display: grid; gap: .55rem; }
.feature__list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .94rem; color: var(--color-muted); }
.feature__tick { width: 19px; height: 19px; flex: 0 0 19px; margin-top: 3px; color: var(--color-primary); }
.feature__body { min-width: 0; }

/* ---------------------------------------------------------------- information gain */
.info-gain-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.info-gain-card {
  background: #fff; border: 2px solid var(--color-border); border-left: 6px solid var(--color-primary);
  border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm);
}
.info-gain-card__number {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.32rem;
  color: var(--color-primary-dark); margin-bottom: .5rem; line-height: 1.25;
}
.info-gain-card__claim { font-size: .95rem; margin-bottom: .6rem; }
.info-gain-card__gap { font-size: .86rem; color: var(--color-muted); margin-bottom: .6rem; }
.info-gain-card__proof {
  display: inline-block; margin: 0; font-size: .76rem; text-transform: uppercase; letter-spacing: .05em;
  background: var(--color-cream); color: var(--color-primary-dark);
  border: 1px solid var(--color-border-strong); border-radius: var(--radius-pill); padding: 3px 11px;
}

/* ---------------------------------------------------------------- about brief */
.about-brief__grid, .about-story__grid { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: start; }
.about-brief__media img, .about-story__media img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%;
  aspect-ratio: 1 / 1; object-fit: cover;
}
.about-brief__body p, .about-story__body p { font-size: 1rem; }
.about-brief__body .btn-secondary, .about-story__body .btn-secondary { margin-top: .6rem; }

/* ---------------------------------------------------------------- reviews */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.review-card {
  background: #fff; border: 2px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.review-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: .7rem; }
.review-card__stars { color: var(--color-primary); letter-spacing: 1px; }
.review-card__score { font-size: .82rem; color: var(--color-muted); }
.review-card__text { font-size: .94rem; margin-bottom: 1rem; }
.review-card__meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: auto 0 .4rem; }
.review-card__name { font-family: var(--font-heading); font-weight: 700; color: var(--color-ink); }
.review-card__badge {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  background: var(--color-good); color: #fff; border-radius: var(--radius-pill); padding: 3px 10px;
}
.review-card__product { margin: 0; font-size: .82rem; color: var(--color-muted); }

/* ---------------------------------------------------------------- comparison */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 2px solid var(--color-border); background: #fff; box-shadow: var(--shadow-sm); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 660px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--color-border); font-size: .92rem; }
.compare-table thead th { background: var(--color-ink); color: #fff; font-family: var(--font-heading); font-size: .92rem; }
.compare-table tbody th { font-family: var(--font-heading); font-weight: 600; color: var(--color-ink); width: 24%; }
.compare-table tbody tr:nth-child(even) { background: var(--color-cream); }
.compare-table__brand { background: rgba(249, 115, 22, .10); font-weight: 600; color: var(--color-ink); }
.compare-table thead .compare-table__brand { background: var(--color-primary); color: #fff; }
.compare-cell__brands { display: block; margin-top: .5rem; font-size: .8rem; color: var(--color-muted); }

/* ---------------------------------------------------------------- timeline */
.timeline { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 18px; }
.timeline__item {
  position: relative; background: #fff; border: 2px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm);
}
.timeline__label {
  display: inline-block; font-family: var(--font-heading); font-weight: 800; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .06em; color: #fff; background: var(--color-primary);
  border-radius: var(--radius-pill); padding: 4px 14px; margin-bottom: .7rem;
}
.timeline__text { margin: 0; font-size: .95rem; color: var(--color-text); }

/* ---------------------------------------------------------------- fears */
.fears-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.fear-card {
  background: #fff; border: 2px solid var(--color-border); border-top: 5px solid var(--color-warn);
  border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm);
}
.fear-card__title { font-size: 1.04rem; font-weight: 700; }
.fear-card__text { margin: 0; font-size: .94rem; color: var(--color-muted); }
.fear-card__stat {
  margin: .8rem 0 0; font-size: .82rem; color: var(--color-warn);
  background: var(--color-warn-bg); border-radius: var(--radius-sm); padding: 7px 11px;
}

/* ---------------------------------------------------------------- use cases */
.use-cases-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.use-case { background: #fff; border: 2px solid var(--color-border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); }
.use-case__icon {
  display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 12px;
  border-radius: 14px; background: var(--color-cream); color: var(--color-primary-dark); box-shadow: var(--shadow-inset);
}
.use-case__title { font-size: 1.02rem; font-weight: 700; }
.use-case__text { margin: 0; font-size: .93rem; color: var(--color-muted); }

/* ---------------------------------------------------------------- faq */
.faq::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='40' viewBox='0 0 120 40'><path d='M0 20c15-14 30-14 45 0s30 14 45 0 30-14 30 0' fill='none' stroke='%237C2D12' stroke-opacity='.09' stroke-width='2'/></svg>") repeat;
}
.faq .container { position: relative; z-index: 1; }
.faq-list, .faq-more { display: grid; gap: 12px; }
.faq-more { margin-top: 12px; }
.faq-item {
  background: #fff; border: 2px solid var(--color-border); border-radius: var(--radius-md);
  padding: 4px 18px; box-shadow: var(--shadow-sm);
}
.faq-item[open] { border-color: var(--color-border-strong); box-shadow: var(--shadow-md); }
.faq-item > summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--color-ink);
  padding: 14px 34px 14px 0; position: relative;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-question::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--color-primary); line-height: 1;
}
.faq-item[open] .faq-question::after { content: "\2212"; }
.faq-answer { padding: 0 0 14px; }
.faq-answer p { margin: 0; font-size: .95rem; color: var(--color-muted); }
.faq-toggle {
  display: block; margin: 20px auto 0; background: #fff; border: 2px solid var(--color-accent);
  color: var(--color-accent-dark); font-family: var(--font-heading); font-weight: 600;
  padding: 13px 26px; min-height: 46px; border-radius: var(--radius-pill); cursor: pointer;
  transition: background-color .18s ease, color .18s ease;
}
.faq-toggle:hover { background: var(--color-accent); color: #fff; }
.faq-closer { margin: 22px 0 0; text-align: center; color: var(--color-muted); font-size: .95rem; }

/* ---------------------------------------------------------------- gallery */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.gallery-item { margin: 0; }
.gallery-item__btn {
  display: block; width: 100%; padding: 0; border: 2px solid var(--color-border);
  border-radius: var(--radius-md); overflow: hidden; background: var(--color-cream);
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.gallery-item__btn img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .3s ease; }
.gallery-item__btn:hover img { transform: scale(1.05); }
.gallery-item__caption { margin-top: .5rem; font-size: .84rem; color: var(--color-muted); }

.lightbox {
  position: fixed; inset: 0; z-index: 120; background: rgba(15, 20, 30, .92);
  display: grid; place-items: center; padding: 24px;
}
.lightbox__figure { margin: 0; max-width: 900px; }
.lightbox__img { max-height: 78vh; width: auto; border-radius: var(--radius-md); }
.lightbox__caption { color: #fff; text-align: center; margin-top: 12px; font-size: .92rem; }
.lightbox__close {
  position: absolute; top: 18px; right: 20px; width: 46px; height: 46px;
  background: rgba(255, 255, 255, .14); color: #fff; border: 0; border-radius: var(--radius-pill);
  font-size: 1.8rem; line-height: 1; cursor: pointer;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .28); }

/* ---------------------------------------------------------------- newsletter */
.newsletter {
  background-color: var(--color-primary-deep);
  background-image: linear-gradient(135deg, var(--color-primary-deep) 0%, #9A3412 55%, var(--color-primary-dark) 100%);
  color: #fff; overflow: hidden;
}
.newsletter::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .28;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .16) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .16) 0 1px, transparent 1px 5px);
}
.newsletter .container { position: relative; z-index: 1; max-width: 780px; text-align: center; }
.newsletter .section-title { color: #fff; }
.newsletter .section-subtitle { color: #FFE7D2; margin-left: auto; margin-right: auto; }
.newsletter-form { max-width: 560px; margin: 0 auto; text-align: left; }
.newsletter-form__label { display: block; font-size: .85rem; color: #FFE7D2; margin-bottom: 6px; font-weight: 600; }
.newsletter-form__row { display: grid; grid-template-columns: 1fr; gap: 10px; }
.newsletter-form__input {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-pill); border: 2px solid transparent;
  font-family: var(--font-body); font-size: 1rem; color: var(--color-text); background: #fff;
}
.newsletter-form__input:focus { border-color: #FDBA74; outline: none; }
.newsletter-form__note { margin: .8rem 0 0; font-size: .82rem; color: #FFE0C6; }
.newsletter-message {
  margin-top: 12px; padding: 10px 14px; border-radius: 6px; font-size: .875rem;
}
.newsletter-message--error { color: var(--color-error); background: var(--color-error-bg); border: 1px solid var(--color-error); }

/* ---------------------------------------------------------------- footer */
.footer {
  background: var(--color-ink); color: #E8EDF5; padding: 56px 0 26px; position: relative;
}
.footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 40px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'><path d='M0 0h1200v10c-160 22-320 26-520 14S260 6 0 26Z' fill='%2316233A'/></svg>") top center / 100% 100% no-repeat;
  transform: translateY(-99%);
}
.footer__content { display: grid; grid-template-columns: 1fr; gap: 30px; }
.footer__logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; color: #fff; margin-bottom: .8rem; }
.footer__tagline { color: #C4D0E2; font-size: .92rem; }
.footer__address { font-style: normal; color: #C4D0E2; font-size: .9rem; margin-bottom: .8rem; }
.footer__contact { font-size: .9rem; margin-bottom: .8rem; }
.footer__contact a, .footer__links a, .footer__socials a { color: #FFD9B3; }
.footer__contact a:hover, .footer__links a:hover, .footer__socials a:hover { color: #fff; text-decoration: underline; }
.footer__hours { font-size: .88rem; color: #C4D0E2; }
.footer__heading { font-size: .95rem; text-transform: uppercase; letter-spacing: .07em; color: #fff; margin-bottom: .9rem; }
.footer__links, .footer__socials { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; font-size: .92rem; }
.footer__brand { max-width: 320px; }
.footer__col { min-width: 0; }
.footer__social { min-width: 0; }
.footer__languages { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.footer__languages:empty { display: none; }
.footer__bottom {
  margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .82rem; color: #A9B7CC;
}
.footer__copyright { margin: 0 0 .5rem; }
.footer__bottom p { margin: 0 0 .4rem; }
.footer__bottom a { color: #FFD9B3; }

/* ---------------------------------------------------------------- cookie + sticky */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 130;
  background: var(--color-ink); color: #fff; box-shadow: 0 -6px 24px rgba(0, 0, 0, .25);
}
.cookie-banner__inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 20px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px; justify-content: space-between;
}
.cookie-banner__text { margin: 0; font-size: .86rem; color: #E8EDF5; }
.cookie-banner__text a { color: #FFD9B3; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 8px; }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 110;
  background: rgba(22, 35, 58, .93); backdrop-filter: blur(8px);
  border-top: 2px solid var(--color-primary);
}
.sticky-cta__inner {
  max-width: 1200px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; gap: 14px; justify-content: center;
}
.sticky-cta__text { margin: 0; color: #FFE7D2; font-size: .88rem; }
.sticky-cta__btn { flex: 0 0 auto; }
.sticky-cta__close {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0; color: #fff; font-size: 1.6rem; line-height: 1;
  cursor: pointer; width: 40px; height: 40px;
}
.sticky-cta__close:hover { color: var(--color-primary); }

/* ---------------------------------------------------------------- inner pages */
.page { background: var(--color-bg); }
.inner { padding-top: calc(var(--header-h) + 34px); }
.backlink { margin: 0 0 .8rem; font-size: .9rem; }
.page__title { font-size: clamp(1.8rem, 4.5vw, 2.6rem); font-weight: 800; margin-bottom: 1.4rem; }
.page--about .about-story { padding-top: 30px; }
.page--contact .contact-page { padding-top: 20px; }
.page--terms .legal, .page--privacy .legal { padding-top: 10px; }

.about-story__body p:last-of-type { margin-bottom: 0; }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.value-card { background: #fff; border: 2px solid var(--color-border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); }
.value-card__icon {
  display: inline-grid; place-items: center; width: 50px; height: 50px; margin-bottom: 12px;
  border-radius: 15px; background: var(--color-cream); color: var(--color-primary-dark); box-shadow: var(--shadow-inset);
}
.value-card__title { font-size: 1.04rem; font-weight: 700; }
.value-card__text { margin: 0; font-size: .94rem; color: var(--color-muted); }
.about-stats { padding-bottom: 70px; }
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0 0 1.4rem; }
.stat { background: #fff; border: 2px solid var(--color-border); border-radius: var(--radius-md); padding: 16px; text-align: center; }
.stat dt { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--color-primary-dark); }
.stat dd { margin: 0; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--color-muted); }

.contact-page { padding-top: 10px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; }
.contact-form-wrap, .contact-details {
  background: #fff; border: 2px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.contact-details { background: var(--color-cream); }
.contact-form { display: grid; gap: 14px; }
.form-group { display: grid; gap: 6px; }
.form-group label { font-family: var(--font-heading); font-weight: 600; font-size: .9rem; color: var(--color-ink); }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 2px solid var(--color-border-strong);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; color: var(--color-text); background: #fff;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--color-accent); outline: none; }
.form-req { color: var(--color-error); }
.form-message { margin-top: 4px; padding: 10px 14px; border-radius: 6px; font-size: .875rem; }
.form-message--error { color: var(--color-error); background: var(--color-error-bg); border: 1px solid var(--color-error); }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.contact-list__item { font-size: .94rem; }
.contact-list__item p, .contact-list__item address { margin: 0; font-style: normal; color: var(--color-muted); }
.contact-list__label {
  display: block; font-family: var(--font-heading); font-weight: 700; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .06em; color: var(--color-primary-dark); margin-bottom: .2rem;
}

.legal { padding-top: 10px; }
.legal__inner { max-width: 820px; }
.legal__updated { font-size: .85rem; color: var(--color-muted); margin-bottom: 1.6rem; }
.legal__heading { font-size: 1.25rem; font-weight: 700; margin-top: 2rem; }
.legal p { font-size: .96rem; }

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

/* ---------------------------------------------------------------- section wrappers */
.features-section { padding-bottom: 74px; }
.info-gain .section-subtitle { max-width: 70ch; }
.about-brief { padding-bottom: 74px; }
.reviews .section-subtitle { max-width: 70ch; }
.comparison { padding-bottom: 74px; }
.what-you-get .section-subtitle { max-width: 70ch; }
.fears .section-title { color: var(--color-primary-deep); }
.use-cases .section-subtitle { max-width: 70ch; }
.gallery .section-subtitle { max-width: 68ch; }
.values { padding-bottom: 70px; }

/* ---------------------------------------------------------------- motion */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------- responsive */
@media (min-width: 600px) {
  .products-grid, .benefits-grid, .reviews-grid, .info-gain-grid, .fears-grid,
  .use-cases-grid, .values-grid, .gallery-grid, .steps, .timeline { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form__row { grid-template-columns: 1fr auto; }
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  section { padding: 80px 0; }
  .container { padding: 0 32px; }
  .about-brief__grid, .about-story__grid { grid-template-columns: 0.85fr 1.15fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1.15fr .85fr; }
  .footer__content { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
  .feature { grid-template-columns: 1fr 1fr; gap: 40px; }
  .feature--reverse .feature__media { order: 2; }
  .steps, .timeline { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .products-grid, .benefits-grid, .reviews-grid, .info-gain-grid, .use-cases-grid,
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .fears-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .hero { min-height: 50vh; padding: 44px 0 70px; }
  .hero__copy { grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: start; }
  .hero__copy .hero__lead { margin-bottom: 0; }
  .hero__title { margin-bottom: .3em; }
}

@media (min-width: 1400px) {
  .container { max-width: 1280px; }
}

@media (max-width: 900px) {
  .header__nav {
    position: fixed; inset: var(--header-h) 0 auto; margin: 0;
    background: #fff; border-bottom: 2px solid var(--color-border);
    transform: translateY(-140%); transition: transform .25s ease; box-shadow: var(--shadow-lg);
  }
  .header__nav.is-open { transform: translateY(0); }
  .header__nav ul { flex-direction: column; gap: 0; padding: 8px 20px 18px; }
  .header__nav li { border-bottom: 1px solid var(--color-border); }
  .header__nav a { display: block; padding: 14px 0; font-size: 1.02rem; }
  .header__hamburger { display: block; order: 3; margin-left: 0; }
  .header__cta { margin-left: auto; }
  .header__cta .btn-primary { padding: 9px 14px; font-size: .82rem; white-space: nowrap; }
}

@media (max-width: 599px) {
  .hero { padding: 26px 0 46px; }
  .hero__bullets li { font-size: .85rem; }
  .hero__stat { padding: 8px 12px; }
  .hero__stat dt { font-size: 1.05rem; }
  .hero__actions .btn-lg { width: 100%; padding: 14px 20px; }
  .btn-sm { min-height: 44px; }
  .sticky-cta__inner { flex-direction: column; gap: 8px; padding: 10px 44px 12px 20px; }
  .sticky-cta__btn { width: 100%; }
  .sticky-cta__text { text-align: center; }
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .btn-sm { flex: 1; }
  .sticky-cta__close { width: 44px; height: 44px; }
}

@media (max-width: 479px) {
  .header__cta { display: none; }
  .header__hamburger { margin-left: auto; }
}
