:root {
  --color-primary: #12324A;
  --color-primary-dark: #0B2233;
  --color-primary-light: #24506F;
  --color-accent: #C8811C;
  --color-accent-dark: #A46716;
  --color-accent-soft: #F6E9D4;
  --color-bg: #FFFFFF;
  --color-bg-alt: #EAF1F6;
  --color-surface: #FFFFFF;
  --color-text: #16212B;
  --color-text-muted: #55636F;
  --color-border: #D3DFE8;
  --color-border-strong: #B3C4D2;
  --color-warning-bg: #FDF1DF;
  --color-warning-text: #8E5008;
  --color-error-bg: #FDEDEC;
  --color-error-text: #C0392B;
  --font-heading: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(12, 34, 51, .06), 0 2px 8px rgba(12, 34, 51, .05);
  --shadow-md: 0 6px 24px rgba(12, 34, 51, .09);
  --shadow-lg: 0 18px 48px rgba(12, 34, 51, .16);
  --header-h: 68px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

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

a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-accent-dark); }

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

p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.15rem; }

[hidden] { display: none !important; }

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

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

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

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

.section-title {
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: .5rem;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  max-width: 62ch;
  margin: 0 0 2.4rem;
}

/* ---------------------------------------------------------------- buttons */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  padding: 13px 24px; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; text-align: center; line-height: 1.2;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-primary { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.btn-primary:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); color: #fff; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-secondary:hover { background: var(--color-primary); color: #fff; }
.btn-ghost { background: transparent; color: var(--color-primary); border-color: var(--color-border-strong); }
.btn-ghost:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.hero .btn-ghost, .newsletter .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .55); }
.hero .btn-ghost:hover, .newsletter .btn-ghost:hover { background: #fff; color: var(--color-primary-dark); border-color: #fff; }
.btn-sm { padding: 9px 16px; font-size: .875rem; }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }

/* ---------------------------------------------------------------- header */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header__inner {
  display: flex; align-items: center; gap: 16px;
  min-height: var(--header-h); padding: 0 20px;
}
.header__logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.32rem;
  letter-spacing: .01em; color: var(--color-primary-dark); margin-right: auto;
}
.header__logo-mark { display: inline-flex; color: var(--color-accent); }
.header__logo-icon { width: 26px; height: 26px; }
.header__nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.header__nav a { font-size: .93rem; font-weight: 500; color: var(--color-text); padding: 6px 0; position: relative; }
.header__nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--color-accent); transition: right .22s ease;
}
.header__nav a:hover { color: var(--color-primary-dark); }
.header__nav a:hover::after { right: 0; }
.header__cta { margin-left: 18px; }
.header__hamburger {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; padding: 0; cursor: pointer;
  background: transparent; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  color: var(--color-primary-dark);
}
.header__hamburger-icon { width: 22px; height: 22px; }
.header--scrolled { box-shadow: var(--shadow-sm); }

