:root {
  --color-primary: #26313A;
  --color-primary-dark: #161D23;
  --color-secondary: #4A5A66;
  --color-accent: #C1440E;
  --color-accent-dark: #9A360B;
  --color-accent-soft: #FBEDE6;
  --color-bg: #FFFFFF;
  --color-surface: #FFFFFF;
  --color-alt: #EDE8E0;
  --color-text: #1B2227;
  --color-text-muted: #55636D;
  --color-text-invert: #FFFFFF;
  --color-border: #DCD5CA;
  --color-border-strong: #C3B9A8;
  --color-warning: #8A4B08;
  --color-warning-bg: #FDF1D8;
  --font-heading: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(22, 29, 35, 0.09);
  --shadow-md: 0 6px 18px rgba(22, 29, 35, 0.10);
  --shadow-lg: 0 14px 40px rgba(22, 29, 35, 0.16);
  --header-h: 68px;
  --maxw: 1200px;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

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

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

a { color: var(--color-accent-dark); }
a:hover { color: var(--color-accent); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0.01em;
  color: var(--color-text);
  margin: 0 0 14px;
}

p { margin: 0 0 16px; }
ul, ol { margin: 0 0 16px; padding-left: 20px; }

button { font-family: inherit; }

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.section-title {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 62ch;
  margin: 0 0 34px;
}

/* ============================ BUTTONS ============================ */

.btn-primary,
.btn-secondary,
.btn-ghost,
.product-card__cta,
.faq-toggle,
.category-chips__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-text-invert);
}
.btn-primary:hover { background: var(--color-accent-dark); color: var(--color-text-invert); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--color-accent-dark);
  border-color: var(--color-accent);
}
.btn-secondary:hover { background: var(--color-accent); color: var(--color-text-invert); }

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border-strong);
}
.btn-ghost:hover { background: var(--color-text); color: var(--color-text-invert); border-color: var(--color-text); }

.hero .btn-ghost,
.newsletter .btn-ghost,
.sticky-cta .btn-ghost,
.cookie-banner .btn-ghost {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.7);
}
.hero .btn-ghost:hover,
.newsletter .btn-ghost:hover,
.sticky-cta .btn-ghost:hover,
.cookie-banner .btn-ghost:hover {
  background: #FFFFFF;
  color: var(--color-primary-dark);
  border-color: #FFFFFF;
}

.btn-sm { padding: 9px 16px; font-size: 15px; }
.btn-lg { padding: 16px 30px; font-size: 19px; }

/* ============================ HEADER ============================ */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(38, 49, 58, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--color-accent);
}

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

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}

.header__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--color-accent);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  border-radius: var(--radius-sm);
}

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFFFFF;
}

.header__nav { color: #E4E8EB; }

.header__nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav a {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #E4E8EB;
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}
.header__nav a:hover,
.header__nav a.is-active { color: #FFFFFF; border-bottom-color: var(--color-accent); }

.header__cta { display: none; }

.header__hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 22px;
  color: #FFFFFF;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

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

/* ============================ HERO ============================ */

.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: var(--color-primary-dark);
  overflow: hidden;
  padding: 40px 0 62px;
}

.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 29, 35, 0.92) 0%, rgba(38, 49, 58, 0.82) 45%, rgba(154, 54, 11, 0.62) 100%);
}

.hero__inner { position: relative; z-index: 2; max-width: 860px; }

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F0BFA4;
  margin-bottom: 10px;
}

.hero__title {
  font-size: clamp(30px, 4.6vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 18px;
  color: #F2F4F5;
  max-width: 68ch;
  margin-bottom: 16px;
}

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

.hero__bullets li {
  position: relative;
  padding-left: 28px;
  color: #EDF0F2;
  font-size: 16px;
}

.hero__bullets li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #F0BFA4;
  font-weight: 700;
}

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

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 40px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0 40V16c180 16 360 22 540 12S900-2 1080 4s240 12 360 12v24z' fill='%23EDE8E0'/%3E%3C/svg%3E") no-repeat center bottom / 100% 100%;
  z-index: 3;
}

/* ============================ TRUST ============================ */

.trust { padding: 44px 0; }

.trust__title {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-secondary);
  margin-bottom: 22px;
}

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

.trust__item {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
}

