:root {
  --c-dark: #161E28;
  --c-primary: #1B2430;
  --c-primary-soft: #2C3948;
  --c-secondary: #4A5766;
  --c-accent: #A9500F;
  --c-accent-dark: #8A400B;
  --c-accent-light: #C2691C;
  --c-accent-soft: #FBF0E5;
  --c-bg: #FFFFFF;
  --c-bg-alt: #F2EDE7;
  --c-surface: #FFFFFF;
  --c-text: #1B2430;
  --c-text-muted: #56616F;
  --c-border: #E0D9D0;
  --c-border-soft: #EDE7DF;
  --c-warning-bg: #FDF3E3;
  --c-warning-text: #8A5A08;
  --c-error: #C0392B;
  --c-error-bg: #FDEDEC;
  --font-heading: 'Lexend', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(22, 30, 40, .06);
  --shadow-md: 0 4px 14px rgba(22, 30, 40, .08);
  --wrap: 1200px;
}

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

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

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

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.22; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--c-accent); }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

[hidden] { display: none !important; }

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

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

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

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

.section-head { max-width: 780px; margin: 0 auto 40px; text-align: center; }
.section-title { font-size: 1.75rem; letter-spacing: -.01em; margin-bottom: .4em; }
.section-subtitle { font-size: 1.0625rem; color: var(--c-text-muted); margin: 0; }

.icon { width: 24px; height: 24px; flex: none; }

/* ---------- buttons ---------- */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-heading); font-weight: 600; font-size: .9375rem;
  padding: 12px 22px; border-radius: var(--r-sm); border: 2px solid transparent;
  cursor: pointer; text-decoration: none; text-align: center;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--c-accent); color: #fff; }