/* ---------------------------------------------------------------- hero */
.hero {
  min-height: 50vh;
  padding: 56px 20px 64px;
  background-color: var(--color-primary);
  background-image: linear-gradient(135deg, #0B2233 0%, #12324A 52%, #1D4A69 100%);
  color: #fff;
}
.hero__inner { display: grid; gap: 34px; align-items: center; }
.hero__content { max-width: 62ch; }
.hero__eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 600;
  color: var(--color-accent); margin-bottom: .9rem;
}
.hero__title { color: #fff; font-size: clamp(1.85rem, 4.6vw, 2.85rem); font-weight: 800; }
.hero__subtitle { font-size: 1.02rem; line-height: 1.55; color: #E4EDF4; margin-bottom: .8rem; }
.hero__lead { font-size: .94rem; line-height: 1.58; color: #C6D6E2; margin-bottom: 0; }
.hero__bullets { list-style: none; padding: 0; margin: 1.1rem 0 1.4rem; display: grid; gap: .55rem; }
.hero__bullet { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; line-height: 1.5; color: #E4EDF4; }
.hero__bullet-icon { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 2px; color: var(--color-accent); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__media { position: relative; }
.hero__image {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .16);
}

/* ---------------------------------------------------------------- wave dividers */
.wave-divider { line-height: 0; }
.wave-divider svg { width: 100%; height: 54px; display: block; }
.wave-divider--top { background: var(--color-bg); }
.wave-divider--top svg path { fill: var(--color-primary); }
.wave-divider--bottom { background: var(--color-primary-dark); }
.wave-divider--bottom svg path { fill: var(--color-primary); }

/* ---------------------------------------------------------------- trust strip */
.trust-strip { padding: 30px 20px; background: var(--color-bg); border-bottom: 1px solid var(--color-border); }
.trust-strip__inner { display: grid; gap: 18px; }
.trust-badge { display: flex; align-items: center; gap: 13px; }
.trust-badge__icon { width: 30px; height: 30px; flex: 0 0 30px; color: var(--color-accent); }
.trust-badge__text { display: flex; flex-direction: column; }
.trust-badge__value { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--color-primary-dark); }
.trust-badge__label { font-size: .84rem; color: var(--color-text-muted); }

/* ---------------------------------------------------------------- products */
.products-section { }
.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-md); padding: 18px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-card__media { display: block; border-radius: var(--radius-sm); overflow: hidden; background: #F4F7FA; }
.product-card__image { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .3s ease; }
.product-card__media:hover .product-card__image { transform: scale(1.03); }
.product-card__title { font-size: 1.03rem; font-weight: 700; margin: 16px 0 8px; }
.product-card__rating { display: flex; align-items: center; gap: 6px; font-size: .86rem; font-weight: 600; color: var(--color-primary-dark); margin-bottom: 10px; }
.product-card__stars { color: var(--color-accent); letter-spacing: 1px; }
.product-card__reviews { font-weight: 400; color: var(--color-text-muted); }
.product-card__description {
  font-size: .9rem; color: var(--color-text-muted); 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: 0 0 10px;
  font-family: var(--font-body); font-size: .86rem; font-weight: 600;
  color: var(--color-accent-dark); cursor: pointer;
}
.product-card__more:hover { text-decoration: underline; }
.product-card__highlights { list-style: none; padding: 0; margin: 4px 0 18px; display: grid; gap: 7px; }
.product-card__highlights li { position: relative; padding-left: 20px; font-size: .855rem; color: var(--color-text); }
.product-card__highlights li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--color-accent);
}
.product-card__cta {
  margin-top: auto; display: block; text-align: center;
  background: var(--color-primary); color: #fff; font-weight: 600; font-size: .93rem;
  padding: 12px 18px; border-radius: var(--radius-sm); transition: background-color .2s ease;
}
.product-card__cta:hover { background: var(--color-accent); color: #fff; }

.product-badge {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  font-size: .8125rem; font-weight: 600;
  background: var(--color-warning-bg); color: var(--color-warning-text);
}
.product-badge--restock { background: var(--color-warning-bg); color: var(--color-warning-text); }
.product-card--unavailable .product-card__image { filter: grayscale(.55); }
.product-card--unavailable .product-card__title { color: var(--color-text-muted); }

.category-chips {
  display: flex; flex-wrap: wrap; justify-content: 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-radius: 999px;
  border: 1px solid var(--color-border-strong); background: var(--color-surface);
  font-size: .88rem; font-weight: 500; color: var(--color-primary-dark);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.category-chip:hover { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.category-chips__all { padding: 8px 20px; border-radius: 999px; font-size: .88rem; }

/* ---------------------------------------------------------------- benefits */
.benefits { position: relative; }
.benefits::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(18, 50, 74, .16) 1px, transparent 1px);
  background-size: 24px 24px; opacity: .5;
}
.benefits > .container { position: relative; }
.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-md); padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-card__icon {
  width: 34px; height: 34px; color: var(--color-accent); margin-bottom: 14px;
}
.benefit-card__title { font-size: 1.06rem; font-weight: 700; }
.benefit-card__text { font-size: .93rem; color: var(--color-text-muted); 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(18, 50, 74, .07) 0 1px, transparent 1px 16px);
}
.how-it-works > .container { position: relative; }
.steps-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.step-card { background: var(--color-surface); border-radius: var(--radius-md); padding: 26px 22px; border: 1px solid var(--color-border); }
.step-card__number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--color-accent); color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.06rem; margin-bottom: 14px;
}
.step-card__title { font-size: 1.02rem; font-weight: 700; }
.step-card__text { font-size: .92rem; color: var(--color-text-muted); margin: 0; }