.trust__icon { grid-row: 1 / 3; font-size: 26px; text-align: center; }

.trust__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.trust__note { font-size: 14.5px; color: var(--color-text-muted); }

/* ============================ PRODUCTS ============================ */

.products-section { padding-top: 66px; }

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

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 220ms ease, transform 220ms ease;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.product-card__media {
  display: block;
  background: var(--color-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 14px;
}
.product-card__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.product-card__tier {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-dark);
  background: var(--color-accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.product-card__title { font-size: 22px; margin-bottom: 8px; }

.product-card__rating {
  font-weight: 600;
  font-size: 15.5px;
  margin-bottom: 8px;
  color: var(--color-text);
}
.product-card__stars { color: var(--color-accent); font-size: 17px; }
.product-card__reviews { color: var(--color-text-muted); font-weight: 400; }

.product-card__spec {
  font-size: 14.5px;
  color: var(--color-text-muted);
  background: var(--color-alt);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  margin-bottom: 12px;
}

.product-card__description {
  font-size: 15.5px;
  margin-bottom: 6px;
  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(--color-accent-dark);
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.product-card__more:hover { color: var(--color-accent); }

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

.product-card__highlights li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--color-text);
}

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

.product-card__cta {
  margin-top: auto;
  width: 100%;
  background: var(--color-accent);
  color: var(--color-text-invert);
}
.product-card__cta:hover { background: var(--color-accent-dark); color: var(--color-text-invert); }

.product-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--color-warning-bg);
  color: var(--color-warning);
  border: 1px solid var(--color-warning);
  margin-bottom: 10px;
}

.product-badge--restock {
  background: var(--color-warning-bg);
  color: var(--color-warning);
}

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

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

.category-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  background: var(--color-surface);
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.category-chip:hover { background: var(--color-accent); color: #FFFFFF; border-color: var(--color-accent); }

.category-chips__all { padding: 9px 18px; font-size: 16px; }

/* ============================ BENEFITS ============================ */

.benefits { position: relative; }

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(27, 34, 39, 0.16) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}

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

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

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

.benefit-card__icon { font-size: 30px; display: block; margin-bottom: 12px; }
.benefit-card__title { font-size: 21px; margin-bottom: 8px; }
.benefit-card__text { font-size: 15.5px; margin: 0; color: var(--color-text); }

/* ============================ HOW IT WORKS ============================ */

.how-it-works { position: relative; }

.how-it-works::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(27, 34, 39, 0.05) 0 1px, transparent 1px 16px);
  pointer-events: none;
}

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

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

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

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.step__title { font-size: 20px; margin-bottom: 6px; }
.step__text { font-size: 15.5px; margin: 0; color: var(--color-text-muted); }

/* ============================ FEATURES ============================ */

.features { padding-bottom: 24px; }

.feature-block {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 30px 20px;
  margin-bottom: 22px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

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

.feature-block__title { font-size: 25px; margin-bottom: 10px; }
.feature-block__text { font-size: 16.5px; }

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

.feature-block__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
}

.feature-block__list li::before {
  content: "\25B6";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 12px;
  color: var(--color-accent);
}

/* ============================ INFORMATION GAIN ============================ */

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

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

.info-gain-card__number {
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-accent-dark);
  margin-bottom: 10px;
}

.info-gain-card__claim { font-size: 15.5px; margin-bottom: 10px; }

.info-gain-card__gap {
  font-size: 14.5px;
  color: var(--color-text-muted);
  border-left: 3px solid var(--color-border-strong);
  padding-left: 10px;
  margin-bottom: 10px;
}

.info-gain-card__proof {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-secondary);
  background: var(--color-alt);
  border-radius: 999px;
  padding: 4px 12px;
  margin: 0;
}

/* ============================ ABOUT (index) ============================ */

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

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

.about__body p { font-size: 16.5px; }

/* ============================ REVIEWS ============================ */

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

.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__stars { color: var(--color-accent); font-size: 18px; letter-spacing: 2px; margin-bottom: 10px; }
.review-card__score { color: var(--color-text); font-weight: 700; font-size: 15px; margin-left: 6px; letter-spacing: 0; }
.review-card__text { font-size: 15.5px; }

.review-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
  font-size: 14px;
}

.review-card__author { font-weight: 700; color: var(--color-text); }
.review-card__loc { color: var(--color-text-muted); }

