:root {
  --c-primary: #DC2626;
  --c-primary-dark: #B91C1C;
  --c-secondary: #D97706;
  --c-accent: #EC4899;
  --c-bg: #FFFFFF;
  --c-bg-alt: #FFF1F2;
  --c-surface: #FFFFFF;
  --c-surface-2: #FDF6F6;
  --c-text: #0F172A;
  --c-muted: #52525B;
  --c-muted-2: #6B5560;
  --c-border: #F3D6D9;
  --c-border-2: #E7C6CA;
  --c-dark: #241528;
  --c-dark-2: #35203B;
  --c-on-dark: #FFFFFF;
  --c-on-dark-muted: #E9DCE6;
  --font-heading: 'Rubik', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Nunito Sans', 'Segoe UI', system-ui, sans-serif;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(36, 21, 40, .06);
  --shadow-md: 0 10px 30px rgba(36, 21, 40, .10);
  --shadow-lg: 0 20px 50px rgba(36, 21, 40, .16);
  --ease: cubic-bezier(.4, 0, .2, 1);
}

*, *::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.7;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; margin: 0 0 .6em; color: var(--c-text); }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--c-accent); }

:focus-visible {
  outline: 3px solid var(--c-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: 28px; height: 28px; flex: 0 0 auto; color: var(--c-primary); }

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

.section-title { font-size: 1.75rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: .35em; }
.section-subtitle { font-size: 1.0625rem; color: var(--c-muted); max-width: 62ch; margin: 0 0 2rem; }
.section-closer { margin-top: 2rem; font-weight: 600; color: var(--c-primary-dark); }

/* ---------------------------------------------------------------- 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: 1rem;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-align: center; line-height: 1.2;
  transition: background-color .22s var(--ease), color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.btn-primary { background: var(--c-primary); color: #fff; box-shadow: 0 6px 18px rgba(220, 38, 38, .28); }
.btn-primary:hover { background: var(--c-accent); color: #fff; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--c-primary-dark); border-color: var(--c-primary); }
.btn-secondary:hover { background: var(--c-primary); color: #fff; }
.btn-ghost { background: transparent; color: var(--c-primary-dark); border-color: var(--c-border-2); }
.btn-ghost:hover { background: var(--c-surface-2); color: var(--c-primary-dark); }
.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; }
.btn-sm { padding: 9px 18px; font-size: .9375rem; }
.btn-lg { padding: 16px 34px; font-size: 1.0625rem; }

/* ---------------------------------------------------------------- header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow .25s var(--ease);
}
.header--scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; }
.header__logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.35rem; color: var(--c-primary); letter-spacing: -.02em; }
.header__logo:hover { color: var(--c-accent); }
.header__logo-mark { display: inline-block; }
.header__nav { margin-left: auto; }
.header__list { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.header__list a { font-weight: 600; font-size: .9375rem; color: var(--c-text); }
.header__list a:hover, .header__list a.is-active { color: var(--c-primary); }
.header__cta { display: flex; }
.header__hamburger { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.header__bar { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--c-text); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative; min-height: 50vh; display: flex; align-items: center;
  background: var(--c-dark); padding: 104px 0 44px; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(36, 21, 40, .90) 0%, rgba(220, 38, 38, .70) 55%, rgba(236, 72, 153, .62) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 1040px; }
.hero__eyebrow { font-family: var(--font-heading); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .8125rem; color: #FBCFE8; margin-bottom: .6rem; }
.hero__title { font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.hero__subtitle { font-size: 1rem; color: rgba(255, 255, 255, .94); max-width: 74ch; margin-bottom: 1.1rem; }
.hero__bullets { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .3rem; font-size: .9375rem; }
.hero__bullets li { position: relative; padding-left: 1.9rem; color: rgba(255, 255, 255, .95); font-weight: 500; }
.hero__bullets li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: #FBCFE8; font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.4rem; }

.trust-band { background: var(--c-dark-2); padding: 18px 0; }
.trust-strip { display: grid; gap: 10px; }
.trust-badge { display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, .95); font-size: .875rem; font-weight: 600; }
.trust-badge__icon { color: #FBCFE8; width: 24px; height: 24px; }

.wave-divider { line-height: 0; background: var(--c-bg); }
.wave-divider svg { display: block; width: 100%; height: 54px; }
.wave-divider--top { background: var(--c-bg-alt); }
.wave-divider--top svg path { fill: var(--c-dark-2); }
.wave-divider--bottom {
  background-color: var(--c-accent);
  background-image: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
}
.wave-divider--bottom svg path { fill: var(--c-dark); }

/* ---------------------------------------------------------------- products */
.products-section { scroll-margin-top: 80px; }
.products-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
.product-card {
  display: flex; flex-direction: column; background: var(--c-surface);
  border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product-card--unavailable img { filter: grayscale(.55); }
.product-card--unavailable .product-card__title { color: var(--c-muted); }
.product-card__media { display: block; background: var(--c-surface-2); }
.product-card__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-card__body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 24px; }
.product-card__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: .4rem; }
.product-card__rating { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--c-secondary); margin-bottom: .75rem; }
.product-card__stars { font-size: 1.1rem; }
.product-card__reviews { color: var(--c-muted); font-weight: 500; font-size: .875rem; }
.product-card__description {
  color: var(--c-muted); font-size: .9375rem; margin-bottom: .5rem;
  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: 0 0 12px;
  color: var(--c-primary); font-family: var(--font-body); font-size: .9375rem; font-weight: 700; cursor: pointer;
}
.product-card__more:hover { color: var(--c-accent); text-decoration: underline; }
.product-card__highlights { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: .45rem; }
.product-card__highlights li { position: relative; padding-left: 1.5rem; font-size: .875rem; color: var(--c-text); }
.product-card__highlights li::before { content: "\2022"; position: absolute; left: .35rem; color: var(--c-accent); font-weight: 700; }
.product-card__cta {
  margin-top: auto; display: block; text-align: center; padding: 13px 20px; border-radius: 999px;
  background: var(--c-primary); color: #fff; font-family: var(--font-heading); font-weight: 600;
  transition: background-color .22s var(--ease), transform .22s var(--ease);
}
.product-card__cta:hover { background: var(--c-accent); color: #fff; transform: translateY(-2px); }

.product-badge {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: #FEF3C7; color: #92400E; font-size: .8125rem; font-weight: 600; margin-bottom: .5rem;
}
.product-badge--restock { background: #FEE2E2; color: #991B1B; }

.category-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 40px; }
.category-chip {
  display: inline-flex; align-items: center; padding: 8px 18px; border-radius: 999px;
  border: 1px solid var(--c-border-2); background: var(--c-surface); color: var(--c-text);
  font-weight: 600; font-size: .9375rem;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.category-chip:hover { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
.category-chips__all { padding: 8px 22px; }

/* ---------------------------------------------------------------- benefits */
.benefits { position: relative; }
.benefits::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(220, 38, 38, .10) 1px, transparent 1px);
  background-size: 24px 24px; opacity: .55;
}
.benefits > .container { position: relative; z-index: 1; }
.benefits-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.benefit-card {
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-md);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-card__icon { margin-bottom: 14px; color: var(--c-primary); }
.benefit-card__title { font-size: 1.0625rem; margin-bottom: .45rem; }
.benefit-card__text { color: var(--c-muted); font-size: .9375rem; margin: 0; }

/* ---------------------------------------------------------------- how it works */
.how-it-works { position: relative; }
.how-it-works::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(45deg, rgba(36, 21, 40, .05) 0 1px, transparent 1px 16px);
}
.how-it-works > .container { position: relative; z-index: 1; }
.steps-row { list-style: none; padding: 0; margin: 0; display: grid; gap: 22px; grid-template-columns: 1fr; counter-reset: step; }
.step-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 26px 24px; text-align: left; }
.step-card__num {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; background: var(--c-accent); color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; margin-bottom: 14px;
}
.step-card__title { font-size: 1.0625rem; margin-bottom: .4rem; }
.step-card__text { color: var(--c-muted); font-size: .9375rem; margin: 0; }