/* ---------------------------------------------------------------- features */
.features { }
.feature-block { display: grid; gap: 26px; align-items: center; margin-bottom: 54px; }
.feature-block:last-of-type { margin-bottom: 0; }
.feature-block__media { }
.feature-block__image {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.feature-block__body { }
.feature-block__title { font-size: clamp(1.2rem, 2.6vw, 1.5rem); font-weight: 700; }
.feature-block__text { font-size: .97rem; color: var(--color-text-muted); }
.feature-block__list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.feature-block__item { position: relative; padding-left: 26px; font-size: .92rem; }
.feature-block__item::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 13px; height: 13px;
  border-radius: 50%; border: 3px solid var(--color-accent);
}
.feature-block__cta { }

/* ---------------------------------------------------------------- information gain */
.info-gain { }
.info-gain-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.info-gain-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md); padding: 24px 22px; box-shadow: var(--shadow-sm);
}
.info-gain-card__number {
  display: block; font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(1.3rem, 3.2vw, 1.7rem); color: var(--color-accent-dark); margin-bottom: 10px;
}
.info-gain-card__claim { font-size: .93rem; margin-bottom: .7rem; }
.info-gain-card__gap { font-size: .86rem; color: var(--color-text-muted); margin-bottom: .8rem; }
.info-gain-card__proof {
  display: inline-block; font-size: .74rem; text-transform: uppercase; letter-spacing: .07em;
  font-weight: 600; color: var(--color-primary); background: var(--color-bg-alt);
  padding: 4px 10px; border-radius: 999px;
}

/* ---------------------------------------------------------------- about */
.about { }
.about__grid { display: grid; gap: 32px; align-items: center; }
.about__media { }
.about__image { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 1 / 1; object-fit: cover; }
.about__body { }
.about__text { font-size: .96rem; color: var(--color-text-muted); }
.about__cta { margin-top: 8px; }

/* ---------------------------------------------------------------- reviews */
.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-md); padding: 24px 22px; box-shadow: var(--shadow-sm);
}
.review-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.review-card__stars { color: var(--color-accent); letter-spacing: 2px; font-size: 1rem; }
.review-card__badge {
  font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  color: #1F6B45; background: #E4F4EA; padding: 4px 9px; border-radius: 999px;
}
.review-card__text { font-size: .92rem; color: var(--color-text-muted); }
.review-card__author { font-weight: 700; font-size: .93rem; margin: 0 0 2px; }
.review-card__product { font-size: .82rem; color: var(--color-text-muted); margin: 0; }