.review-card__verified {
  color: var(--color-accent-dark);
  font-weight: 600;
  background: var(--color-accent-soft);
  border-radius: 999px;
  padding: 2px 10px;
}

.review-card__product { color: var(--color-text-muted); width: 100%; }

/* ============================ COMPARISON ============================ */

.comparison { position: relative; }

.comparison::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='40' viewBox='0 0 120 40'%3E%3Cpath d='M0 20c15-14 30-14 45 0s30 14 45 0 30-14 30 0' fill='none' stroke='%231B2227' stroke-width='2'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}

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

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

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 15px;
}

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

.comparison-table thead th {
  font-family: var(--font-heading);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--color-primary);
  color: #FFFFFF;
  border-bottom: 0;
}

.comparison-table tbody th {
  font-family: var(--font-body);
  font-weight: 700;
  width: 22%;
}

.comparison-table__brand { background: var(--color-accent-soft); }
.comparison-table thead .comparison-table__brand { background: var(--color-accent); }

.comparison-table__mark { font-weight: 700; color: #1F7A44; margin-right: 4px; }
.comparison-table__mark--no { color: #A62B1F; }

.comparison-table__who { color: var(--color-text-muted); font-size: 14px; }

/* ============================ WHAT YOU GET ============================ */

.timeline {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 18px;
}

.timeline__item {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.timeline__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  margin-bottom: 6px;
}

.timeline__text { font-size: 15.5px; margin: 0; }

.timeline__cta { font-size: 16px; font-weight: 600; margin: 0; }

/* ============================ FEARS ============================ */

.fears-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-bottom: 22px;
}

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

.fear-card__title { font-size: 20px; margin-bottom: 8px; }
.fear-card__text { font-size: 15.5px; margin-bottom: 10px; }

.fear-card__stat {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent-dark);
  background: var(--color-accent-soft);
  border-radius: 999px;
  padding: 4px 12px;
  margin: 0;
}

.fears__cta { font-size: 16px; font-weight: 600; margin: 0; }

/* ============================ MISSION / VALUES ============================ */

.values-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-bottom: 20px;
}

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

.value-card__icon { font-size: 28px; display: block; margin-bottom: 10px; }
.value-card__title { font-size: 20px; margin-bottom: 8px; }
.value-card__text { font-size: 15.5px; margin: 0; color: var(--color-text); }

/* ============================ FAQ ============================ */

.faq { position: relative; }

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='60' viewBox='0 0 160 60'%3E%3Cpath d='M0 30c20-18 40-18 60 0s40 18 60 0 40-18 40 0' fill='none' stroke='%231B2227' stroke-width='3'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

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

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

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0 18px;
}

.faq-item > summary {
  cursor: pointer;
  list-style: none;
  padding: 15px 30px 15px 0;
  position: relative;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
}

.faq-item > summary::-webkit-details-marker { display: none; }

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent);
  transition: transform 200ms ease;
}

.faq-item[open] > .faq-question::after { content: "\2212"; }

.faq-answer { border-top: 1px solid var(--color-border); padding: 14px 0 4px; }
.faq-answer p { font-size: 15.5px; margin: 0 0 10px; }

.faq-toggle {
  margin: 18px 0;
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border-strong);
}
.faq-toggle:hover { background: var(--color-text); color: #FFFFFF; border-color: var(--color-text); }

.faq__cta { font-size: 16px; font-weight: 600; margin: 0; }

/* ============================ GALLERY ============================ */

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.gallery-item { margin: 0; }

.gallery-item__btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-alt);
  cursor: pointer;
}

.gallery-item__btn img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 260ms ease;
}
.gallery-item__btn:hover img { transform: scale(1.05); }

.gallery-item__caption {
  font-size: 13.5px;
  color: var(--color-text-muted);
  padding-top: 8px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 30px;
  background: rgba(11, 15, 18, 0.94);
}

.lightbox__img {
  max-width: min(92vw, 900px);
  max-height: 78vh;
  border-radius: var(--radius-md);
}

