:root {
  --c-primary: #21514A;
  --c-primary-dark: #163831;
  --c-secondary: #4E8C7E;
  --c-accent: #C25A18;
  --c-accent-hover: #A44A11;
  --c-accent-soft: #FBEDE3;
  --c-bg: #FDF9F4;
  --c-alt: #F1E7DA;
  --c-surface: #FFFFFF;
  --c-text: #26312F;
  --c-muted: #5C6A66;
  --c-border: #E5DACB;
  --c-warning-bg: #FCEFD3;
  --c-warning-text: #8A5310;
  --font-heading: 'Rubik', system-ui, -apple-system, sans-serif;
  --font-body: 'Nunito Sans', system-ui, -apple-system, sans-serif;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --sh-sm: 0 1px 3px rgba(38, 49, 47, .07);
  --sh-md: 0 4px 16px rgba(38, 49, 47, .09);
  --sh-lg: 0 14px 40px rgba(38, 49, 47, .14);
  --header-h: 72px;
}

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

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

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

[hidden] { display: none !important; }

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

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.22; margin: 0 0 .5em; color: var(--c-text); }
h1 { font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); font-weight: 700; letter-spacing: -.01em; }
h3 { font-size: clamp(1.1rem, 1.7vw, 1.3rem); font-weight: 600; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.15rem; }
a { color: var(--c-accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-accent-hover); }

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

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

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

section { padding: 60px 20px; position: relative; }
section[id], div[id].hero { scroll-margin-top: calc(var(--header-h) + 16px); }
section > .container { padding: 0; }
.section-alt { background: var(--c-alt); }

.section-title { text-align: center; max-width: 24ch; margin-left: auto; margin-right: auto; }
.section-subtitle {
  text-align: center; max-width: 62ch; margin: 0 auto 2.5rem;
  color: var(--c-muted); font-size: 1.02rem;
}
.section-closer {
  text-align: center; max-width: 60ch; margin: 2rem auto 0;
  color: var(--c-muted); font-size: .97rem; font-weight: 600;
}

.icon svg, [class$="__icon"] svg { width: 100%; height: 100%; }