/* ---------------------------------------------------------------- features */
.features { }
.feature-row { display: grid; gap: 26px; align-items: center; grid-template-columns: 1fr; margin-bottom: 56px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.feature-row__body { }
.feature-row__title { font-size: 1.4rem; margin-bottom: .55rem; }
.feature-row__text { color: var(--c-muted); margin-bottom: 1rem; }
.feature-row__list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .6rem; }
.feature-row__list li { position: relative; padding-left: 1.7rem; font-size: .9375rem; }
.feature-row__list li::before { content: "\2192"; position: absolute; left: 0; color: var(--c-accent); font-weight: 700; }

/* ---------------------------------------------------------------- information gain */
.info-gain { }
.info-gain-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.info-gain-card {
  background: var(--c-surface); border: 1px solid var(--c-border); border-left: 5px solid var(--c-accent);
  border-radius: var(--r-md); padding: 24px 22px; box-shadow: var(--shadow-sm);
}
.info-gain-card__number { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--c-primary); margin-bottom: .5rem; line-height: 1.15; }
.info-gain-card__claim { font-size: .9375rem; margin-bottom: .7rem; }
.info-gain-card__gap { font-size: .875rem; color: var(--c-muted-2); margin-bottom: .7rem; }
.info-gain-card__proof {
  display: block; font-size: .6875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--c-primary-dark); padding: 8px 0 0; margin: 0;
  border-top: 1px solid var(--c-border); line-height: 1.5;
}

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