.lightbox__caption { color: #E6EAEC; font-size: 15px; margin: 0; text-align: center; }

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  font-size: 22px;
  color: #FFFFFF;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* ============================ NEWSLETTER ============================ */

.newsletter {
  position: relative;
  background: var(--color-accent);
  color: #FFFFFF;
  overflow: hidden;
  padding: 66px 0;
}

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

.newsletter::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 36px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 36' preserveAspectRatio='none'%3E%3Cpath d='M0 36V14c200 18 400 22 600 10s400-16 600-6 240 12 240 12v6z' fill='%231B2227'/%3E%3C/svg%3E") no-repeat center bottom / 100% 100%;
}

.newsletter__inner { position: relative; z-index: 1; max-width: 720px; text-align: center; }

.newsletter__title { font-size: 32px; text-transform: uppercase; color: #FFFFFF; }
.newsletter__subtitle { font-size: 17.5px; color: #FFFFFF; margin-bottom: 22px; }

.newsletter-form { margin-bottom: 12px; }

.newsletter-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: left;
  margin-bottom: 6px;
}

.newsletter-form__row { display: grid; gap: 10px; grid-template-columns: 1fr; }

.newsletter-form__input {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-md);
  background: #FFFFFF;
  color: var(--color-text);
  min-height: 48px;
}

.newsletter-message {
  margin: 0 auto 10px;
  max-width: 520px;
  font-size: 0.875rem;
  padding: 10px 14px;
  border-radius: 6px;
  text-align: left;
}

.newsletter-message--error {
  color: #C0392B;
  background: #FDEDEC;
  border: 1px solid #C0392B;
}

.newsletter__fineprint { font-size: 14px; color: rgba(255, 255, 255, 0.88); margin: 0; }

/* ============================ FOOTER ============================ */

.footer {
  background: var(--color-primary-dark);
  color: #C6CFD5;
  padding: 54px 0 26px;
}

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

.footer__logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 12px; }