/* ---------- buttons ---------- */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-heading); font-weight: 600; font-size: .97rem;
  padding: 13px 26px; border-radius: var(--r-pill); border: 2px solid transparent;
  cursor: pointer; text-align: center; transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.btn-primary { background: var(--c-accent); color: #fff; }
.btn-primary:hover { background: var(--c-accent-hover); color: #fff; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--c-accent); 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-primary); }
.btn-ghost:hover { background: var(--c-primary); color: #fff; }
.hero .btn-ghost, .newsletter .btn-ghost, .sticky-cta .btn-ghost, .cookie-banner .btn-ghost {
  color: #fff; border-color: rgba(255, 255, 255, .75);
}
.hero .btn-ghost:hover, .newsletter .btn-ghost:hover, .sticky-cta .btn-ghost:hover, .cookie-banner .btn-ghost:hover {
  background: #fff; color: var(--c-primary);
}
.btn-sm { padding: 9px 18px; font-size: .88rem; }
.btn-lg { padding: 15px 32px; font-size: 1.03rem; }

/* ---------- header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--header-h);
  background: rgba(253, 249, 244, .93);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow .25s ease;
}
.header--scrolled { box-shadow: var(--sh-md); }
.header__inner { display: flex; align-items: center; gap: 1.25rem; height: var(--header-h); }
.header__logo { display: flex; flex-direction: column; line-height: 1.05; color: var(--c-primary); }
.header__logo:hover { color: var(--c-primary); }
.header__logo-mark { font-family: var(--font-heading); font-weight: 800; font-size: 1.45rem; letter-spacing: .04em; }
.header__logo-sub { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--c-muted); }
.header__nav { margin-left: auto; }
.header__nav ul { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.header__nav a { color: var(--c-text); font-weight: 600; font-size: .95rem; position: relative; }
.header__nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--c-accent); transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.header__nav a:hover::after, .header__nav a.is-active::after { transform: scaleX(1); }
.header__cta { flex-shrink: 0; }
.header__hamburger {
  display: none; width: 44px; height: 44px; padding: 9px;
  background: transparent; border: 1px solid var(--c-border); border-radius: var(--r-sm);
  color: var(--c-primary); cursor: pointer;
}
.header__hamburger svg { width: 100%; height: 100%; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 50vh; display: flex; align-items: center;
  padding: 44px 20px 66px; background: var(--c-primary); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(22, 56, 49, .93) 0%, rgba(33, 81, 74, .82) 45%, rgba(194, 90, 24, .58) 100%);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 46px; z-index: 3;
  background: var(--c-alt);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 46' preserveAspectRatio='none'%3E%3Cpath d='M0 46h1440V14c-180 24-360 24-540 6S480-10 270 4 0 22 0 22z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 46' preserveAspectRatio='none'%3E%3Cpath d='M0 46h1440V14c-180 24-360 24-540 6S480-10 270 4 0 22 0 22z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}
.hero__inner { position: relative; z-index: 2; max-width: 940px; }
.hero__title { color: #fff; margin-bottom: .55em; text-shadow: 0 2px 18px rgba(0, 0, 0, .3); }
.hero__subtitle { color: #F6EFE7; font-size: 1.05rem; max-width: 68ch; margin-bottom: 1.9rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- hero detail + trust badges ---------- */
.hero-detail__grid { display: grid; gap: 2rem; align-items: start; }
.hero-detail__lead { font-size: 1.05rem; margin: 0; }
.hero-detail__bullets { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.hero-detail__bullets li { display: flex; gap: .8rem; align-items: flex-start; font-size: .97rem; }
.hero-detail__icon { flex: 0 0 22px; width: 22px; height: 22px; color: var(--c-secondary); margin-top: 3px; }
.trust-badges {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  margin-top: 2.6rem; padding-top: 2rem; border-top: 1px solid var(--c-border);
}
.trust-badge { display: flex; gap: .8rem; align-items: flex-start; }
.trust-badge__icon { flex: 0 0 30px; width: 30px; height: 30px; color: var(--c-accent); }
.trust-badge__body { display: flex; flex-direction: column; }
.trust-badge__title { font-family: var(--font-heading); font-weight: 600; font-size: .95rem; }
.trust-badge__sub { font-size: .84rem; color: var(--c-muted); }

/* ---------- products ---------- */
.products-section { background: var(--c-bg); }
.products-grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
.product-card {
  display: flex; flex-direction: column; background: var(--c-surface);
  border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.product-card__media { display: block; background: #fff; padding: 14px; }
.product-card__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; }
.product-card__body { display: flex; flex-direction: column; flex: 1; padding: 0 20px 20px; }
.product-card__title { font-size: 1.04rem; margin-bottom: .4rem; }
.product-card__rating { display: flex; align-items: center; gap: .35rem; font-weight: 700; font-size: .92rem; margin-bottom: .7rem; }
.product-card__stars { color: #E0A100; font-size: 1.05rem; }
.product-card__reviews { font-weight: 400; color: var(--c-muted); }
.product-card__description {
  font-size: .93rem; color: var(--c-text); margin-bottom: .35rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card__description.is-expanded { -webkit-line-clamp: unset; overflow: visible; }
.product-card__more {
  align-self: flex-start; background: none; border: 0; padding: 0 0 .8rem;
  color: var(--c-accent); font-family: var(--font-body); font-size: .9rem; font-weight: 700; cursor: pointer;
}
.product-card__more:hover { color: var(--c-accent-hover); text-decoration: underline; }
.product-card__highlights { list-style: none; margin: 0 0 1.1rem; padding: 0; display: grid; gap: .5rem; }
.product-card__highlights li {
  position: relative; padding-left: 1.35rem; font-size: .87rem; color: var(--c-muted); line-height: 1.5;
}
.product-card__highlights li::before {
  content: ""; position: absolute; left: 0; top: .48em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--c-secondary);
}
.product-card__cta {
  margin-top: auto; display: block; text-align: center; padding: 12px 20px;
  background: var(--c-accent); color: #fff; border-radius: var(--r-pill); font-weight: 700; font-size: .95rem;
  transition: background-color .22s ease;
}
.product-card__cta:hover { background: var(--c-accent-hover); 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; line-height: 1.3; margin-bottom: .6rem;
}
.product-badge--restock { background: var(--c-accent-soft); color: var(--c-accent-hover); }
.product-card--unavailable .product-card__media img { filter: grayscale(.55); }
.product-card--unavailable .product-card__title { color: var(--c-muted); }

/* ---------- category chips ---------- */
.category-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
  margin-top: 2.6rem; padding-top: 2rem; border-top: 1px solid var(--c-border);
}
.category-chip {
  display: inline-flex; align-items: center; padding: 8px 14px;
  border: 1px solid var(--c-border); border-radius: var(--r-pill);
  background: var(--c-surface); color: var(--c-text);
  font-size: .86rem; font-weight: 600; transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.category-chip:hover { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.category-chips__all { margin-left: .3rem; padding: 8px 20px; font-size: .88rem; }

/* ---------- benefits ---------- */
.benefits { position: relative; }
.benefits::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(33, 81, 74, .16) 1px, transparent 1px);
  background-size: 24px 24px; opacity: .5;
}
.benefits > .container { position: relative; z-index: 1; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.benefit-card {
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg);
  padding: 28px 24px; box-shadow: var(--sh-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.benefit-card__icon {
  display: block; width: 34px; height: 34px; color: var(--c-accent); margin-bottom: 1rem;
}
.benefit-card__title { font-size: 1.06rem; margin-bottom: .5rem; }
.benefit-card__desc { margin: 0; font-size: .93rem; color: var(--c-muted); }

/* ---------- how it works ---------- */
.how-it-works { position: relative; }
.how-it-works::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(45deg, rgba(33, 81, 74, .05) 0 1px, transparent 1px 16px);
}
.how-it-works > .container { position: relative; z-index: 1; }
.steps-row { display: grid; grid-template-columns: 1fr; gap: 1.8rem; counter-reset: step; }
.step { text-align: center; padding: 0 .5rem; }
.step__number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--c-accent); color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; margin-bottom: 1rem;
}
.step__title { font-size: 1.05rem; margin-bottom: .4rem; }
.step__desc { margin: 0; font-size: .92rem; color: var(--c-muted); }

/* ---------- features ---------- */
.feature-block {
  display: grid; grid-template-columns: 1fr; gap: 1.8rem; align-items: center;
  padding: 2.2rem 0; border-bottom: 1px solid var(--c-border);
}
.feature-block:last-of-type { border-bottom: 0; }
.feature-block__media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--sh-md);
}
.feature-block__title { font-size: clamp(1.2rem, 2.1vw, 1.55rem); }
.feature-block__text { font-size: 1rem; }
.feature-block__bullets { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: .65rem; }
.feature-block__bullets li {
  position: relative; padding-left: 1.7rem; font-size: .94rem; color: var(--c-muted);
}
.feature-block__bullets li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 12px; height: 7px;
  border-left: 2.5px solid var(--c-secondary); border-bottom: 2.5px solid var(--c-secondary);
  transform: rotate(-45deg);
}

/* ---------- information gain ---------- */
.info-gain-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.info-gain-card {
  display: flex; flex-direction: column; background: var(--c-surface);
  border: 1px solid var(--c-border); border-left: 5px solid var(--c-accent);
  border-radius: var(--r-md); padding: 26px 24px; box-shadow: var(--sh-sm);
}
.info-gain-card__number {
  font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  color: var(--c-accent); line-height: 1.15; margin-bottom: .7rem;
}
.info-gain-card__claim { font-size: .95rem; margin-bottom: .8rem; }
.info-gain-card__gap { font-size: .87rem; color: var(--c-muted); font-style: italic; margin-bottom: 1rem; }
.info-gain-card__proof {
  margin-top: auto; align-self: flex-start; padding: 5px 12px; border-radius: var(--r-pill);
  background: var(--c-accent-soft); color: var(--c-accent-hover);
  font-size: .78rem; font-weight: 700; letter-spacing: .02em;
}

/* ---------- about brief ---------- */
.about-brief__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.about-brief__media img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--sh-md);
}
.about-brief__body p { font-size: 1rem; }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.review-card {
  display: flex; flex-direction: column; background: var(--c-surface);
  border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--sh-sm);
}
.review-card__stars { color: #E0A100; font-size: 1.05rem; letter-spacing: .08em; margin-bottom: .8rem; }
.review-card__text { font-size: .93rem; margin-bottom: 1.1rem; }
.review-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-top: auto; }
.review-card__author { font-family: var(--font-heading); font-weight: 600; font-size: .93rem; }
.review-card__badge {
  padding: 3px 10px; border-radius: var(--r-pill);
  background: #E7F1ED; color: var(--c-primary); font-size: .74rem; font-weight: 700;
}
.review-card__product {
  margin-top: .6rem; font-size: .8rem; color: var(--c-muted);
  padding-top: .6rem; border-top: 1px dashed var(--c-border);
}