/* ---------------------------------------------------------------- reviews */
.reviews-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.review-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 24px 22px; box-shadow: var(--shadow-sm); }
.review-card__rating { color: var(--c-secondary); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: .6rem; }
.review-card__text { font-size: .9375rem; color: var(--c-text); margin-bottom: 1rem; }
.review-card__meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 0; font-size: .8125rem; }
.review-card__author { font-weight: 700; color: var(--c-text); }
.review-card__badge { background: #DCFCE7; color: #166534; padding: 3px 10px; border-radius: 999px; font-weight: 600; }
.review-card__product { color: var(--c-muted); }

/* ---------------------------------------------------------------- comparison */
.comparison__scroll { overflow-x: auto; border-radius: var(--r-md); border: 1px solid var(--c-border); background: var(--c-surface); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: .9375rem; }
.comparison-table__vs { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: var(--c-muted-2); margin-bottom: .25rem; }
.comparison-table th, .comparison-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--c-border); vertical-align: top; }
.comparison-table thead th { background: var(--c-dark); color: #fff; font-family: var(--font-heading); font-weight: 600; }
.comparison-table tbody th { font-weight: 700; color: var(--c-text); background: var(--c-surface-2); width: 190px; }
.comparison-table tbody tr:nth-child(even) td { background: rgba(255, 241, 242, .5); }
.comparison-table__brand { background: rgba(236, 72, 153, .10) !important; color: var(--c-primary-dark); font-weight: 700; }
.comparison-table thead .comparison-table__brand { background: var(--c-primary) !important; color: #fff; }

/* ---------------------------------------------------------------- what you get */
.timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.timeline__item { position: relative; padding: 22px 24px 22px 62px; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-md); }
.timeline__item::before {
  content: ""; position: absolute; left: 26px; top: 30px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--c-accent); box-shadow: 0 0 0 5px rgba(236, 72, 153, .18);
}
.timeline__label { font-size: 1.0625rem; margin-bottom: .35rem; color: var(--c-primary-dark); }
.timeline__text { color: var(--c-muted); font-size: .9375rem; margin: 0; }

/* ---------------------------------------------------------------- fears */
.fears-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.fear-card { background: var(--c-surface); border: 1px solid var(--c-border); border-top: 4px solid var(--c-primary); border-radius: var(--r-md); padding: 24px 22px; box-shadow: var(--shadow-sm); }
.fear-card__title { font-size: 1.0625rem; margin-bottom: .45rem; }
.fear-card__text { color: var(--c-muted); font-size: .9375rem; margin-bottom: .6rem; }
.fear-card__stat { font-size: .8125rem; font-weight: 700; color: var(--c-primary-dark); margin: 0; }

