:root {
  --c-primary: #2C7A7B;
  --c-primary-dark: #1F5A5B;
  --c-coral: #E08B6F;
  --c-coral-dark: #C9714F;
  --c-coral-soft: #FBE4D8;
  --c-bg: #FBF7F2;
  --c-bg-alt: #F2E8DB;
  --c-surface: #FFFFFF;
  --c-text: #2D2A26;
  --c-text-muted: #6E665C;
  --c-border: #E6DAC8;
  --c-footer: #2B3636;
  --c-footer-text: #D9E0DF;
  --c-footer-muted: #95A3A3;
  --font-head: 'Varela Round', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(45, 42, 38, 0.06);
  --shadow-md: 0 8px 24px rgba(45, 42, 38, 0.10);
  --shadow-lg: 0 16px 40px rgba(45, 42, 38, 0.14);
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--c-text); font-weight: 400; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { color: var(--c-primary-dark); }

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

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

/* ---------- Buttons ---------- */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-block; font-family: var(--font-head); font-weight: 400;
  border-radius: 999px; cursor: pointer; text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  padding: 12px 26px; font-size: 1rem; border: 2px solid transparent; line-height: 1.2;
}
.btn-primary { background: var(--c-primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--c-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--c-primary); border-color: var(--c-primary); }
.btn-secondary:hover { background: var(--c-primary); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--c-primary); border-color: var(--c-border); }
.btn-ghost:hover { background: var(--c-coral-soft); color: var(--c-coral-dark); }
.btn-sm { padding: 8px 18px; font-size: 0.9rem; }
.btn-lg { padding: 15px 32px; font-size: 1.08rem; }

/* ghost on dark backgrounds */
.hero .btn-ghost, .newsletter-section .btn-ghost, .sticky-cta .btn-ghost {
  color: #fff; border-color: rgba(255,255,255,0.6);
}
.hero .btn-ghost:hover, .newsletter-section .btn-ghost:hover, .sticky-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.15); color: #fff; border-color: #fff;
}

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

/* ---------- Section scaffolding ---------- */
main > section, .legal-page, .about-page, .contact-page { padding: 60px 0; position: relative; }
.section-alt { background: var(--c-bg-alt); }
.section-title { font-size: 1.85rem; text-align: center; margin-bottom: 10px; }
.section-subtitle {
  text-align: center; color: var(--c-text-muted); max-width: 720px;
  margin: 0 auto 38px; font-size: 1.05rem;
}
.section-title, .section-subtitle { position: relative; z-index: 1; }

@media (min-width: 1024px) {
  main > section, .legal-page, .about-page, .contact-page { padding: 80px 0; }
  .section-title { font-size: 2.4rem; }
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100; background: rgba(251,247,242,0.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--c-border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; }
.header__logo { font-family: var(--font-head); font-size: 1.5rem; color: var(--c-primary); letter-spacing: 0.5px; }
.header__nav { display: none; }
.header__nav ul { list-style: none; display: flex; gap: 26px; }
.header__nav a { color: var(--c-text); font-weight: 600; font-size: 0.98rem; }
.header__nav a:hover { color: var(--c-primary); }
.header__cta { display: none; }
.header__hamburger { display: inline-flex; font-size: 1.6rem; background: none; border: none; color: var(--c-text); cursor: pointer; }
.header__nav.is-open {
  display: block; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--c-surface); border-bottom: 1px solid var(--c-border); box-shadow: var(--shadow-md);
}
.header__nav.is-open ul { flex-direction: column; gap: 0; padding: 8px 20px; }
.header__nav.is-open li { padding: 10px 0; border-bottom: 1px solid var(--c-border); }

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

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 50vh; display: flex; align-items: center; overflow: hidden; padding: 40px 0;
  background-color: var(--c-primary-dark);
  background-image: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 60%, var(--c-coral-dark) 130%); }