/* ---------- comparison ---------- */
.comparison-table__wrap {
  overflow-x: auto; border-radius: var(--r-lg);
  border: 1px solid var(--c-border); background: var(--c-surface); box-shadow: var(--sh-sm);
}
.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(--c-border); vertical-align: top;
}
.comparison-table thead th {
  background: var(--c-primary); color: #fff; font-family: var(--font-heading); font-weight: 600;
  font-size: .87rem; position: sticky; top: 0;
}
.comparison-table tbody th { font-weight: 700; color: var(--c-text); width: 22%; background: var(--c-bg); }
.comparison-table tbody tr:last-child th, .comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table__brand { background: var(--c-accent-soft); color: var(--c-text); font-weight: 700; }
.comparison-table thead .comparison-table__brand { background: var(--c-accent); color: #fff; }

/* ---------- what you get / timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; }
.timeline__item {
  position: relative; padding: 22px 24px 22px 26px; background: var(--c-surface);
  border: 1px solid var(--c-border); border-radius: var(--r-md); box-shadow: var(--sh-sm);
}
.timeline__item::before {
  content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 4px;
  border-radius: var(--r-pill); background: var(--c-secondary);
}
.timeline__label {
  display: inline-block; margin-bottom: .5rem; padding: 4px 12px; border-radius: var(--r-pill);
  background: var(--c-primary); color: #fff;
  font-family: var(--font-heading); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.timeline__body { margin: 0; font-size: .95rem; }

/* ---------- fears ---------- */
.fears-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.fear-card {
  display: flex; flex-direction: column; background: var(--c-surface);
  border: 1px solid var(--c-border); border-top: 4px solid var(--c-accent);
  border-radius: var(--r-md); padding: 24px; box-shadow: var(--sh-sm);
}
.fear-card__title { font-size: 1.03rem; margin-bottom: .55rem; }
.fear-card__desc { font-size: .93rem; color: var(--c-muted); margin-bottom: .9rem; }
.fear-card__stat {
  margin-top: auto; align-self: flex-start; padding: 6px 12px; border-radius: var(--r-sm);
  background: #E7F1ED; color: var(--c-primary); font-size: .82rem; font-weight: 700;
}

/* ---------- mission / values ---------- */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.value-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--sh-sm);
}
.value-card__icon { display: block; width: 32px; height: 32px; color: var(--c-secondary); margin-bottom: .9rem; }
.value-card__title { font-size: 1.03rem; margin-bottom: .45rem; }
.value-card__desc { margin: 0; font-size: .92rem; color: var(--c-muted); }