.btn-primary:hover { background: var(--c-accent-dark); color: #fff; }
.btn-secondary { background: transparent; color: var(--c-accent-dark); border-color: var(--c-accent); }
.btn-secondary:hover { background: var(--c-accent); color: #fff; }
.btn-ghost { background: transparent; color: var(--c-primary); border-color: var(--c-border); }
.btn-ghost:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.btn-sm { padding: 9px 16px; font-size: .875rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

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

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border-soft);
}
.header__inner { display: flex; align-items: center; gap: 16px; min-height: 64px; }
.header__logo {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.375rem;
  letter-spacing: -.02em; color: var(--c-primary); text-decoration: none; margin-right: auto;
}
.header__logo:hover { color: var(--c-accent); }
.header__nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.header__nav a {
  font-family: var(--font-heading); font-weight: 500; font-size: .9375rem;
  color: var(--c-primary); text-decoration: none; padding: 6px 0;
  border-bottom: 2px solid transparent; transition: color .18s ease, border-color .18s ease;
}
.header__nav a:hover, .header__nav a.active { color: var(--c-accent); border-bottom-color: var(--c-accent); }
.header__cta { margin-left: 8px; }
.header__hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; background: none;
  border: 1px solid var(--c-border); border-radius: var(--r-sm); cursor: pointer;
}
.header__hamburger span { display: block; height: 2px; background: var(--c-primary); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.header__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header--scrolled { box-shadow: var(--shadow-md); }
.no-scroll { overflow: hidden; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 50vh; display: flex; align-items: center;
  padding: 40px 0; color: #fff;
  background-color: #1B2430;
  background-image: linear-gradient(135deg, #161E28 0%, #232F3D 55%, #3B2A1B 100%);
}
.hero__inner { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.hero__content { max-width: 640px; }
.hero__title { font-size: 1.75rem; color: #fff; letter-spacing: -.02em; margin-bottom: .4em; }
.hero__subtitle { font-size: 1rem; color: rgba(255, 255, 255, .88); margin-bottom: 1.1em; }
.hero__bullets { list-style: none; padding: 0; margin: 0 0 1.2em; }
.hero__bullets li {
  position: relative; padding-left: 26px; margin-bottom: .35em;
  color: rgba(255, 255, 255, .9); font-size: .9063rem; line-height: 1.5;
}
.hero__bullets li::before {
  content: ""; position: absolute; left: 4px; top: .62em; width: 9px; height: 9px;
  background: var(--c-accent-light); border-radius: 2px; transform: rotate(45deg);
}
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 10px 30px; margin: 0; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .18); }
.hero__stat { display: flex; flex-direction: column-reverse; }
.hero__stat-num { font-family: var(--font-heading); font-weight: 700; font-size: 1.1875rem; color: #fff; margin: 0; }
.hero__stat-label { font-size: .75rem; letter-spacing: .07em; text-transform: uppercase; color: rgba(255, 255, 255, .68); }
.hero__media { position: relative; }
.hero__img { width: 100%; max-height: 40vh; object-fit: cover; border-radius: var(--r-lg); box-shadow: 0 18px 40px rgba(0, 0, 0, .35); }

.wave-divider { line-height: 0; background: var(--c-bg-alt); }
.wave-divider svg { display: block; width: 100%; height: 42px; }
.wave-divider svg path { fill: var(--c-bg-alt); }
.hero + .wave-divider { background-color: #2A2A25; background-image: linear-gradient(180deg, #3B2A1B 0%, #2A2A25 100%); }

/* ---------- trust badges ---------- */
.trust-badges__inner { display: grid; grid-template-columns: 1fr; gap: 18px; }
.trust-badge {
  display: flex; gap: 14px; align-items: flex-start; padding: 18px;
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-md);
}
.trust-badge__icon { display: inline-flex; color: var(--c-accent); }
.trust-badge__text { display: flex; flex-direction: column; gap: 3px; }
.trust-badge__text strong { font-family: var(--font-heading); font-size: .9688rem; }
.trust-badge__text span { font-size: .875rem; color: var(--c-text-muted); line-height: 1.5; }

/* ---------- products ---------- */
.products-section .section-head { margin-bottom: 36px; }
.products-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.product-card {
  display: flex; flex-direction: column; padding: 18px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); transition: border-color .2s ease, box-shadow .2s ease;
}
.product-card:hover { border-color: var(--c-accent-light); box-shadow: var(--shadow-md); }
.product-card__media { display: block; border-radius: var(--r-md); overflow: hidden; background: var(--c-bg-alt); }
.product-card__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .3s ease; }
.product-card__media:hover .product-card__img { transform: scale(1.03); }
.product-card__title { font-size: 1.0625rem; margin: 16px 0 8px; }
.product-card__rating { display: flex; align-items: center; gap: 6px; font-size: .875rem; font-weight: 600; margin-bottom: 12px; }
.product-card__stars { color: var(--c-accent); letter-spacing: 1px; }
.product-card__reviews { color: var(--c-text-muted); font-weight: 400; }
.product-card__description {
  font-size: .9375rem; color: var(--c-text-muted); margin: 0 0 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 10px;
  font-family: var(--font-body); font-size: .875rem; font-weight: 600;
  color: var(--c-accent-dark); cursor: pointer; text-decoration: underline;
}
.product-card__more:hover { color: var(--c-accent); }
.product-card__highlights { list-style: none; padding: 0; margin: 4px 0 18px; }
.product-card__highlights li {
  position: relative; padding-left: 22px; margin-bottom: .45em;
  font-size: .875rem; line-height: 1.5;
}
.product-card__highlights li::before {
  content: ""; position: absolute; left: 4px; top: .55em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--c-accent-light);
}
.product-card__cta {
  margin-top: auto; display: block; text-align: center; padding: 12px 18px;
  background: var(--c-accent); color: #fff; text-decoration: none;
  font-family: var(--font-heading); font-weight: 600; font-size: .9375rem;
  border-radius: var(--r-sm); transition: background-color .18s ease;
}
.product-card__cta:hover { background: var(--c-accent-dark); color: #fff; }

.product-badge {
  display: inline-block; padding: 4px 10px; border-radius: var(--r-pill);
  background: var(--c-warning-bg); color: var(--c-warning-text);
  font-size: .8125rem; font-weight: 600; margin-bottom: 8px;
}
.product-badge--restock { background: var(--c-accent-soft); color: var(--c-accent-dark); }
.product-card--unavailable .product-card__img { filter: grayscale(.55); }
.product-card--unavailable .product-card__title { color: var(--c-text-muted); }

.category-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 36px; padding: 0; }
.category-chip {
  display: inline-flex; align-items: center; padding: 8px 16px;
  border: 1px solid var(--c-border); border-radius: var(--r-pill);
  background: var(--c-surface); color: var(--c-primary); text-decoration: none;
  font-size: .875rem; font-weight: 600; transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}