/* ---------------------------------------------------------------- who its for */
.persona-grid { display: grid; gap: 20px; grid-template-columns: 1fr; margin-bottom: 32px; }
.persona-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 24px 22px; box-shadow: var(--shadow-sm); }
.persona-card__icon { margin-bottom: 12px; color: var(--c-accent); }
.persona-card__title { font-size: 1.0625rem; margin-bottom: .45rem; }
.persona-card__text { color: var(--c-muted); font-size: .9375rem; margin: 0; }
.not-for { background: var(--c-dark); color: #fff; border-radius: var(--r-lg); padding: 28px 26px; }
.not-for__title { color: #fff; font-size: 1.15rem; margin-bottom: .7rem; }
.not-for__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.not-for__list li { position: relative; padding-left: 1.8rem; color: var(--c-on-dark-muted); font-size: .9375rem; }
.not-for__list li::before { content: "\2715"; position: absolute; left: 0; color: #FBCFE8; font-weight: 700; }

/* ---------------------------------------------------------------- faq */
.faq { position: relative; }
.faq::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24' viewBox='0 0 120 24'%3E%3Cpath d='M0 12c15-12 30 12 45 0s30-12 45 0 30 12 30 0' fill='none' stroke='%230F172A' stroke-opacity='0.07' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 120px 24px;
}
.faq > .container { position: relative; z-index: 1; }
.faq-list, .faq-more { display: grid; gap: 12px; }
.faq-more { margin-top: 12px; }
.faq-item { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 4px 20px; }
.faq-item[open] { border-color: var(--c-accent); 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 34px 16px 0;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--c-text);
}
.faq-question::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--c-primary); line-height: 1;
}
.faq-item[open] > .faq-question::after { content: "\2212"; }
.faq-answer { padding: 0 0 16px; }
.faq-answer p { color: var(--c-muted); font-size: .9375rem; margin: 0; }
.faq-toggle {
  display: block; margin: 26px auto 0; padding: 13px 30px; border-radius: 999px;
  background: transparent; border: 2px solid var(--c-primary); color: var(--c-primary-dark);
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: background-color .22s var(--ease), color .22s var(--ease);
}
.faq-toggle:hover { background: var(--c-primary); color: #fff; }

/* ---------------------------------------------------------------- gallery */
.gallery-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.gallery-item { margin: 0; }
.gallery-item__btn { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; border-radius: var(--r-md); overflow: hidden; }
.gallery-item__btn img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .35s var(--ease); }
.gallery-item__btn:hover img { transform: scale(1.05); }
.gallery-item__caption { margin-top: .55rem; font-size: .8125rem; color: var(--c-muted); text-align: center; }

.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(15, 23, 42, .92); display: flex; align-items: center; justify-content: center; padding: 24px; }
.lightbox__figure { margin: 0; max-width: 900px; }
.lightbox__img { max-width: 100%; max-height: 78vh; object-fit: contain; border-radius: var(--r-md); }
.lightbox__caption { margin-top: 12px; color: #fff; text-align: center; font-size: .9375rem; }
.lightbox__close { position: absolute; top: 18px; right: 22px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .18); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; }
.lightbox__close:hover { background: var(--c-primary); }