/* ---------- FAQ ---------- */
.faq { position: relative; }
.faq::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24' viewBox='0 0 120 24'%3E%3Cpath d='M0 12c15-12 30 12 45 0s30-12 45 0 30 12 30 12' fill='none' stroke='%2321514A' stroke-opacity='.16' stroke-width='1.5'/%3E%3C/svg%3E");
}
.faq > .container { position: relative; z-index: 1; }
.faq-list, .faq-more { display: grid; gap: .8rem; max-width: 860px; margin: 0 auto; }
.faq-more { margin-top: .8rem; }
.faq-item {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-sm);
}
.faq-item > summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: flex-start; gap: .9rem;
  padding: 18px 22px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  color: var(--c-text); transition: background-color .2s ease;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+"; margin-left: auto; flex-shrink: 0;
  font-size: 1.5rem; line-height: 1; color: var(--c-accent); transition: transform .22s ease;
}
.faq-item[open] > summary::after { content: "\2212"; }
.faq-item > summary:hover { background: var(--c-accent-soft); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { margin: 0; font-size: .94rem; color: var(--c-muted); }
.faq-toggle {
  display: block; margin: 1.8rem auto 0; padding: 13px 30px;
  background: transparent; border: 2px solid var(--c-primary); border-radius: var(--r-pill);
  color: var(--c-primary); font-family: var(--font-heading); font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: background-color .22s ease, color .22s ease;
}
.faq-toggle:hover { background: var(--c-primary); color: #fff; }

/* ---------- gallery + lightbox ---------- */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.gallery-item {
  position: relative; display: block; padding: 0; border: 1px solid var(--c-border);
  border-radius: var(--r-md); overflow: hidden; background: var(--c-surface);
  cursor: pointer; transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.gallery-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.gallery-item__caption {
  display: block; padding: 10px 12px; font-size: .82rem; font-weight: 600;
  color: var(--c-text); text-align: left; background: var(--c-surface);
}
.lightbox {
  position: fixed; inset: 0; z-index: 400;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(22, 56, 49, .93);
}
.lightbox__figure { margin: 0; max-width: 900px; text-align: center; }
.lightbox__image { max-width: 100%; max-height: 78vh; border-radius: var(--r-md); margin: 0 auto; }
.lightbox__caption { margin-top: 1rem; color: #F6EFE7; font-size: .95rem; }
.lightbox__close {
  position: absolute; top: 18px; right: 22px; width: 46px; height: 46px;
  background: rgba(255, 255, 255, .16); border: 0; border-radius: 50%;
  color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .3); }

/* ---------- newsletter ---------- */
.newsletter { position: relative; background: var(--c-accent); color: #fff; overflow: hidden; }
.newsletter::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .28;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .5) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .5) 0 1px, transparent 1px 5px);
}
.newsletter__inner { position: relative; z-index: 1; max-width: 720px; text-align: center; }
.newsletter__title { color: #fff; }
.newsletter__subtitle { color: #FFF1E6; font-size: 1rem; margin-bottom: 1.8rem; }
.newsletter__form { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.newsletter__input {
  flex: 1 1 260px; max-width: 360px; padding: 13px 18px;
  border: 2px solid transparent; border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: .97rem; color: var(--c-text); background: #fff;
}
.newsletter__input:focus { outline: none; border-color: var(--c-primary-dark); }
.newsletter__submit { background: var(--c-primary-dark); flex: 0 0 auto; }
.newsletter__submit:hover { background: var(--c-primary); }
.newsletter__note { margin: 1.1rem 0 0; font-size: .84rem; color: rgba(255, 255, 255, .88); }
.newsletter-message {
  max-width: 480px; margin: 1.1rem auto 0; padding: 10px 14px;
  border-radius: 6px; font-size: .875rem; text-align: left;
}
.newsletter-message--error { color: #C0392B; background: #FDEDEC; border: 1px solid #C0392B; }

/* ---------- footer ---------- */
.footer { position: relative; background: var(--c-primary-dark); color: #D8E3DF; padding: 76px 20px 28px; }
.footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 42px;
  background: var(--c-bg);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 42' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1440v18c-200-22-380 16-580 16S220 6 0 26z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 42' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1440v18c-200-22-380 16-580 16S220 6 0 26z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}
.footer__content {
  display: grid; grid-template-columns: 1fr; gap: 2.2rem;
  padding-bottom: 2.2rem; border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.footer__logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: #fff; letter-spacing: .04em; }
.footer__tagline { margin: .6rem 0 1.1rem; color: #C6D6D1; font-size: .92rem; }
.footer__address { font-style: normal; font-size: .89rem; line-height: 1.75; color: #C6D6D1; }
.footer__address a, .footer__links a, .footer__social a { color: #D8E3DF; }
.footer__address a:hover, .footer__links a:hover { color: #fff; text-decoration: underline; }
.footer__hours { margin-top: .9rem; font-size: .85rem; color: #A9BFB9; }
.footer__heading {
  color: #fff; font-size: .84rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem;
}
.footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; font-size: .91rem; }
.footer__col--brand { max-width: 340px; }
.footer__social { gap: .55rem; }
.footer__languages { display: flex; flex-wrap: wrap; gap: .6rem; max-width: 1200px; margin: 1.4rem auto 0; padding: 0 20px; }
.footer__languages:empty { display: none; }
.footer__bottom { padding-top: 1.6rem; text-align: center; }
.footer__copyright { margin: 0 0 .5rem; font-size: .88rem; color: #C6D6D1; }
.footer p { color: #C6D6D1; }
.footer__bottom p:last-child { font-size: .78rem; color: #9BB2AC; margin: 0; }

/* ---------- cookie banner + sticky CTA ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 320;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem;
  padding: 14px 20px; background: var(--c-primary-dark); color: #E8F0ED; box-shadow: 0 -4px 20px rgba(0, 0, 0, .2);
}
.cookie-banner__text { margin: 0; font-size: .86rem; color: #E8F0ED; max-width: 70ch; }
.cookie-banner__text a { color: #F6C89A; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: .6rem; flex-shrink: 0; }
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .9rem;
  padding: 12px 56px 12px 20px;
  background: rgba(22, 56, 49, .95); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #fff; box-shadow: 0 -4px 20px rgba(0, 0, 0, .22);
}
.sticky-cta__text { margin: 0; font-size: .88rem; color: #F1F7F5; font-weight: 600; }
.sticky-cta__btn { flex-shrink: 0; }
.sticky-cta__close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; background: rgba(255, 255, 255, .14); border: 0; border-radius: 50%;
  color: #fff; font-size: 1.3rem; line-height: 1; cursor: pointer;
}
.sticky-cta__close:hover { background: rgba(255, 255, 255, .28); }

/* ---------- inner pages ---------- */
.page-head { padding: 48px 20px 32px; background: var(--c-bg); }
.page-title { margin-bottom: .3rem; }
.page-lead { max-width: 62ch; color: var(--c-muted); font-size: 1.02rem; }
.back-link { display: inline-block; margin-bottom: 1.2rem; font-size: .9rem; font-weight: 600; }
.contact-page, .about-page, .terms-page, .privacy-page { border-bottom: 1px solid var(--c-border); }

.contact-body { padding-top: 56px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
.contact-form-wrap .section-title, .contact-details .section-title { text-align: left; margin-left: 0; max-width: none; }
.contact-form { display: grid; gap: 1.1rem; }
.form-group { display: grid; gap: .4rem; }
.form-group label { font-weight: 600; font-size: .92rem; }
.form-req { color: var(--c-accent); }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--c-border); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: .97rem; color: var(--c-text); background: var(--c-surface);
}
.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-message { padding: 10px 14px; border-radius: 6px; font-size: .875rem; }
.form-message--error { color: #C0392B; background: #FDEDEC; border: 1px solid #C0392B; }
.contact-details {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--sh-sm);
}
.contact-details__list { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: 1.2rem; }
.contact-details__list address { font-style: normal; }
.contact-details__label {
  display: block; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-muted); margin-bottom: .25rem;
}
.contact-details__note { margin: 0; font-size: .87rem; color: var(--c-muted); }

.about-story { padding-top: 56px; }
.about-story__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
.about-story__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-md); }
.about-story__body .section-title { text-align: left; margin-left: 0; max-width: none; }
.about-stats { background: var(--c-bg); }
.about-values { padding-bottom: 72px; }
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.stat {
  text-align: center; background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-md); padding: 22px 14px;
}
.stat__value {
  display: block; font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem); color: var(--c-accent); line-height: 1.2;
}
.stat__label { display: block; margin-top: .35rem; font-size: .82rem; color: var(--c-muted); }

.legal-body { padding-top: 48px; }
.legal-content { max-width: 820px; }
.legal-content .legal-section h2 { font-size: 1.25rem; margin-top: 2rem; }
.legal-section:first-child h2 { margin-top: 0; }
.legal-section p { color: var(--c-muted); font-size: .96rem; }
.legal-date { font-size: .88rem; color: var(--c-muted); margin: 0; }

/* ---------- section wrappers ---------- */
.hero-detail { background: var(--c-alt); }
.features, .comparison, .fears, .faq { background: var(--c-alt); }
.info-gain, .what-you-get, .mission, .reviews, .gallery { background: var(--c-bg); }
.about-brief { background: var(--c-alt); }
.features .feature-block:first-of-type { padding-top: .6rem; }
.feature-block__body { display: flex; flex-direction: column; align-items: flex-start; }
.feature-block__body .btn-secondary { margin-top: auto; }
.comparison .section-title, .fears .section-title, .mission .section-title,
.what-you-get .section-title, .info-gain .section-title { max-width: 28ch; }
.reviews .reviews-grid { margin-top: .4rem; }
.gallery .gallery-grid { margin-top: .4rem; }
.faq-question { font-family: var(--font-heading); font-weight: 600; }
.footer__col { min-width: 0; }

/* ---------- scroll reveal ---------- */
.benefit-card, .feature-block, .info-gain-card, .value-card, .fear-card, .timeline__item, .review-card, .step {
  opacity: 0; transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
}
.benefit-card.visible, .feature-block.visible, .info-gain-card.visible, .value-card.visible,
.fear-card.visible, .timeline__item.visible, .review-card.visible, .step.visible {
  opacity: 1; transform: none;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .header__nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--c-bg); border-bottom: 1px solid var(--c-border);
    box-shadow: var(--sh-md); padding: 1rem 20px 1.4rem;
    transform: translateY(-140%); transition: transform .28s ease; margin-left: 0;
  }
  .header__nav.is-open { transform: translateY(0); }
  .header__nav ul { flex-direction: column; gap: .9rem; }
  .header__hamburger { display: block; margin-left: auto; order: 3; }
  .header__cta { order: 2; margin-left: auto; }
  .header__cta .btn-sm { padding: 8px 14px; font-size: .82rem; }
  body.no-scroll { overflow: hidden; }
}

@media (min-width: 600px) {
  .products-grid, .benefits-grid, .info-gain-grid, .values-grid, .fears-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badges { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  section { padding: 80px 40px; }
  .page-head { padding: 64px 40px 40px; }
  .footer { padding: 90px 40px 30px; }
  .hero { padding: 56px 40px 78px; }
  .newsletter__form { flex-wrap: nowrap; }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
  .hero-detail__grid { grid-template-columns: 1.05fr .95fr; gap: 2.6rem; }
  .contact-grid { grid-template-columns: 1.15fr .85fr; }
  .about-story__grid { grid-template-columns: .8fr 1.2fr; }
  .about-brief__grid { grid-template-columns: .85fr 1.15fr; }
}

@media (min-width: 1024px) {
  .products-grid, .benefits-grid, .info-gain-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid, .fears-grid, .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-row { grid-template-columns: repeat(4, 1fr); }
  .trust-badges { grid-template-columns: repeat(4, 1fr); }
  .footer__content { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.6rem; }
  .feature-block { grid-template-columns: 1fr 1fr; gap: 3rem; padding: 3rem 0; }
  .feature-block--reverse .feature-block__media { order: 2; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

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

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

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