.category-chip:hover { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.category-chips__all { padding: 8px 18px; border-radius: var(--r-pill); font-size: .875rem; }

/* ---------- benefits ---------- */
.benefits::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(27, 36, 48, .16) 1px, transparent 1px);
  background-size: 24px 24px; opacity: .5;
}
.benefits > .container { position: relative; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.benefit-card {
  padding: 24px; background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); transition: transform .2s ease, box-shadow .2s ease;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: 14px; border-radius: var(--r-md);
  background: var(--c-accent-soft); color: var(--c-accent-dark);
}
.benefit-card__title { font-size: 1.0625rem; margin-bottom: .5em; }
.benefit-card__text { font-size: .9375rem; color: var(--c-text-muted); margin: 0; }

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

/* ---------- features ---------- */
.features-list { display: flex; flex-direction: column; gap: 48px; }
.feature-block { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
.feature-block__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.feature-block__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-block__body { max-width: 620px; }
.feature-block__title { font-size: 1.375rem; margin-bottom: .5em; }
.feature-block__text { font-size: 1rem; color: var(--c-text-muted); }
.feature-block__bullets { list-style: none; padding: 0; margin: 0 0 22px; }
.feature-block__bullets li { position: relative; padding-left: 26px; margin-bottom: .6em; font-size: .9375rem; }
.feature-block__bullets li::before {
  content: ""; position: absolute; left: 3px; top: .5em; width: 10px; height: 10px;
  border: 2px solid var(--c-accent); border-radius: 3px;
}
.feature-block__cta { margin-top: 4px; }

/* ---------- information gain ---------- */
.info-gain-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.info-gain-card {
  display: flex; flex-direction: column; gap: 10px; padding: 24px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-accent); border-radius: var(--r-md);
}
.info-gain-card__number {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.375rem;
  line-height: 1.2; color: var(--c-accent-dark); margin: 0;
}
.info-gain-card__claim { font-size: .9375rem; margin: 0; }
.info-gain-card__gap { font-size: .875rem; color: var(--c-text-muted); margin: 0; padding-top: 8px; border-top: 1px dashed var(--c-border); }
.info-gain-card__proof {
  margin: 0; font-size: .75rem; letter-spacing: .05em; text-transform: uppercase;
  color: var(--c-secondary); font-weight: 600;
}

/* ---------- about ---------- */
.about__grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.about__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.about__body { max-width: 640px; }
.about__text p { font-size: 1rem; color: var(--c-text-muted); }
.about__links { font-size: .9375rem; color: var(--c-text-muted); }
.about__cta { margin-top: 8px; }
.about__stats { border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); padding: 24px 0; margin-top: 44px; gap: 20px 40px; }
.about__stats .hero__stat-num { color: var(--c-primary); }
.about__stats .hero__stat-label { color: var(--c-text-muted); }
.about-story { padding-top: 40px; }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.review-card { padding: 24px; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); }
.review-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.review-card__stars { color: var(--c-accent); letter-spacing: 2px; font-size: 1rem; }
.review-card__badge {
  font-size: .6875rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700;
  color: #1F5F3F; background: #E8F5EE; padding: 4px 10px; border-radius: var(--r-pill);
}
.review-card__text { font-size: .9375rem; color: var(--c-text-muted); }
.review-card__author { font-family: var(--font-heading); font-weight: 600; font-size: .9375rem; margin: 0; }
.review-card__product { font-family: var(--font-body); font-weight: 400; color: var(--c-text-muted); }