/* ---------------------------------------------------------------- comparison */
.comparison { }
.comparison__wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--color-border); background: var(--color-surface); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 720px; font-size: .9rem; }
.comparison-table th, .comparison-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--color-border); vertical-align: top; }
.comparison-table thead th { background: var(--color-primary); color: #fff; font-family: var(--font-heading); font-weight: 600; font-size: .88rem; }
.comparison-table thead th.is-brand { background: var(--color-accent); }
.comparison-table tbody th { font-weight: 600; color: var(--color-primary-dark); width: 20%; }
.comparison-table td.is-brand { background: var(--color-accent-soft); font-weight: 600; color: var(--color-primary-dark); }
.comparison-table tbody tr:last-child th, .comparison-table tbody tr:last-child td { border-bottom: 0; }

/* ---------------------------------------------------------------- timeline */
.timeline-section { }
.timeline { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 22px; }
.timeline__item { position: relative; padding-left: 40px; }
.timeline__item::before {
  content: ""; position: absolute; left: 10px; top: 26px; bottom: -22px; width: 2px; background: var(--color-border-strong);
}
.timeline__item:last-child::before { display: none; }
.timeline__marker {
  position: absolute; left: 4px; top: 6px; width: 15px; height: 15px; border-radius: 50%;
  background: var(--color-accent); border: 3px solid var(--color-bg-alt);
}
.timeline__label { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--color-primary-dark); margin-bottom: 5px; }
.timeline__text { font-size: .93rem; color: var(--color-text-muted); margin: 0; }
.timeline__cta { font-weight: 600; color: var(--color-primary-dark); margin: 0; }

/* ---------------------------------------------------------------- fears */
.fears { }
.fears-grid { display: grid; gap: 18px; grid-template-columns: 1fr; margin-bottom: 24px; }
.fear-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-md); padding: 24px 22px;
}
.fear-card__title { font-size: 1.02rem; font-weight: 700; }
.fear-card__text { font-size: .92rem; color: var(--color-text-muted); margin-bottom: .6rem; }
.fear-card__stat {
  font-size: .82rem; font-weight: 600; color: var(--color-primary-dark);
  background: var(--color-bg-alt); padding: 8px 12px; border-radius: var(--radius-sm); margin: 0;
}
.fears__cta { font-weight: 600; color: var(--color-primary-dark); margin: 0; }

/* ---------------------------------------------------------------- who it is for */
.who-for { }
.personas-grid { display: grid; gap: 20px; grid-template-columns: 1fr; margin-bottom: 30px; }
.persona-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 26px 22px; box-shadow: var(--shadow-sm);
}
.persona-card__icon { width: 32px; height: 32px; color: var(--color-accent); margin-bottom: 12px; }
.persona-card__title { font-size: 1.02rem; font-weight: 700; }
.persona-card__text { font-size: .92rem; color: var(--color-text-muted); margin: 0; }
.not-for { background: var(--color-surface); border: 1px dashed var(--color-border-strong); border-radius: var(--radius-md); padding: 24px 22px; }
.not-for__title { font-size: 1rem; font-weight: 700; margin-bottom: .7rem; }
.not-for__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.not-for__item { position: relative; padding-left: 26px; font-size: .92rem; color: var(--color-text-muted); }
.not-for__item::before {
  content: "\00d7"; position: absolute; left: 4px; top: -1px;
  color: var(--color-error-text); font-weight: 700; font-size: 1.1rem;
}

