:root {
  --navy: #1f2a4d;
  --navy-dark: #141c36;
  --gold: #c8a04e;
  --gold-soft: #e0c585;
  --cream: #f7f3ec;
  --surface: #ffffff;
  --ink: #262a33;
  --muted: #6f7689;
  --line: #e6e0d4;
  --text-primary: #262a33;
  --shadow: 0 10px 30px rgba(20, 28, 54, 0.10);
  --shadow-sm: 0 4px 14px rgba(20, 28, 54, 0.08);
  --radius: 14px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  font-family: var(--sans);
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(200, 160, 78, 0.05) 0, transparent 38%),
    radial-gradient(circle at 88% 72%, rgba(31, 42, 77, 0.05) 0, transparent 40%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.15; color: var(--navy); font-weight: 700; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons (UI kit) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center; line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy-dark); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-soft); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-dark); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.7); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- Sections ---------- */
.section { padding: 76px 0; position: relative; }
.section--alt { background: var(--surface); }
.section--alt::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background-image: linear-gradient(135deg, rgba(31, 42, 77, 0.03) 25%, transparent 25%, transparent 50%, rgba(31, 42, 77, 0.03) 50%, rgba(31, 42, 77, 0.03) 75%, transparent 75%);
  background-size: 26px 26px;
}
.section > .container { position: relative; z-index: 1; }
.section__header { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 14px; }
.section-subtitle { color: var(--muted); font-size: 1.08rem; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50; background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 24px; }
.header__logo { font-family: var(--serif); font-weight: 800; font-size: 1.3rem; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.header__logo-moon { font-size: 1.3rem; }
.header--scrolled { box-shadow: var(--shadow-sm); }
.nav__list { display: flex; gap: 26px; list-style: none; }
.nav__item { list-style: none; }
.nav__link { font-weight: 500; color: var(--ink); font-size: 0.96rem; padding: 6px 0; border-bottom: 2px solid transparent; transition: border-color .15s, color .15s; }
.nav__link:hover { color: var(--navy); border-color: var(--gold); }
.header__cta { flex-shrink: 0; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: transform .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 56vh; display: flex; align-items: center; color: #fff; overflow: hidden; padding: 70px 0 90px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(20, 28, 54, 0.92) 0%, rgba(31, 42, 77, 0.78) 45%, rgba(31, 42, 77, 0.42) 100%);
}
.hero__inner { position: relative; z-index: 2; }
.hero__content { max-width: 660px; }
.hero__heading { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; margin-bottom: 18px; }
.hero__subtitle { font-size: 1.18rem; font-weight: 500; margin-bottom: 18px; color: #f4eede; }
.hero__text { color: rgba(255, 255, 255, 0.86); margin-bottom: 22px; }
.hero__bullets { list-style: none; margin-bottom: 28px; display: grid; gap: 10px; }
.hero__bullet { position: relative; padding-left: 30px; color: #fff; font-weight: 500; }
.hero__bullet::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--gold-soft); font-weight: 700; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.wave { position: absolute; left: 0; width: 100%; height: 60px; z-index: 2; line-height: 0; }
.wave--bottom {
  bottom: -1px;
  background: var(--cream);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0 60 V30 Q300 0 600 30 T1200 30 V60 Z'/%3E%3C/svg%3E") no-repeat bottom / 100% 60px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0 60 V30 Q300 0 600 30 T1200 30 V60 Z'/%3E%3C/svg%3E") no-repeat bottom / 100% 60px;
}

/* ---------- Products ---------- */
.products .chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.chip { background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 8px 18px; font-size: 0.9rem; font-weight: 500; color: var(--navy); transition: background .15s, border-color .15s; }
.chip:hover { background: #fff; border-color: var(--gold); }
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s; border: 1px solid var(--line); }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card__media { position: relative; aspect-ratio: 4 / 3; background: var(--cream); }
.product-card__img { width: 100%; height: 100%; object-fit: cover; }
.product-card__badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--navy-dark); font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 5px 12px; border-radius: 999px; }
.product-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card__title { font-size: 1.16rem; }
.product-card__rating { color: var(--ink); font-weight: 600; font-size: 0.95rem; }
.product-card__stars { color: var(--gold); }
.product-card__count { color: var(--muted); font-weight: 400; }
.product-card__desc { color: var(--muted); font-size: 0.96rem; }
.product-card__highlights { list-style: none; display: grid; gap: 7px; margin: 4px 0; }
.product-card__highlight { position: relative; padding-left: 22px; font-size: 0.9rem; color: var(--ink); }
.product-card__highlight::before { content: "\2022"; position: absolute; left: 4px; color: var(--gold); font-weight: 700; }
.product-card__cta { margin-top: auto; }