/* ---------- comparison ---------- */
.comparison__wrap { overflow-x: auto; border: 1px solid var(--c-border); border-radius: var(--r-lg); background: var(--c-surface); }
.comparison-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: .9375rem; }
.comparison-table th, .comparison-table td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--c-border-soft); }
.comparison-table thead th { font-family: var(--font-heading); font-size: .9375rem; background: var(--c-bg-alt); color: var(--c-primary); }
.comparison-table tbody th { font-weight: 600; color: var(--c-primary); width: 22%; }
.comparison-table td { color: var(--c-text-muted); }
.comparison-table__brand { background: var(--c-accent-soft); color: var(--c-primary) !important; font-weight: 600; }
.comparison-table thead .comparison-table__brand { background: var(--c-accent); color: #fff !important; }
.comparison-table tbody tr:last-child th, .comparison-table tbody tr:last-child td { border-bottom: 0; }

/* ---------- what you get / timeline ---------- */
.timeline { list-style: none; margin: 0 0 28px; padding: 0 0 0 28px; position: relative; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--c-border); }
.timeline-item { position: relative; padding-bottom: 26px; }
.timeline-item__marker { position: absolute; left: -28px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--c-accent); border: 3px solid var(--c-bg); }
.timeline-item__label { font-size: 1rem; margin-bottom: .35em; color: var(--c-accent-dark); }
.timeline-item__text { font-size: .9375rem; color: var(--c-text-muted); margin: 0; }
.timeline__cta { text-align: center; font-size: .9375rem; font-weight: 600; margin: 0; }

/* ---------- fears ---------- */
.fears-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 28px; }
.fear-card { padding: 24px; background: var(--c-surface); border: 1px solid var(--c-border); border-top: 3px solid var(--c-accent); border-radius: var(--r-md); }
.fear-card__title { font-size: 1.0625rem; margin-bottom: .5em; }
.fear-card__text { font-size: .9375rem; color: var(--c-text-muted); margin: 0; }
.fear-card__stat {
  margin: 14px 0 0; padding: 10px 14px; background: var(--c-accent-soft);
  border-radius: var(--r-sm); font-size: .875rem; font-weight: 600; color: var(--c-accent-dark);
}
.fears__cta { text-align: center; font-size: .9375rem; font-weight: 600; margin: 0; }

/* ---------- use cases ---------- */
.use-cases-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.use-case { padding: 24px; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); }
.use-case__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-bottom: 14px; border-radius: 50%;
  background: var(--c-bg-alt); color: var(--c-accent-dark);
}
.use-case__title { font-size: 1.0625rem; margin-bottom: .45em; }
.use-case__text { font-size: .9375rem; color: var(--c-text-muted); margin: 0; }