.footer__slogan { font-size: 15.5px; color: #B9C2C9; }

.footer__address {
  font-style: normal;
  font-size: 15px;
  color: #B9C2C9;
  margin-bottom: 12px;
}
.footer__address a { color: #F0BFA4; text-decoration: none; }
.footer__address a:hover { color: #FFFFFF; text-decoration: underline; }

.footer__hours { font-size: 14.5px; color: #9FAAB2; margin: 0; }

.footer__heading {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer__links, .footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer__links a, .footer__social a {
  color: #C6CFD5;
  text-decoration: none;
  font-size: 15.5px;
}
.footer__links a:hover, .footer__social a:hover { color: #FFFFFF; text-decoration: underline; }

.footer__col--brand { max-width: 320px; }

.footer__languages { display: flex; flex-wrap: wrap; gap: 10px; padding: 16px 20px 0; }
.footer__languages:empty { display: none; }

.footer__bottom { padding-top: 20px; text-align: center; }

.footer__copyright { font-size: 14.5px; color: #B9C2C9; margin: 0 0 8px; }

.footer p { font-size: 13.5px; color: #9FAAB2; }

/* ============================ COOKIE + STICKY ============================ */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 130;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(22, 29, 35, 0.97);
  border-top: 2px solid var(--color-accent);
}

.cookie-banner__text { font-size: 14.5px; color: #E4E8EB; margin: 0; }
.cookie-banner__text a { color: #F0BFA4; }
.cookie-banner__actions { display: flex; gap: 10px; }

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(22, 29, 35, 0.94);
  backdrop-filter: blur(6px);
  border-top: 2px solid var(--color-accent);
}

.sticky-cta__text { font-size: 14.5px; color: #FFFFFF; margin: 0; }
.sticky-cta__actions { display: flex; align-items: center; gap: 10px; }

.sticky-cta__close {
  width: 40px;
  height: 40px;
  font-size: 16px;
  color: #FFFFFF;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* ============================ INNER PAGES ============================ */

.page { padding-top: 34px; padding-bottom: 20px; }

.back-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  margin-bottom: 14px;
}

.page__title { font-size: clamp(30px, 5vw, 44px); text-transform: uppercase; }
.page__lead { font-size: 18px; color: var(--color-text-muted); max-width: 68ch; margin-bottom: 8px; }

.contact-page .contact-section { padding-top: 34px; }

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

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

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

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

.form-group label { font-weight: 600; font-size: 15px; }

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: #FFFFFF;
  color: var(--color-text);
  min-height: 48px;
}

.form-group textarea { min-height: 130px; resize: vertical; }

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

.form-message {
  margin-top: 14px;
  font-size: 0.875rem;
  padding: 10px 14px;
  border-radius: 6px;
}

.form-message--error {
  color: #C0392B;
  background: #FDEDEC;
  border: 1px solid #C0392B;
}

.contact-details {
  background: var(--color-alt);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

.contact-details__list { margin: 0 0 14px; }
.contact-details__list dt {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-secondary);
  margin-top: 14px;
}
.contact-details__list dd { margin: 4px 0 0; font-size: 15.5px; }
.contact-details__list dd address { font-style: normal; }

.contact-details__note { font-size: 15px; color: var(--color-text-muted); margin: 0; }

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

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

.about-story__body p { font-size: 16.5px; }

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

.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
}

.stat-card__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--color-accent-dark);
  margin-bottom: 6px;
}

.stat-card__label { font-size: 14.5px; color: var(--color-text-muted); }

.about-values__cta { font-size: 16px; font-weight: 600; margin: 0; }

.legal-page { padding-bottom: 40px; }

.legal-page__updated { font-size: 15px; color: var(--color-text-muted); margin-bottom: 26px; }

.legal-section { max-width: 78ch; margin-bottom: 26px; }
.legal-section h2 { font-size: 23px; text-transform: uppercase; margin-bottom: 10px; }
.legal-section p { font-size: 16px; }

/* ============================ SECTION SHELLS ============================ */

.about { padding-bottom: 70px; }
.reviews { padding-bottom: 70px; }
.what-you-get { padding-bottom: 66px; }
.fears { padding-bottom: 66px; }
.mission { padding-bottom: 66px; }
.info-gain { padding-bottom: 70px; }
.gallery { padding-bottom: 70px; }

.feature-block__body { display: flex; flex-direction: column; align-items: flex-start; }

.footer__col { min-width: 0; }

.about-page .page__lead { max-width: 60ch; }
.about-story { padding-top: 26px; }
.about-stats { padding: 54px 0; }
.about-values { padding-bottom: 70px; }

.terms-page .legal-section h2 { color: var(--color-primary); }
.privacy-page .legal-section h2 { color: var(--color-primary); }

/* ============================ SCROLL ANIMATION ============================ */

.benefit-card,
.step,
.feature-block,
.info-gain-card,
.review-card,
.fear-card,
.value-card,
.stat-card,
.timeline__item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

/* ============================ RESPONSIVE ============================ */

@media (min-width: 768px) {
  section { padding: 76px 0; }
  .container { padding: 0 40px; }
  .section-title { font-size: 36px; }
  .trust__list { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .info-gain-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .fears-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__content { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form__row { grid-template-columns: 1fr auto; }
  .about__inner, .about-story__inner { grid-template-columns: 0.85fr 1.15fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1.15fr 0.85fr; }
  .feature-block { grid-template-columns: 1fr 1fr; gap: 36px; padding: 34px; }
  .feature-block--reverse .feature-block__media { order: 2; }
  .hero { padding: 52px 0 70px; }
}

@media (min-width: 1024px) {
  .header__hamburger { display: none; }
  .header__cta { display: block; }
  .header__nav { display: block !important; }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .trust__list { grid-template-columns: repeat(4, 1fr); }
  .info-gain-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .fears-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__content { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .timeline { grid-template-columns: repeat(4, 1fr); }
  .section-subtitle { font-size: 18px; }
}

@media (min-width: 1200px) {
  .section-title { font-size: 40px; }
  .hero__title { font-size: 52px; }
}

@media (min-width: 1600px) {
  :root { --maxw: 1320px; }
}

@media (max-width: 1023px) {
  .header__nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--color-primary-dark);
    border-bottom: 3px solid var(--color-accent);
    padding: 10px 20px 18px;
  }
  .header__nav.is-open { display: block; }
  .header__nav ul { flex-direction: column; gap: 4px; }
  .header__nav a { display: block; padding: 12px 4px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .header__inner { position: relative; }
  .sticky-cta__text { flex-basis: 100%; text-align: center; }
  .sticky-cta__actions { flex-basis: 100%; justify-content: center; }
  .sticky-cta .btn-primary { flex: 1; }
}

body.no-scroll { overflow: hidden; }

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