/* ---------- Benefits ---------- */
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { background: var(--cream); border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--line); transition: transform .15s; }
.benefit-card:hover { transform: translateY(-4px); }
.benefit-card__icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.benefit-card__title { font-size: 1.18rem; margin-bottom: 10px; }
.benefit-card__desc { color: var(--muted); font-size: 0.98rem; }

/* ---------- How it works ---------- */
.how__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { text-align: center; padding: 22px 16px; position: relative; }
.step__number { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%; background: var(--navy); color: var(--gold-soft); font-family: var(--serif); font-size: 1.4rem; font-weight: 700; margin-bottom: 14px; }
.step__title { font-size: 1.1rem; margin-bottom: 8px; }
.step__desc { color: var(--muted); font-size: 0.94rem; }

/* ---------- Features ---------- */
.features__list { display: grid; gap: 56px; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.feature-row--reverse .feature-row__media { order: 2; }
.feature-row__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.feature-row__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-row__title { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 14px; }
.feature-row__text { color: var(--ink); margin-bottom: 16px; }
.feature-row__list { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; }
.feature-row__item { position: relative; padding-left: 26px; color: var(--ink); }
.feature-row__item::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ---------- About ---------- */
.about__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 46px; align-items: center; }
.about__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.about__title { text-align: left; margin-bottom: 18px; }
.about__text { color: var(--ink); margin-bottom: 16px; }

/* ---------- Reviews ---------- */
.reviews__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.review-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.review-card__stars { color: var(--gold); letter-spacing: 2px; }
.review-card__text { color: var(--ink); font-size: 0.96rem; font-style: italic; flex: 1; }
.review-card__author { font-weight: 700; color: var(--navy); }
.review-card__product { color: var(--muted); font-size: 0.85rem; }

/* ---------- Comparison ---------- */
.comparison__table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.comparison__table { width: 100%; border-collapse: collapse; background: #fff; min-width: 720px; }
.comparison__th, .comparison__td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.94rem; vertical-align: top; }
.comparison__th { background: var(--navy); color: #fff; font-weight: 600; font-family: var(--sans); }
.comparison__th--corner { background: var(--navy-dark); }
.comparison__th--row { background: var(--cream); color: var(--navy); font-weight: 700; }
.comparison__th--brand { background: var(--gold); color: var(--navy-dark); }
.comparison__td--brand { background: rgba(200, 160, 78, 0.12); font-weight: 600; color: var(--navy); }
.comparison__row:nth-child(even) .comparison__td { background: #fbf9f4; }
.comparison__row:nth-child(even) .comparison__td--brand { background: rgba(200, 160, 78, 0.16); }

/* ---------- Timeline ---------- */
.timeline { max-width: 760px; margin: 0 auto; display: grid; gap: 8px; border-left: 2px solid var(--gold); padding-left: 30px; }
.timeline__item { position: relative; padding: 18px 0; }
.timeline__marker { position: absolute; left: -39px; top: 24px; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); border: 3px solid var(--cream); }
.timeline__time { display: inline-block; font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: 1.1rem; margin-bottom: 6px; }
.timeline__outcome { color: var(--ink); }

/* ---------- Fears ---------- */
.fears__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.fear-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 24px; }
.fear-card__title { font-size: 1.12rem; margin-bottom: 10px; color: var(--navy); }
.fear-card__desc { color: var(--ink); font-size: 0.96rem; }
.fear-card__stat { margin-top: 12px; font-weight: 700; color: var(--gold); font-size: 0.92rem; }