/* ---------- FAQ ---------- */
.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='30' viewBox='0 0 120 30'%3E%3Cpath d='M0 15c15 12 30 12 45 0s30-12 45 0 30 12 30 12' fill='none' stroke='%231B2430' stroke-opacity='.09' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 120px 30px;
}
.faq > .container { position: relative; max-width: 860px; }
.faq-list, .faq-more { display: flex; flex-direction: column; gap: 12px; }
.faq-more { margin-top: 12px; }
.faq-item { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-md); overflow: hidden; }
.faq-item > summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 14px;
  padding: 16px 20px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+"; flex: none; font-size: 1.4rem; line-height: 1; color: var(--c-accent);
  transition: transform .2s ease;
}
.faq-item[open] > summary::after { content: "\2212"; }
.faq-item[open] > summary { background: var(--c-accent-soft); }
.faq-question { color: var(--c-primary); }
.faq-answer { padding: 4px 20px 18px; }
.faq-answer p { font-size: .9375rem; color: var(--c-text-muted); margin: 0; }
.faq-toggle {
  display: block; margin: 22px auto 0; padding: 12px 26px;
  background: transparent; border: 2px solid var(--c-accent); border-radius: var(--r-sm);
  font-family: var(--font-heading); font-weight: 600; font-size: .9375rem;
  color: var(--c-accent-dark); cursor: pointer; transition: background-color .18s ease, color .18s ease;
}
.faq-toggle:hover { background: var(--c-accent); color: #fff; }
.faq__cta { text-align: center; font-size: .9375rem; font-weight: 600; margin: 26px 0 0; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.gallery-item { margin: 0; border-radius: var(--r-md); overflow: hidden; background: var(--c-surface); border: 1px solid var(--c-border); cursor: pointer; }
.gallery-item__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover .gallery-item__img { transform: scale(1.04); }
.gallery-item__caption { padding: 12px 14px; font-size: .8125rem; color: var(--c-text-muted); }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; padding: 24px;
  background: rgba(10, 14, 20, .92);
}
.lightbox__img { max-width: min(92vw, 900px); max-height: 76vh; border-radius: var(--r-md); }
.lightbox__caption { color: #fff; font-size: .9375rem; margin: 0; text-align: center; }
.lightbox__close {
  position: absolute; top: 16px; right: 20px; width: 44px; height: 44px;
  background: none; border: 0; color: #fff; font-size: 2rem; line-height: 1; cursor: pointer;
}

/* ---------- newsletter ---------- */
.section.newsletter {
  background-color: #1B2430;
  background-image: linear-gradient(135deg, #1B2430 0%, #2C3948 60%, #4A3320 100%);
  color: #fff; overflow: hidden;
}
.newsletter::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .07;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .8) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .8) 0 1px, transparent 1px 5px);
}
.newsletter__inner { position: relative; max-width: 680px; text-align: center; }
.newsletter .section-title { color: #fff; }
.newsletter .section-subtitle { color: rgba(255, 255, 255, .85); margin-bottom: 26px; }
.newsletter__form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 12px; }
.newsletter__input {
  flex: 1 1 260px; min-width: 0; padding: 13px 16px; font-family: var(--font-body); font-size: 1rem;
  color: var(--c-text); background: #fff; border: 2px solid transparent; border-radius: var(--r-sm);
}
.newsletter__input:focus { outline: none; border-color: var(--c-accent-light); }
.newsletter__btn {
  padding: 13px 26px; background: var(--c-accent); color: #fff; border: 0; border-radius: var(--r-sm);
  font-family: var(--font-heading); font-weight: 600; font-size: .9375rem; cursor: pointer;
  transition: background-color .18s ease;
}
.newsletter__btn:hover { background: var(--c-accent-light); }
.newsletter__note { font-size: .8125rem; color: rgba(255, 255, 255, .7); margin: 0; }
.newsletter-message {
  max-width: 460px; margin: 0 auto 14px; padding: 10px 14px; border-radius: var(--r-sm);
  font-size: .875rem; text-align: left;
}
.newsletter-message--error { color: var(--c-error); background: var(--c-error-bg); border: 1px solid var(--c-error); }