.hero__overlay { position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(224,139,111,0.35), transparent 55%); z-index: 0; }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.hero__content { color: #fff; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; font-weight: 700; color: var(--c-coral-soft); margin-bottom: 12px; }
.hero__title { color: #fff; font-size: 2rem; margin-bottom: 16px; }
.hero__subtitle { color: rgba(255,255,255,0.94); font-size: 1.05rem; margin-bottom: 18px; max-width: 600px; }
.hero__bullets { list-style: none; margin-bottom: 24px; display: grid; gap: 8px; }
.hero__bullets li { padding-left: 28px; position: relative; color: rgba(255,255,255,0.95); }
.hero__bullets li::before { content: "✓"; position: absolute; left: 0; color: var(--c-coral-soft); font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }

@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
  .hero__title { font-size: 2.9rem; }
}

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--c-coral-soft); padding: 18px 0; }
.trust-strip__inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.trust-badge { display: flex; align-items: center; gap: 10px; justify-content: center; font-weight: 600; font-size: 0.92rem; color: var(--c-coral-dark); text-align: center; }
.trust-badge__icon { font-size: 1.4rem; }
@media (min-width: 900px) { .trust-strip__inner { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Products ---------- */
.products-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.product-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 18px; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card__img-link { display: block; border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.product-card__img-link img { width: 100%; aspect-ratio: 1/1; object-fit: contain; }
.product-card__title { font-size: 1.25rem; margin: 14px 0 6px; }
.product-card__rating { color: var(--c-coral-dark); font-weight: 700; margin-bottom: 10px; }
.product-card__reviews { color: var(--c-text-muted); font-weight: 600; font-size: 0.9rem; }
.product-card__description { font-size: 0.95rem; color: var(--c-text-muted); margin-bottom: 14px; }
.product-card__highlights { list-style: none; margin-bottom: 18px; display: grid; gap: 8px; }
.product-card__highlights li { padding-left: 24px; position: relative; font-size: 0.92rem; }
.product-card__highlights li::before { content: "✓"; position: absolute; left: 0; color: var(--c-primary); font-weight: 700; }
.product-card__cta { margin-top: auto; align-self: flex-start; background: var(--c-primary); color: #fff; padding: 11px 24px; border-radius: 999px; font-family: var(--font-head); transition: background 0.2s ease, transform 0.2s ease; }
.product-card__cta:hover { background: var(--c-primary-dark); color: #fff; transform: translateY(-2px); }
@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Category chips ---------- */
.category-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 36px; }
.category-chip { display: inline-block; padding: 9px 18px; border: 1px solid var(--c-border); border-radius: 999px; background: var(--c-surface); color: var(--c-text); font-weight: 600; font-size: 0.9rem; transition: all 0.2s ease; }
.category-chip:hover { background: var(--c-coral-soft); border-color: var(--c-coral); color: var(--c-coral-dark); }
.category-chips__all { margin-left: 4px; }

/* ---------- Benefits ---------- */
.benefits-section::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(45,42,38,0.06) 1px, transparent 1px); background-size: 24px 24px; opacity: 0.7; pointer-events: none; }
.benefits-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 22px; }
.benefit-card { background: var(--c-surface); border-radius: var(--radius-md); padding: 26px 22px; box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-card__icon { font-size: 2rem; display: inline-block; margin-bottom: 12px; }
.benefit-card__title { font-size: 1.2rem; margin-bottom: 8px; }
.benefit-card__desc { color: var(--c-text-muted); font-size: 0.96rem; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- How it works ---------- */
.how-section::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(45,42,38,0.04) 0 1px, transparent 1px 16px); pointer-events: none; }
.steps-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 22px; }
.step-card { background: var(--c-surface); border-radius: var(--radius-md); padding: 28px 22px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); }
.step-card__num { width: 52px; height: 52px; border-radius: 50%; background: var(--c-primary); color: #fff; font-family: var(--font-head); font-size: 1.4rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-card__title { font-size: 1.2rem; margin-bottom: 8px; }
.step-card__desc { color: var(--c-text-muted); font-size: 0.96rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Features ---------- */
.feature-block { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; margin-bottom: 48px; }
.feature-block:last-child { margin-bottom: 0; }
.feature-block__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feature-block__title { font-size: 1.5rem; margin-bottom: 14px; }
.feature-block__text { color: var(--c-text-muted); margin-bottom: 16px; }
.feature-block__bullets { list-style: none; display: grid; gap: 10px; margin-bottom: 20px; }
.feature-block__bullets li { padding-left: 26px; position: relative; }
.feature-block__bullets li::before { content: "→"; position: absolute; left: 0; color: var(--c-coral); font-weight: 700; }
@media (min-width: 900px) {
  .feature-block { grid-template-columns: 1fr 1fr; gap: 48px; }
  .feature-block--reverse .feature-block__media { order: 2; }
}

/* ---------- About (index) ---------- */
.about-section__grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
.about-section__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.about-section__body .section-title { text-align: left; }
.about-section__body p { margin-bottom: 14px; color: var(--c-text); }
.about-section__link { display: inline-block; margin-top: 8px; font-family: var(--font-head); color: var(--c-primary); font-weight: 600; }
@media (min-width: 900px) { .about-section__grid { grid-template-columns: 0.85fr 1.15fr; gap: 50px; } }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.review-card { background: var(--c-surface); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); }
.review-card__stars { color: #E8A300; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card__text { color: var(--c-text); margin-bottom: 16px; font-size: 0.97rem; }
.review-card__meta { display: flex; flex-direction: column; gap: 2px; }
.review-card__name { font-weight: 700; font-family: var(--font-head); }
.review-card__badge { font-size: 0.82rem; color: var(--c-primary); font-weight: 600; }
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Comparison ---------- */
.comparison-table__wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.comparison-table { width: 100%; border-collapse: collapse; background: var(--c-surface); min-width: 640px; }
.comparison-table th, .comparison-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--c-border); font-size: 0.94rem; }
.comparison-table thead th { background: var(--c-primary); color: #fff; font-family: var(--font-head); font-weight: 400; }
.comparison-table tbody th { font-weight: 700; color: var(--c-text); background: var(--c-bg-alt); }
.comparison-table tbody tr:nth-child(even) td { background: #faf6f0; }
.comparison-table__brand { background: var(--c-coral-soft) !important; color: var(--c-coral-dark); font-weight: 700; }
.comparison-table thead th.comparison-table__brand { background: var(--c-coral-dark) !important; color: #fff; }

/* ---------- Personas / who-its-for ---------- */
.personas-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-bottom: 30px; }
.persona-card { background: var(--c-surface); border-radius: var(--radius-md); padding: 26px 22px; box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); }
.persona-card__emoji { font-size: 2rem; display: inline-block; margin-bottom: 10px; }
.persona-card__title { font-size: 1.15rem; margin-bottom: 8px; }
.persona-card__desc { color: var(--c-text-muted); font-size: 0.95rem; }
.not-for { background: var(--c-coral-soft); border-radius: var(--radius-md); padding: 26px; border: 1px dashed var(--c-coral); }
.not-for__title { font-size: 1.2rem; margin-bottom: 12px; color: var(--c-coral-dark); }
.not-for__list { list-style: none; display: grid; gap: 10px; }
.not-for__list li { padding-left: 26px; position: relative; color: var(--c-text); }
.not-for__list li::before { content: "✕"; position: absolute; left: 0; color: var(--c-coral-dark); font-weight: 700; }
@media (min-width: 640px) { .personas-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Timeline / what-you-get ---------- */
.timeline { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 760px; margin: 0 auto; }
.timeline__item { display: grid; grid-template-columns: 90px 1fr; gap: 18px; align-items: start; background: var(--c-surface); border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); }
.timeline__marker { background: var(--c-primary); color: #fff; border-radius: 999px; padding: 6px 4px; text-align: center; font-family: var(--font-head); font-size: 0.9rem; }
.timeline__text { color: var(--c-text); font-size: 0.97rem; }

/* ---------- Fears ---------- */
.fears-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.fear-card { background: var(--c-surface); border-left: 4px solid var(--c-coral); border-radius: var(--radius-sm); padding: 22px; box-shadow: var(--shadow-sm); }
.fear-card__title { font-size: 1.08rem; margin-bottom: 8px; color: var(--c-coral-dark); }
.fear-card__desc { color: var(--c-text-muted); font-size: 0.96rem; }
@media (min-width: 768px) { .fears-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- FAQ ---------- */
.faq-section::before { content: ""; position: absolute; inset: 0; 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 12 Q30 0 60 12 T120 12' fill='none' stroke='%232C7A7B' stroke-width='1.5' opacity='0.05'/%3E%3C/svg%3E"); background-size: 120px 24px; pointer-events: none; }
.faq-list, .faq-more { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.faq-item { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-item > summary { cursor: pointer; list-style: none; padding: 16px 20px; font-family: var(--font-head); font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: "+"; color: var(--c-primary); font-size: 1.4rem; flex-shrink: 0; }
.faq-item[open] > summary::after { content: "−"; }
.faq-answer { padding: 0 20px 18px; color: var(--c-text-muted); }
.faq-toggle { display: block; margin: 22px auto 0; background: var(--c-surface); border: 2px solid var(--c-primary); color: var(--c-primary); font-family: var(--font-head); padding: 12px 28px; border-radius: 999px; cursor: pointer; transition: all 0.2s ease; position: relative; z-index: 1; }
.faq-toggle:hover { background: var(--c-primary); color: #fff; }
.faq-more { margin-top: 12px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; position: relative; background: var(--c-surface); }
.gallery-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption { padding: 10px 12px; font-size: 0.85rem; color: var(--c-text-muted); text-align: center; }
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Newsletter ---------- */
.newsletter-section { background-color: var(--c-primary); background-image: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark)); position: relative; overflow: hidden; }
.newsletter-section::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 6px), repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 6px); pointer-events: none; }
.newsletter-section__inner { position: relative; z-index: 1; text-align: center; max-width: 640px; }
.newsletter-section .section-title { color: #fff; }
.newsletter-section__subtitle { color: rgba(255,255,255,0.92); margin-bottom: 24px; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-form__input { padding: 14px 18px; border-radius: 999px; border: none; font-size: 1rem; font-family: var(--font-body); }
.newsletter-form__note { color: rgba(255,255,255,0.78); font-size: 0.82rem; margin-top: 12px; }
.newsletter-message { margin: 16px auto 0; max-width: 480px; color: #C0392B; background: #FDEDEC; border: 1px solid #C0392B; padding: 10px 14px; border-radius: 6px; font-size: 0.875rem; }
@media (min-width: 600px) { .newsletter-form { flex-direction: row; } .newsletter-form__input { flex: 1; } }

/* ---------- Footer ---------- */
.footer { background: var(--c-footer); color: var(--c-footer-text); padding-top: 50px; }
.footer__content { display: grid; grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
.footer__logo { font-family: var(--font-head); font-size: 1.5rem; color: #fff; display: inline-block; margin-bottom: 12px; }
.footer__tagline { color: var(--c-footer-muted); font-size: 0.92rem; margin-bottom: 14px; }
.footer__address { font-style: normal; font-size: 0.9rem; color: var(--c-footer-muted); line-height: 1.9; }
.footer__address a { color: var(--c-footer-text); }
.footer__heading { font-size: 1.05rem; color: #fff; margin-bottom: 14px; }
.footer__links { list-style: none; display: grid; gap: 9px; }
.footer__links a { color: var(--c-footer-muted); font-size: 0.92rem; }
.footer__links a:hover { color: #fff; }
.footer__social { display: flex; flex-direction: column; gap: 9px; }
.footer__social a { color: var(--c-footer-muted); font-size: 0.92rem; }
.footer__social a:hover { color: #fff; }
.footer__languages { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; padding: 10px 20px; }
.footer__languages:empty { display: none; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0; }
.footer__copyright { color: var(--c-footer-muted); font-size: 0.88rem; text-align: center; }
.footer__bottom p { color: var(--c-footer-muted); font-size: 0.8rem; text-align: center; margin-top: 6px; }
.footer__bottom a { color: var(--c-footer-text); }
@media (min-width: 640px) { .footer__content { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__content { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--c-footer); color: #fff; padding: 12px 0; box-shadow: 0 -4px 16px rgba(0,0,0,0.2); }
.cookie-banner__inner { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.cookie-banner__text { font-size: 0.88rem; color: var(--c-footer-text); text-align: center; }
.cookie-banner__text a { color: #fff; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; }
@media (min-width: 700px) { .cookie-banner__inner { flex-direction: row; justify-content: space-between; } }

/* ---------- Sticky CTA ---------- */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; background: rgba(43,54,54,0.95); backdrop-filter: blur(8px); color: #fff; padding: 12px 0; box-shadow: 0 -4px 16px rgba(0,0,0,0.25); }
.sticky-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.sticky-cta__text { font-size: 0.92rem; font-weight: 600; }
.sticky-cta__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.sticky-cta__close { background: none; border: none; color: rgba(255,255,255,0.8); font-size: 1.1rem; cursor: pointer; }
.sticky-cta__close:hover { color: #fff; }
@media (max-width: 600px) { .sticky-cta__text { font-size: 0.82rem; } .sticky-cta .btn-sm { padding: 7px 14px; } }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,0.88); display: flex; align-items: center; justify-content: center; padding: 30px; }
.lightbox__img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius-md); }
.lightbox__close { position: absolute; top: 18px; right: 24px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }

/* ---------- Internal pages ---------- */
.back-link { display: inline-block; margin-bottom: 18px; font-weight: 600; color: var(--c-primary); }
.page-title { font-size: 2rem; margin-bottom: 12px; }
.page-lead { color: var(--c-text-muted); max-width: 700px; margin-bottom: 30px; }
.legal-updated { color: var(--c-text-muted); font-size: 0.9rem; margin-bottom: 26px; }
.legal-block { margin-bottom: 26px; max-width: 800px; }
.legal-block h2 { font-size: 1.35rem; margin-bottom: 10px; color: var(--c-primary-dark); }
.legal-block p { color: var(--c-text); }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 34px; }
.contact-form { display: grid; gap: 16px; background: var(--c-surface); padding: 28px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); }
.form-group { display: grid; gap: 6px; }
.form-group label { font-weight: 600; font-size: 0.92rem; }
.form-group input, .form-group textarea { padding: 12px 14px; border: 1px solid var(--c-border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; background: #fff; min-height: 44px; }
.form-group textarea { min-height: 120px; resize: vertical; }
.req { color: var(--c-coral-dark); }
.form-message { color: #C0392B; background: #FDEDEC; border: 1px solid #C0392B; padding: 10px 14px; border-radius: 6px; font-size: 0.875rem; }
.contact-info { background: var(--c-coral-soft); border-radius: var(--radius-md); padding: 28px; }
.contact-info__title { font-size: 1.3rem; margin-bottom: 16px; color: var(--c-coral-dark); }
.contact-info__line { margin-bottom: 16px; font-size: 0.95rem; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1.4fr 1fr; } }

.about-story { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; margin-bottom: 50px; }
.about-story__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.about-story__body h2 { font-size: 1.6rem; margin-bottom: 14px; }
.about-story__body p { margin-bottom: 14px; }
.values-section { margin-bottom: 50px; }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.value-card { background: var(--c-surface); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); text-align: center; }
.value-card__icon { font-size: 2rem; display: inline-block; margin-bottom: 10px; }
.value-card__title { font-size: 1.12rem; margin-bottom: 8px; }
.value-card__desc { color: var(--c-text-muted); font-size: 0.94rem; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; background: var(--c-bg-alt); border-radius: var(--radius-md); padding: 30px; }
.about-stat { text-align: center; }
/* ---------- Section wrappers & misc coverage ---------- */
.products-section, .features-section, .comparison-section, .personas-section,
.timeline-section, .fears-section, .reviews-section, .gallery-section, .about-section { position: relative; }
.feature-block__body { display: flex; flex-direction: column; }
.faq-question { font-family: var(--font-head); }
.trust-badge__text { line-height: 1.3; }
.footer__col { min-width: 0; }
.footer__brand { max-width: 360px; }
.form-message--error, .newsletter-message--error { color: #C0392B; background: #FDEDEC; border-color: #C0392B; }
.terms-page, .privacy-page { position: relative; }

/* ---------- Scroll reveal (non-hiding enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .visible { animation: fadeUp 0.5s ease both; }
}
@keyframes fadeUp { from { opacity: 0.35; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.about-stat__num { display: block; font-family: var(--font-head); font-size: 1.6rem; color: var(--c-primary); }
.about-stat__label { display: block; font-size: 0.86rem; color: var(--c-text-muted); margin-top: 4px; }
@media (min-width: 860px) {
  .about-story { grid-template-columns: 0.8fr 1.2fr; gap: 44px; }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .about-stats { grid-template-columns: repeat(4, 1fr); }
}