/* ---------- Audience ---------- */
.audience__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 36px; }
.persona { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.persona__emoji { font-size: 2rem; display: block; margin-bottom: 12px; }
.persona__title { font-size: 1.14rem; margin-bottom: 10px; }
.persona__desc { color: var(--muted); font-size: 0.96rem; }
.notfor { max-width: 820px; margin: 0 auto; background: var(--navy); color: #fff; border-radius: var(--radius); padding: 28px 30px; }
.notfor__title { color: var(--gold-soft); font-size: 1.2rem; margin-bottom: 14px; }
.notfor__list { list-style: none; display: grid; gap: 14px; }
.notfor__item { display: grid; gap: 4px; padding-left: 26px; position: relative; }
.notfor__item::before { content: "\2715"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.notfor__item-title { font-weight: 700; }
.notfor__item-desc { color: rgba(255, 255, 255, 0.78); font-size: 0.94rem; }

/* ---------- FAQ ---------- */
.faq-list, .faq-more { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-more { margin-top: 12px; }
.faq-more[hidden] { display: none; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; background: none; border: 0; padding: 18px 22px; font-family: var(--sans); font-weight: 600; font-size: 1.02rem; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item__icon { width: 14px; height: 14px; flex-shrink: 0; position: relative; }
.faq-item__icon::before, .faq-item__icon::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; }
.faq-item__icon::before { top: 6px; left: 0; width: 14px; height: 2px; }
.faq-item__icon::after { top: 0; left: 6px; width: 2px; height: 14px; transition: transform .2s; }
.faq-item.is-open .faq-item__icon::after { transform: rotate(90deg); }
.faq-answer { padding: 0 22px 20px; color: var(--ink); }
.faq-item:not(.is-open) .faq-answer { display: none; }
.faq-item.is-open .faq-answer { display: block; }
.faq-expand-btn { display: block; margin: 26px auto 0; background: var(--navy); color: #fff; border: 0; padding: 13px 30px; border-radius: 999px; font-family: var(--sans); font-weight: 600; cursor: pointer; transition: background .15s; }
.faq-expand-btn:hover { background: var(--navy-dark); }

/* ---------- Gallery ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery__item { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; position: relative; }
.gallery__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .25s; }
.gallery__item:hover .gallery__img { transform: scale(1.05); }
.gallery__caption { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(transparent, rgba(20, 28, 54, 0.82)); color: #fff; font-size: 0.86rem; padding: 24px 14px 12px; }
.lightbox { display: none; position: fixed; inset: 0; z-index: 100; background: rgba(20, 28, 54, 0.92); align-items: center; justify-content: center; padding: 30px; }
.lightbox.is-active { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 88vh; border-radius: 10px; }
.lightbox__close { position: absolute; top: 22px; right: 28px; background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; }

/* ---------- Newsletter ---------- */
.newsletter { background: linear-gradient(120deg, var(--navy-dark), var(--navy)); color: #fff; position: relative; overflow: hidden; }
.newsletter::before { content: ""; position: absolute; inset: 0; opacity: 0.5; background-image: radial-gradient(circle at 20% 30%, rgba(200, 160, 78, 0.18) 0, transparent 35%), radial-gradient(circle at 82% 78%, rgba(200, 160, 78, 0.12) 0, transparent 38%); }
.newsletter__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; text-align: center; }
.newsletter__title { color: #fff; margin-bottom: 12px; }
.newsletter__subtitle { color: rgba(255, 255, 255, 0.82); margin-bottom: 26px; }
.newsletter__form { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }
.newsletter__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.newsletter__input { flex: 1; min-width: 240px; padding: 14px 18px; border-radius: 999px; border: 2px solid transparent; font-family: var(--sans); font-size: 1rem; }
.newsletter__input:focus { outline: none; border-color: var(--gold); }
.newsletter__btn { flex-shrink: 0; }
.newsletter__error { flex-basis: 100%; color: var(--gold-soft); font-weight: 600; margin-top: 6px; }

/* ---------- Forms (shared error-state) ---------- */
.form-field { margin-bottom: 18px; text-align: left; }
.form-label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--navy); font-size: 0.92rem; }
.form-input { width: 100%; padding: 12px 16px; border: 1px solid var(--line); border-radius: 10px; font-family: var(--sans); font-size: 1rem; background: #fff; }
.form-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200, 160, 78, 0.18); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-error { color: #b3402f; font-weight: 600; margin-top: 12px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(120deg, var(--navy-dark), var(--navy)); color: #fff; padding: 64px 0; text-align: center; }
.page-hero__title { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero__subtitle { color: rgba(255, 255, 255, 0.84); max-width: 640px; margin: 0 auto; }

/* ---------- Mission / values ---------- */
.mission__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; text-align: center; }
.value-card__icon { font-size: 1.9rem; display: block; margin-bottom: 12px; }
.value-card__title { font-size: 1.1rem; margin-bottom: 10px; }
.value-card__desc { color: var(--muted); font-size: 0.94rem; }

/* ---------- Expert ---------- */
.expert__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 44px; align-items: center; }
.expert__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.expert__img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.expert__quote { font-family: var(--serif); font-size: 1.25rem; line-height: 1.5; color: var(--navy); border-left: 4px solid var(--gold); padding-left: 22px; margin: 18px 0; font-style: italic; }
.expert__name { font-weight: 700; color: var(--navy); }
.expert__bio { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.expert__tips { list-style: none; display: grid; gap: 12px; }
.expert__tip { position: relative; padding-left: 28px; color: var(--ink); }
.expert__tip::before { content: "\1F4A1"; position: absolute; left: 0; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 44px; align-items: start; }
.contact__form-wrap .section-title, .contact__info .section-title { text-align: left; margin-bottom: 22px; }
.contact__info { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.contact__list { list-style: none; display: grid; gap: 18px; margin-bottom: 18px; }
.contact__item { display: grid; gap: 4px; }
.contact__label { font-weight: 700; color: var(--navy); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact__value { color: var(--ink); }
.contact__note { color: var(--muted); font-size: 0.9rem; }

/* ---------- Legal ---------- */
.legal__inner { max-width: 800px; margin: 0 auto; }
.legal__block { margin-bottom: 34px; }
.legal__heading { font-size: 1.35rem; margin-bottom: 12px; color: var(--navy); }
.legal__block p { color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.78); padding: 60px 0 26px; position: relative; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold)); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.footer__logo { font-family: var(--serif); font-weight: 800; font-size: 1.3rem; color: #fff; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer__brand .footer__tagline { color: rgba(255, 255, 255, 0.66); font-size: 0.94rem; max-width: 320px; }
.footer__title { color: #fff; font-size: 1.02rem; margin-bottom: 16px; font-family: var(--sans); font-weight: 600; }
.footer__links { list-style: none; display: grid; gap: 10px; }
.footer__link-item { list-style: none; }
.footer__link { color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; transition: color .15s; }
.footer__link:hover { color: var(--gold-soft); }
.footer__social { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.footer__social-link { color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; transition: color .15s; }
.footer__social-link:hover { color: var(--gold-soft); }
.footer__languages { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__bottom { padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer__copyright { font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); }
.footer__disclosure { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); max-width: 620px; }
.footer__disclosure p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; bottom: 18px; left: 18px; right: 18px; max-width: 540px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px 22px; z-index: 80; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.cookie-banner[hidden] { display: none; }
.cookie-banner__text { font-size: 0.88rem; color: var(--ink); flex: 1; min-width: 220px; }
.cookie-banner__actions { display: flex; gap: 10px; }

/* ---------- Sticky CTA ---------- */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy-dark); color: #fff; padding: 12px 22px; z-index: 70; display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap; transform: translateY(100%); transition: transform .25s ease; box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2); }
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__text { font-size: 0.92rem; font-weight: 500; }
.sticky-cta__btn { flex-shrink: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .products__grid, .benefits__grid, .mission__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .how__steps { grid-template-columns: repeat(2, 1fr); }
  .feature-row, .about__inner, .contact__grid, .expert__inner { grid-template-columns: 1fr; gap: 28px; }
  .feature-row--reverse .feature-row__media { order: 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav { position: fixed; top: 64px; right: 0; width: 75%; max-width: 300px; height: calc(100vh - 64px); background: var(--cream); border-left: 1px solid var(--line); transform: translateX(100%); transition: transform .25s ease; padding: 24px; }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 18px; }
  .header__cta { display: none; }
  .products__grid, .benefits__grid, .mission__grid, .reviews__grid, .fears__grid, .audience__grid, .how__steps, .gallery__grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { min-height: 70vh; }
  .sticky-cta__text { font-size: 0.82rem; }
}

/* Section anchor + structural class coverage */
.benefits, .features, .about, .comparison, .how, .gallery, .reviews,
.fears, .audience, .timeline-section, .faq, .mission, .expert,
.legal, .contact { position: relative; }

.about__body, .expert__body { color: var(--ink); line-height: 1.75; }
.about__body p, .expert__body p { margin: 0 0 1rem; }

.feature-row__body { flex: 1 1 50%; min-width: 0; }

.footer__col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col h4 { margin: 0 0 0.4rem; font-size: 0.95rem; color: var(--gold-soft); }

.contact__form { display: flex; flex-direction: column; gap: 1rem; }
.contact__submit { align-self: flex-start; }