/* ---------- footer ---------- */
.footer { background: var(--c-dark); color: rgba(255, 255, 255, .78); padding: 56px 0 26px; font-size: .9375rem; }
.footer__content { display: grid; grid-template-columns: 1fr; gap: 32px; }
.footer__col { min-width: 0; }
.footer__logo { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 1.375rem; color: #fff; margin-bottom: 10px; }
.footer__tagline { color: rgba(255, 255, 255, .68); margin-bottom: 14px; }
.footer__contact { font-style: normal; line-height: 1.7; margin-bottom: 12px; color: rgba(255, 255, 255, .78); }
.footer__contact a { color: #fff; text-decoration: none; }
.footer__contact a:hover { color: var(--c-accent-light); }
.footer__hours { color: rgba(255, 255, 255, .6); font-size: .875rem; margin: 0; }
.footer__heading { font-size: .8125rem; letter-spacing: .09em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: .55em; }
.footer__list a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.footer__list a:hover { color: var(--c-accent-light); }
.footer__social { display: flex; flex-wrap: wrap; gap: 10px; }
.footer__social-link {
  padding: 7px 14px; border: 1px solid rgba(255, 255, 255, .22); border-radius: var(--r-pill);
  color: rgba(255, 255, 255, .82); text-decoration: none; font-size: .8125rem;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.footer__social-link:hover { background: #fff; color: var(--c-dark); border-color: #fff; }
.footer__languages { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.footer__languages:empty { display: none; }
.footer__bottom { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .14); }
.footer__copyright { color: rgba(255, 255, 255, .72); margin: 0 0 .6em; font-size: .875rem; }
.footer p { color: rgba(255, 255, 255, .6); font-size: .8125rem; }
.footer a { color: rgba(255, 255, 255, .82); }

/* ---------- cookie banner ---------- */
.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: 12px 20px; background: rgba(22, 30, 40, .97); color: rgba(255, 255, 255, .88);
  backdrop-filter: blur(6px);
}
.cookie-banner__text { margin: 0; font-size: .875rem; }
.cookie-banner__text a { color: #fff; }
.cookie-banner__actions { display: flex; gap: 10px; }

/* ---------- sticky CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 140;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px;
  padding: 12px 48px 12px 20px; background: rgba(22, 30, 40, .95);
  backdrop-filter: blur(8px); border-top: 1px solid rgba(255, 255, 255, .14);
}
.sticky-cta__text { margin: 0; color: rgba(255, 255, 255, .9); font-size: .875rem; font-weight: 600; }
.sticky-cta__btn {
  padding: 10px 20px; background: var(--c-accent); color: #fff; text-decoration: none;
  border-radius: var(--r-sm); font-family: var(--font-heading); font-weight: 600; font-size: .875rem;
}
.sticky-cta__btn:hover { background: var(--c-accent-light); color: #fff; }
.sticky-cta__close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; background: none; border: 0; color: rgba(255, 255, 255, .8);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
}

/* ---------- inner pages ---------- */
.page-hero { padding: 48px 0 34px; background: var(--c-bg-alt); border-bottom: 1px solid var(--c-border); }
.page-hero__title { font-size: 2rem; margin: 12px 0 .3em; }
.page-hero__sub { font-size: 1.0625rem; color: var(--c-text-muted); margin: 0; max-width: 680px; }
.back-link { font-size: .875rem; font-weight: 600; text-decoration: none; }
.about-page, .contact-page, .terms-page, .privacy-page { display: block; }

.contact-section { padding-top: 46px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.contact-form-wrap { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 26px; }
.contact-form__title, .contact-info__title { font-size: 1.25rem; margin-bottom: .7em; }
.contact-form { display: block; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: 6px; color: var(--c-primary); }
.form-group input, .form-group textarea {
  width: 100%; padding: 11px 14px; font-family: var(--font-body); font-size: 1rem; color: var(--c-text);
  background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--r-sm);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 3px var(--c-accent-soft); }
.form-group textarea { resize: vertical; }
.form-req { color: var(--c-error); }
.form-message { margin-top: 16px; padding: 10px 14px; border-radius: var(--r-sm); font-size: .875rem; }
.form-message--error { color: var(--c-error); background: var(--c-error-bg); border: 1px solid var(--c-error); }

.contact-info { padding-top: 4px; }
.contact-info__item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-info__icon { display: inline-flex; color: var(--c-accent); padding-top: 2px; }
.contact-info__item strong { display: block; font-family: var(--font-heading); font-size: .9375rem; margin-bottom: 2px; }
.contact-info__item p, .contact-info__item address { margin: 0; font-style: normal; font-size: .9375rem; color: var(--c-text-muted); line-height: 1.6; }
.contact-info__note { font-size: .9375rem; color: var(--c-text-muted); padding: 16px; background: var(--c-bg-alt); border-radius: var(--r-md); }

.values-section, .who-section { padding-top: 56px; }
.values-grid, .personas-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.value-card, .persona-card { padding: 24px; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); }
.value-card__icon, .persona-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: 14px; border-radius: var(--r-md);
  background: var(--c-accent-soft); color: var(--c-accent-dark);
}
.value-card__title, .persona-card__title { font-size: 1.0625rem; margin-bottom: .5em; }
.value-card__text, .persona-card__text { font-size: .9375rem; color: var(--c-text-muted); margin: 0; }
.not-for { margin-top: 34px; padding: 24px; background: var(--c-bg-alt); border-left: 4px solid var(--c-accent); border-radius: var(--r-md); }
.not-for__title { font-size: 1.0625rem; margin-bottom: .6em; }
.not-for__list { margin: 0; padding-left: 1.2em; }
.not-for__list li { font-size: .9375rem; color: var(--c-text-muted); margin-bottom: .5em; }

.legal { padding-top: 46px; }
.legal__inner { max-width: 820px; }
.legal__section { margin-bottom: 30px; }
.legal__section h3 { font-size: 1.1875rem; margin-bottom: .5em; }
.legal__section p { font-size: .9688rem; color: var(--c-text-muted); }

/* ---------- intro band ---------- */
.intro { position: relative; }
.intro .section-head { margin-bottom: 26px; }
.intro__lead { max-width: 760px; margin: 0 auto 26px; }
.intro__lead p { font-size: 1.0625rem; color: var(--c-text-muted); margin: 0; }
.intro__points { display: grid; grid-template-columns: 1fr; gap: 14px; list-style: none; padding: 0; margin: 0; max-width: 1000px; margin-inline: auto; }
.intro__points li {
  position: relative; padding: 16px 18px 16px 42px; font-size: .9375rem;
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-md);
}
.intro__points li::before {
  content: ""; position: absolute; left: 18px; top: 1.45em; width: 10px; height: 10px;
  background: var(--c-accent); border-radius: 2px; transform: rotate(45deg);
}

/* ---------- section wrappers ---------- */
.trust-badges { padding: 40px 0; }
.trust-badges .section-head { margin-bottom: 28px; }
.features .section-head, .info-gain .section-head { margin-bottom: 44px; }
.features { overflow: hidden; }
.info-gain { position: relative; }
.about { position: relative; }
.reviews { position: relative; }
.comparison .section-head { margin-bottom: 34px; }
.comparison { position: relative; }
.what-you-get { position: relative; }
.fears { position: relative; }
.use-cases { position: relative; }
.gallery { position: relative; }
.gallery .section-head { margin-bottom: 34px; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }
.is-visible { opacity: 1; }
.is-active { color: var(--c-accent); }
.show { display: block; }
.collapsed { display: none; }
.open { display: block; }
.active { color: var(--c-accent); }
.is-open { display: block; }

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

/* ---------- responsive ---------- */
@media (min-width: 600px) {
  .trust-badges__inner { grid-template-columns: repeat(2, 1fr); }
  .intro__points { grid-template-columns: repeat(3, 1fr); }
  .products-grid, .benefits-grid, .info-gain-grid, .reviews-grid,
  .use-cases-grid, .values-grid, .personas-grid, .fears-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .section { padding: 80px 0; }
  .container { padding: 0 32px; }
  .section-title { font-size: 2.125rem; }
  .hero__title { font-size: 2.125rem; }
  .hero__subtitle { font-size: 1.0625rem; }
  .page-hero__title { font-size: 2.5rem; }
  .footer__content { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1.15fr .85fr; }
  .about__grid { grid-template-columns: .85fr 1.15fr; gap: 44px; }
  .newsletter__form { flex-wrap: nowrap; }
  .cookie-banner { padding: 14px 32px; }
}

@media (min-width: 1024px) {
  .hero { padding: 40px 0; }
  .hero__inner { grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
  .hero__title { font-size: 2.375rem; }
  .products-grid, .benefits-grid, .info-gain-grid,
  .use-cases-grid, .values-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid, .personas-grid, .fears-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .how-steps { grid-template-columns: repeat(4, 1fr); }
  .trust-badges__inner { grid-template-columns: repeat(4, 1fr); }
  .footer__content { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
  .feature-block { grid-template-columns: 1fr 1fr; gap: 44px; }
  .feature-block--reverse .feature-block__media { order: 2; }
  .feature-block--reverse .feature-block__body { order: 1; }
  .timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 34px 0 0; }
  .timeline::before { left: 0; right: 0; top: 7px; bottom: auto; width: auto; height: 2px; }
  .timeline-item { padding: 0; }
  .timeline-item__marker { left: 0; top: -34px; }
}

@media (min-width: 1200px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .section-head { margin-bottom: 52px; }
}

@media (max-width: 899px) {
  .header__nav {
    position: fixed; inset: 64px 0 auto 0; background: #fff;
    border-bottom: 1px solid var(--c-border); padding: 16px 20px 22px;
    transform: translateY(-140%); transition: transform .25s 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: 11px 4px; border-bottom: 1px solid var(--c-border-soft); }
  .header__hamburger { display: flex; order: 3; }
  .header__cta { order: 2; }
  .header__cta .btn-primary { padding: 8px 12px; font-size: .8125rem; }
}

@media (min-width: 900px) {
  .header__hamburger { display: none; }
}

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