/* ---------------------------------------------------------------- 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='40' viewBox='0 0 120 40'%3E%3Cpath d='M0 20 C15 6 30 34 45 20 C60 6 75 34 90 20 C105 6 112 27 120 20' fill='none' stroke='%2312324A' stroke-opacity='0.09' stroke-width='2'/%3E%3C/svg%3E");
}
.faq > .container { position: relative; }
.faq-list, .faq-more { display: grid; gap: 12px; }
.faq-more { margin-top: 12px; }
.faq-item {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 4px 20px;
}
.faq-item[open] { border-color: var(--color-accent); box-shadow: var(--shadow-sm); }
.faq-item > summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  color: var(--color-primary-dark); padding: 16px 34px 16px 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.5rem; font-weight: 400; color: var(--color-accent); line-height: 1;
}
.faq-item[open] .faq-question::after { content: "\2212"; }
.faq-answer { padding: 0 0 16px; }
.faq-answer p { font-size: .93rem; color: var(--color-text-muted); margin: 0; }
.faq-toggle {
  display: block; margin: 22px auto 0; padding: 12px 26px;
  background: transparent; border: 2px solid var(--color-primary); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .93rem; font-weight: 600; color: var(--color-primary);
  cursor: pointer; transition: background-color .2s ease, color .2s ease;
}
.faq-toggle:hover { background: var(--color-primary); color: #fff; }
.faq__cta { margin: 26px 0 0; text-align: center; font-weight: 600; color: var(--color-primary-dark); }

/* ---------------------------------------------------------------- gallery + lightbox */
.gallery { }
.gallery-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.gallery-item { margin: 0; border-radius: var(--radius-md); overflow: hidden; background: var(--color-surface); box-shadow: var(--shadow-sm); cursor: pointer; }
.gallery-item__image { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .32s ease; }
.gallery-item:hover .gallery-item__image { transform: scale(1.05); }
.gallery-item__caption { font-size: .82rem; color: var(--color-text-muted); padding: 10px 12px; }
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; padding: 30px;
  background: rgba(8, 20, 30, .92);
}
.lightbox__image { max-width: min(92vw, 820px); max-height: 76vh; border-radius: var(--radius-md); }
.lightbox__caption { color: #fff; font-size: .92rem; text-align: center; margin: 0; }
.lightbox__close {
  position: absolute; top: 18px; right: 20px; width: 44px; height: 44px;
  background: transparent; border: 0; color: #fff; font-size: 2rem; line-height: 1; cursor: pointer;
}

/* ---------------------------------------------------------------- newsletter */
.newsletter {
  background-color: var(--color-primary);
  background-image: linear-gradient(140deg, #10304A 0%, #17415E 60%, #2C5773 100%);
  color: #fff; position: relative; overflow: hidden;
}
.newsletter::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .07) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .07) 0 1px, transparent 1px 5px);
}
.newsletter__inner { position: relative; text-align: center; max-width: 720px; }
.newsletter__title { color: #fff; font-size: clamp(1.45rem, 3.6vw, 2rem); }
.newsletter__text { color: #DCE7F0; font-size: .98rem; margin-bottom: 1.6rem; }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.newsletter-form__input {
  flex: 1 1 280px; min-width: 0; padding: 14px 16px; font-family: var(--font-body); font-size: .95rem;
  border: 1px solid rgba(255, 255, 255, .3); border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .96); color: var(--color-text);
}
.newsletter-form__button {
  padding: 14px 26px; font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  background: var(--color-accent); color: #fff; border: 0; border-radius: var(--radius-sm); cursor: pointer;
  transition: background-color .2s ease;
}
.newsletter-form__button:hover { background: var(--color-accent-dark); }
.newsletter-message {
  max-width: 520px; margin: 16px auto 0; padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: .875rem; text-align: left;
}
.newsletter-message--error { color: var(--color-error-text); background: var(--color-error-bg); border: 1px solid var(--color-error-text); }
.newsletter__fineprint { color: #B9CBD9; font-size: .8rem; margin: 14px 0 0; }

/* ---------------------------------------------------------------- footer */
.footer { background: var(--color-primary-dark); color: #C9D6E1; padding: 54px 20px 26px; }
.footer__content { display: grid; gap: 30px; grid-template-columns: 1fr; }
.footer__col { }
.footer__brand { }
.footer__logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: #fff; display: block; margin-bottom: 12px; }
.footer__tagline { font-size: .89rem; color: #A9BCCB; }
.footer__address { font-style: normal; font-size: .87rem; line-height: 1.85; color: #A9BCCB; }
.footer__address a { color: #DCE7F0; }
.footer__address a:hover { color: var(--color-accent); }
.footer__title { font-family: var(--font-heading); font-size: .95rem; font-weight: 600; color: #fff; margin-bottom: 14px; }
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer__list a { font-size: .88rem; color: #A9BCCB; }
.footer__list a:hover { color: var(--color-accent); }
.footer__social { display: flex; flex-wrap: wrap; gap: 10px; }
.footer__social-link {
  font-size: .84rem; color: #DCE7F0; padding: 7px 13px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
}
.footer__social-link:hover { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.footer__languages { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 1200px; margin: 28px auto 0; }
.footer__languages:empty { display: none; }
.footer__languages a { font-size: .84rem; color: #A9BCCB; }
.footer__bottom { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .12); text-align: center; }
.footer__copyright { font-size: .85rem; color: #A9BCCB; margin: 0 0 8px; }
.footer__bottom p { font-size: .78rem; color: #8FA4B5; margin: 0; }

/* ---------------------------------------------------------------- cookie + sticky */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px;
  padding: 14px 20px; background: rgba(11, 34, 51, .97); color: #DCE7F0;
  backdrop-filter: blur(6px);
}
.cookie-banner__text { font-size: .85rem; margin: 0; }
.cookie-banner__text a { color: var(--color-accent); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; }
.cookie-accept, .cookie-decline {
  font-family: var(--font-body); font-size: .84rem; font-weight: 600; padding: 8px 18px;
  border-radius: var(--radius-sm); cursor: pointer; border: 1px solid transparent;
}
.cookie-accept { background: var(--color-accent); color: #fff; }
.cookie-accept:hover { background: var(--color-accent-dark); }
.cookie-decline { background: transparent; color: #DCE7F0; border-color: rgba(255, 255, 255, .35); }
.cookie-decline:hover { background: rgba(255, 255, 255, .1); }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 140;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 12px 20px; background: rgba(11, 34, 51, .95); color: #fff;
  backdrop-filter: blur(8px); border-top: 1px solid rgba(255, 255, 255, .12);
}
.sticky-cta__text { font-size: .88rem; margin: 0; color: #DCE7F0; }
.sticky-cta__button {
  background: var(--color-accent); color: #fff; font-weight: 600; font-size: .88rem;
  padding: 10px 20px; border-radius: var(--radius-sm); white-space: nowrap;
}
.sticky-cta__button:hover { background: var(--color-accent-dark); color: #fff; }
.sticky-cta__close {
  background: transparent; border: 0; color: #9FB4C4; font-size: 1.5rem; line-height: 1;
  cursor: pointer; padding: 0 4px;
}

/* ---------------------------------------------------------------- inner pages */
.about-page, .contact-page, .terms-page, .privacy-page { display: block; }
.legal-content { }
.legal-content__section { padding: 34px 20px; }
.legal-content__section:nth-of-type(even) { background: var(--color-bg-alt); }
.legal-content__section .section-title { font-size: clamp(1.2rem, 2.6vw, 1.5rem); }
.legal-content__section p { font-size: .93rem; color: var(--color-text-muted); max-width: 76ch; }

.breadcrumb-back { display: inline-block; padding: 22px 0 0; font-size: .88rem; font-weight: 600; }
.page-hero { padding: 24px 20px 44px; background: var(--color-bg-alt); }
.page-hero__title { font-size: clamp(1.7rem, 4.4vw, 2.5rem); font-weight: 800; margin-bottom: .4rem; }
.page-hero__text { font-size: 1rem; color: var(--color-text-muted); max-width: 68ch; margin: 0; }

.about-story { }
.about-story__grid { display: grid; gap: 32px; align-items: start; }
.about-story__media { }
.about-story__image { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 1 / 1; object-fit: cover; }
.about-story__body { }
.about-story__text { font-size: .96rem; color: var(--color-text-muted); }

.values { }
.values-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.value-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 24px 22px; box-shadow: var(--shadow-sm);
}
.value-card__icon { width: 30px; height: 30px; color: var(--color-accent); margin-bottom: 12px; }
.value-card__title { font-size: 1.01rem; font-weight: 700; }
.value-card__text { font-size: .92rem; color: var(--color-text-muted); margin: 0; }

.stats-row { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); margin-top: 34px; }
.stat { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 18px; text-align: center; }
.stat__value { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--color-accent-dark); }
.stat__label { display: block; font-size: .8rem; color: var(--color-text-muted); margin-top: 4px; }

.contact-section { }
.contact-grid { display: grid; gap: 30px; }
.contact-form { display: grid; gap: 16px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 26px 22px; }
.form-group { display: grid; gap: 6px; }
.form-group label { font-size: .87rem; font-weight: 600; color: var(--color-primary-dark); }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px; font-family: var(--font-body); font-size: .93rem;
  border: 1px solid var(--color-border-strong); border-radius: var(--radius-sm);
  background: var(--color-bg); color: var(--color-text);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--color-accent); outline: none; box-shadow: 0 0 0 3px rgba(200, 129, 28, .18); }
.form-message { padding: 10px 14px; border-radius: var(--radius-sm); font-size: .875rem; }
.form-message--error { color: var(--color-error-text); background: var(--color-error-bg); border: 1px solid var(--color-error-text); }
.contact-info { background: var(--color-bg-alt); border-radius: var(--radius-md); padding: 26px 22px; }
.contact-info__heading { font-size: 1.02rem; font-weight: 700; margin-bottom: 16px; }
.contact-info__item { margin-bottom: 18px; }
.contact-info__label { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; color: var(--color-accent-dark); margin-bottom: 4px; }
.contact-info__value { display: block; font-size: .92rem; color: var(--color-text); line-height: 1.7; }

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

/* ---------------------------------------------------------------- responsive */
@media (min-width: 640px) {
  .products-grid, .benefits-grid, .reviews-grid, .values-grid, .personas-grid,
  .info-gain-grid, .steps-grid, .fears-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__inner { grid-template-columns: repeat(3, 1fr); }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  section { padding: 78px 30px; }
  .hero { padding: 56px 30px 62px; }
  .footer__content { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1.15fr .85fr; }
  .about__grid, .about-story__grid { grid-template-columns: .85fr 1.15fr; }
  .newsletter__inner { margin: 0 auto; }
  .legal-content__section { padding: 44px 30px; }
  .page-hero { padding: 28px 30px 54px; }
}

@media (min-width: 1024px) {
  section { padding: 88px 40px; }
  .hero { padding: 58px 40px 66px; }
  .hero__inner { grid-template-columns: 1.05fr .95fr; gap: 42px; }
  .products-grid, .benefits-grid, .reviews-grid, .values-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .personas-grid { grid-template-columns: repeat(4, 1fr); }
  .info-gain-grid { grid-template-columns: repeat(3, 1fr); }
  .fears-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .footer__content { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .feature-block { grid-template-columns: 1fr 1fr; gap: 44px; }
  .feature-block--reverse .feature-block__media { order: 2; }
  .timeline { grid-template-columns: repeat(4, 1fr); gap: 26px; }
  .timeline__item { padding-left: 0; padding-top: 34px; }
  .timeline__item::before { left: 22px; right: -26px; top: 12px; bottom: auto; width: auto; height: 2px; }
  .timeline__marker { left: 0; top: 5px; }
}

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

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

@media (max-width: 900px) {
  .header__cta { display: none; }
  .header__hamburger { display: inline-flex; }
  .header__nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--color-bg); border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md); padding: 14px 20px 20px;
    transform: translateY(-140%); transition: transform .26s ease; z-index: 55;
  }
  .header__nav.is-open { transform: translateY(0); }
  .header__nav ul { flex-direction: column; gap: 4px; }
  .header__nav a { display: block; padding: 12px 4px; border-bottom: 1px solid var(--color-border); }
  .sticky-cta { flex-wrap: wrap; gap: 10px; padding: 10px 16px; }
  .sticky-cta__text { flex: 1 1 100%; font-size: .82rem; text-align: center; }
  .sticky-cta__button { flex: 1 1 auto; text-align: center; }
  .cookie-banner { flex-direction: column; text-align: center; gap: 10px; }
}

body.no-scroll { overflow: hidden; }

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