/* ---------------------------------------------------------------- newsletter */
.newsletter {
  position: relative; overflow: hidden;
  background-color: var(--c-primary);
  background-image: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
}
.newsletter::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .16;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .55) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .55) 0 1px, transparent 1px 5px);
}
.newsletter__inner { position: relative; z-index: 1; text-align: center; max-width: 720px; }
.newsletter__title { color: #fff; font-size: 1.75rem; }
.newsletter__subtitle { color: rgba(255, 255, 255, .95); margin-bottom: 1.6rem; }
.newsletter__form { display: block; }
.newsletter__label { display: block; color: #fff; font-weight: 600; font-size: .875rem; margin-bottom: .5rem; text-align: left; }
.newsletter__row { display: grid; gap: 12px; }
.newsletter__input { width: 100%; padding: 15px 20px; border: 2px solid transparent; border-radius: 999px; font-family: var(--font-body); font-size: 1rem; color: var(--c-text); background: #fff; }
.newsletter__input:focus { outline: 3px solid #fff; outline-offset: 2px; }
.newsletter .btn-primary { background: #fff; color: var(--c-primary-dark); box-shadow: 0 6px 18px rgba(36, 21, 40, .22); }
.newsletter .btn-primary:hover { background: var(--c-dark); color: #fff; }
.newsletter__fineprint { margin: 1rem 0 0; font-size: .8125rem; color: rgba(255, 255, 255, .9); }

.newsletter-message, .form-message { margin-top: 1rem; padding: 10px 14px; border-radius: 6px; font-size: .875rem; text-align: left; }
.newsletter-message--error, .form-message--error { color: #C0392B; background: #FDEDEC; border: 1px solid #C0392B; }

/* ---------------------------------------------------------------- footer */
.footer { background: var(--c-dark); color: var(--c-on-dark); padding: 56px 0 28px; }
.footer__content { display: grid; gap: 32px; grid-template-columns: 1fr; }
.footer__col { }
.footer__col--brand { }
.footer__logo { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 1.35rem; color: #fff; margin-bottom: .6rem; }
.footer__tagline { color: var(--c-on-dark-muted); font-size: .9375rem; }
.footer__address { font-style: normal; color: var(--c-on-dark-muted); font-size: .9375rem; margin-bottom: .8rem; }
.footer__address a { color: #FBCFE8; }
.footer__hours { color: var(--c-on-dark-muted); font-size: .875rem; margin: 0; }
.footer__heading { color: #fff; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .9rem; }
.footer__list, .footer__social { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer__list a, .footer__social a { color: var(--c-on-dark-muted); font-size: .9375rem; }
.footer__list a:hover, .footer__social a:hover { color: #FBCFE8; }
.footer__languages { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 20px; }
.footer__languages:empty { display: none; }
.footer__bottom { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .18); text-align: center; }
.footer__bottom p { color: var(--c-on-dark-muted); font-size: .8125rem; margin: 0 0 .5rem; }
.footer__bottom a { color: #FBCFE8; }
.footer__copyright { font-weight: 600; }
.footer__note { font-size: .75rem !important; color: rgba(233, 220, 230, .78) !important; }

/* ---------------------------------------------------------------- cookie + sticky */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 110; background: rgba(36, 21, 40, .97); backdrop-filter: blur(10px); padding: 14px 0; }
.cookie-banner__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.cookie-banner__text { margin: 0; color: #fff; font-size: .875rem; flex: 1 1 260px; }
.cookie-banner__text a { color: #FBCFE8; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; }

.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; background: rgba(36, 21, 40, .94); backdrop-filter: blur(10px); padding: 12px 0; box-shadow: 0 -8px 26px rgba(36, 21, 40, .28); }
.sticky-cta__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.sticky-cta__text { margin: 0; color: #fff; font-size: .9375rem; font-weight: 600; }
.sticky-cta__actions { display: flex; align-items: center; gap: 10px; }
.sticky-cta__btn { white-space: nowrap; }
.sticky-cta__close { width: 38px; height: 38px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .16); color: #fff; font-size: 1.3rem; line-height: 1; cursor: pointer; }
.sticky-cta__close:hover { background: var(--c-primary); }

/* ---------------------------------------------------------------- inner pages */
.contact-page, .about-page, .terms-page, .privacy-page { padding-top: 68px; }
.page-head { padding: 44px 20px 8px; }
.back-link { display: inline-block; font-weight: 600; font-size: .9375rem; margin-bottom: 1rem; }
.page-title { font-size: 2rem; font-weight: 800; margin-bottom: .4rem; }
.page-updated { color: var(--c-muted); font-size: .875rem; margin-bottom: .8rem; }
.page-lead { color: var(--c-muted); font-size: 1.0625rem; max-width: 68ch; }

.contact-section { padding: 40px 0 70px; background: var(--c-bg-alt); }
.contact-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
.contact-form-wrap { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.contact-form { display: grid; gap: 4px; }
.form-group { display: grid; gap: 6px; margin-bottom: 16px; }
.form-label { font-weight: 600; font-size: .9375rem; }
.form-required { color: var(--c-primary); }
.form-input { width: 100%; padding: 12px 16px; border: 1px solid var(--c-border-2); border-radius: var(--r-sm); font-family: var(--font-body); font-size: 1rem; color: var(--c-text); background: #fff; }
.form-input:focus { border-color: var(--c-primary); outline: 3px solid rgba(236, 72, 153, .35); outline-offset: 1px; }
.form-textarea { resize: vertical; min-height: 140px; }
.contact-info { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.contact-info__block { margin-bottom: 22px; }
.contact-info__heading { font-size: 1rem; margin-bottom: .35rem; }
.contact-info__text { font-style: normal; color: var(--c-muted); font-size: .9375rem; margin: 0; }

.about-story { padding: 40px 0 60px; background: var(--c-bg); }
.about-stats { padding: 60px 0; background: var(--c-bg-alt); }
.about-values { padding: 60px 0; background: var(--c-bg); }
.about-usecases { padding: 60px 0; background: var(--c-bg-alt); }
.stats-row { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.stat-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 22px 18px; text-align: center; }
.stat-card__num { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--c-primary); }
.stat-card__label { display: block; font-size: .8125rem; color: var(--c-muted); margin-top: .35rem; }
.values-grid, .usecase-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.value-card, .usecase-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 24px 22px; box-shadow: var(--shadow-sm); }
.value-card__icon, .usecase-card__icon { margin-bottom: 12px; color: var(--c-accent); }
.value-card__title, .usecase-card__title { font-size: 1.0625rem; margin-bottom: .4rem; }
.value-card__text, .usecase-card__text { color: var(--c-muted); font-size: .9375rem; margin: 0; }

.legal { padding: 30px 0 70px; background: var(--c-bg); }
.legal__body { max-width: 780px; }
.legal__body p { color: var(--c-muted); }
.legal__heading { font-size: 1.25rem; margin-top: 2rem; margin-bottom: .6rem; color: var(--c-text); }

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

/* ---------------------------------------------------------------- section anchors */
.about-brief, .comparison, .fears, .gallery, .reviews, .what-you-get, .who-its-for,
.benefits, .features, .how-it-works, .info-gain, .faq, .newsletter { scroll-margin-top: 80px; }
.about-brief { overflow: hidden; }
.comparison { }
.fears { }
.gallery { }
.reviews { }
.what-you-get { }
.who-its-for { }

/* ---------------------------------------------------------------- scroll reveal */
.benefit-card, .step-card, .info-gain-card, .review-card, .fear-card, .persona-card, .value-card, .usecase-card, .feature-row, .timeline__item, .gallery-item {
  opacity: 0; transform: translateY(18px); 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,
.persona-card.visible, .value-card.visible, .usecase-card.visible, .feature-row.visible, .timeline__item.visible, .gallery-item.visible {
  opacity: 1; transform: none;
}

/* ---------------------------------------------------------------- responsive */
@media (max-width: 1023px) {
  .header__hamburger { display: block; }
  .header__nav {
    position: fixed; top: 68px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--c-border); box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height .3s var(--ease);
  }
  .header__nav.is-open { max-height: 380px; }
  .header__list { flex-direction: column; gap: 0; padding: 8px 20px 16px; }
  .header__list li { border-bottom: 1px solid var(--c-border); }
  .header__list a { display: block; padding: 13px 0; }
  .header__cta { display: none; }
}

@media (min-width: 640px) {
  .products-grid, .benefits-grid, .reviews-grid, .fears-grid, .persona-grid,
  .info-gain-grid, .values-grid, .usecase-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
  .newsletter__row { grid-template-columns: 1fr auto; align-items: center; }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  body { font-size: 17px; }
  .section-title { font-size: 2.125rem; }
  .hero__title { font-size: 2.125rem; }
  .page-title { font-size: 2.5rem; }
  .newsletter__title { font-size: 2.125rem; }
  main > section { padding: 80px 0; }
  .container { padding: 0 40px; }
  .about-brief__grid, .about-story__grid { grid-template-columns: 1fr 1.15fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1.15fr .85fr; }
  .feature-row { grid-template-columns: 1fr 1fr; gap: 44px; }
  .feature-row--flip .feature-row__media { order: 2; }
  .contact-form-wrap, .contact-info { padding: 34px 32px; }
  .wave-divider svg { height: 74px; }
}

@media (min-width: 1024px) {
  .hero { min-height: 50vh; padding: 104px 0 52px; }
  .hero__title { font-size: 2.375rem; }
  .products-grid, .benefits-grid, .reviews-grid, .info-gain-grid, .values-grid, .usecase-grid { grid-template-columns: repeat(3, 1fr); }
  .fears-grid, .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__content { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .fears-grid { grid-template-columns: repeat(3, 1fr); }
}

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

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