:root {
  --color-primary: #1F3D44;
  --color-primary-light: #2D5566;
  --color-primary-dark: #15292E;
  --color-secondary: #A8825A;
  --color-accent: #E5A155;
  --color-accent-dark: #C88A3D;
  --color-accent-light: #F5C586;
  --bg-primary: #FBF8F3;
  --bg-secondary: #F2EDE4;
  --bg-dark: #1F3D44;
  --color-surface: #FFFFFF;
  --color-surface-muted: #F8F5EE;
  --color-text: #1A2329;
  --color-text-muted: #4D5862;
  --color-text-light: #7A8590;
  --color-text-inverse: #FBF8F3;
  --color-border: #E5DDD0;
  --color-border-light: #EFE9DC;
  --color-success: #2D6F4A;
  --color-error: #C0392B;
  --color-error-bg: #FDEDEC;
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(31, 61, 68, 0.06), 0 1px 2px rgba(31, 61, 68, 0.04);
  --shadow-md: 0 4px 12px rgba(31, 61, 68, 0.08), 0 2px 4px rgba(31, 61, 68, 0.05);
  --shadow-lg: 0 14px 40px rgba(31, 61, 68, 0.12), 0 4px 12px rgba(31, 61, 68, 0.06);
  --container-max: 1240px;
  --header-h: 76px;
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  letter-spacing: -0.015em;
}

p { line-height: 1.65; }

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

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  line-height: 1.6;
  font-weight: 400;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.005em;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  box-shadow: 0 4px 14px rgba(229, 161, 85, 0.35);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(229, 161, 85, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(31, 61, 68, 0.08);
  height: var(--header-h);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.header__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.header__logo span {
  color: var(--color-accent);
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.header__nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 8px 0;
}

.header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.header__nav a:hover::after,
.header__nav a.is-active::after { width: 100%; }

.header__cta {
  display: flex;
  align-items: center;
}

.header__cta .btn-primary {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.header__hamburger {
  display: none;
  font-size: 1.5rem;
  padding: 8px;
  color: var(--color-primary);
}

/* ============ HERO ============ */
.hero {
  height: 50vh;
  min-height: 480px;
  margin-top: var(--header-h);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(135deg, rgba(31, 61, 68, 0.78), rgba(168, 130, 90, 0.55)),
    url('imgs/hero-homfan.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-text-inverse);
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
  padding: 0 24px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  padding: 6px 16px;
  border: 1px solid rgba(245, 197, 134, 0.4);
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text-inverse);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.1875rem);
  line-height: 1.55;
  color: rgba(251, 248, 243, 0.92);
  max-width: 780px;
  margin: 0 auto 28px;
  font-weight: 400;
}

.hero__cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero__cta-group .btn-secondary {
  color: var(--color-text-inverse);
  border-color: rgba(251, 248, 243, 0.6);
}

.hero__cta-group .btn-secondary:hover {
  background: rgba(251, 248, 243, 0.15);
  color: var(--color-text-inverse);
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-light);
}

.hero__stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(251, 248, 243, 0.75);
}

/* Wave divider */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 3;
  pointer-events: none;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ============ SECTION DEFAULTS ============ */
section {
  padding: 80px 0;
  position: relative;
}

section:nth-of-type(odd) { background: var(--bg-primary); }
section:nth-of-type(even) { background: var(--bg-secondary); }

.hero, .footer { background: none; }

@media (max-width: 768px) {
  section { padding: 56px 0; }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--color-surface) !important;
  padding: 32px 0 !important;
  border-bottom: 1px solid var(--color-border);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-badge__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.trust-badge__text {
  font-size: 0.875rem;
  line-height: 1.4;
}

.trust-badge__title {
  font-weight: 600;
  color: var(--color-text);
  display: block;
  margin-bottom: 2px;
}

.trust-badge__sub {
  color: var(--color-text-muted);
  font-size: 0.8125rem;
}

/* ============ PRODUCTS ============ */
.products-section {
  background: var(--bg-primary) !important;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border-light);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-surface-muted);
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-card__category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
  font-weight: 600;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.product-card__stars {
  color: var(--color-accent);
  font-weight: 600;
}

.product-card__reviews {
  color: var(--color-text-light);
  font-size: 0.8125rem;
}

.product-card__description {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  flex: 1;
}

.product-card__highlights {
  list-style: none;
  margin: 6px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card__highlights li {
  position: relative;
  padding-left: 22px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.product-card__highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-success);
  font-weight: 700;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 12px 20px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background var(--transition);
}

.product-card__cta:hover {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.products-storefront {
  margin-top: 48px;
  text-align: center;
}

/* ============ BENEFITS ============ */
.benefits {
  position: relative;
}

.benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(31, 61, 68, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.benefits .container { position: relative; z-index: 1; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--color-surface);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition);
}

.benefit-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  border-radius: var(--radius-md);
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: var(--color-primary-dark);
}

.benefit-card__title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-primary);
  line-height: 1.3;
}

.benefit-card__description {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(31, 61, 68, 0.04) 0 1px, transparent 1px 16px);
  pointer-events: none;
  z-index: 0;
}

.how-it-works .container { position: relative; z-index: 1; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.step-card {
  text-align: center;
  padding: 24px 20px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  color: var(--color-accent-light);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(31, 61, 68, 0.18);
}

.step-card__title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.step-card__description {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ============ FEATURES (Zigzag) ============ */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 24px;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-block:nth-child(even) .feature-block__media {
  order: 2;
}

.feature-block__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

.feature-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-block__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.feature-block__title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.feature-block__description {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-block__bullets {
  list-style: none;
  margin-bottom: 24px;
}

.feature-block__bullets li {
  position: relative;
  padding: 8px 0 8px 30px;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
}

.feature-block__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  background: var(--color-accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none' stroke='%231F3D44' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 9 8 13 14 6'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

/* ============ ABOUT BRIEF ============ */
.about-brief-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.about-brief__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1 / 1;
}

.about-brief__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-brief__text h2 {
  text-align: left;
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  margin-bottom: 20px;
}

.about-brief__text p {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-brief__cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9375rem;
}

.about-brief__cta:hover { color: var(--color-accent); }

/* ============ REVIEWS ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card__rating {
  color: var(--color-accent);
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.review-card__text {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
  flex: 1;
}

.review-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid var(--color-border-light);
  font-size: 0.8125rem;
}

.review-card__author {
  font-weight: 600;
  color: var(--color-text);
}

.review-card__product {
  color: var(--color-text-muted);
  font-style: italic;
}

.review-card__verified {
  font-size: 0.75rem;
  color: var(--color-success);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

/* ============ CONVERSION SECTIONS ============ */
.conversion-section {
  background: var(--bg-secondary) !important;
}

.conversion-section--alt {
  background: var(--bg-primary) !important;
}

/* Comparison table */
.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.9375rem;
}

.comparison-table th {
  background: var(--color-surface-muted);
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--color-text);
}

.comparison-table .brand-col {
  background: linear-gradient(180deg, rgba(229, 161, 85, 0.12), rgba(229, 161, 85, 0.04));
  font-weight: 700;
  color: var(--color-primary);
}

.comparison-table .check { color: var(--color-success); font-size: 1.2rem; font-weight: 700; }
.comparison-table .cross { color: var(--color-error); font-size: 1.2rem; font-weight: 700; }

/* Timeline (what_you_get) */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  position: relative;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-accent), rgba(229, 161, 85, 0.2));
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  position: relative;
}

.timeline__marker {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--color-surface);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-align: center;
  color: var(--color-primary);
  line-height: 1.1;
  z-index: 1;
  padding: 4px;
}

.timeline__content { flex: 1; }

.timeline__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-primary);
}

.timeline__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Fears (pain points) */
.fears-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.fear-card {
  background: var(--color-surface);
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.fear-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.fear-card__description {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Personas (who_its_for) */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.persona-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--color-border-light);
}

.persona-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.persona-card__description {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.not-for-block {
  margin-top: 40px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border: 1px dashed var(--color-border);
}

.not-for-block h3 {
  font-size: 1.125rem;
  margin-bottom: 14px;
  color: var(--color-primary);
}

.not-for-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.not-for-block li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.not-for-block li::before {
  content: '✗';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-error);
  font-weight: 700;
  font-size: 1.125rem;
}

/* Expert */
.expert-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.expert-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-secondary);
}

.expert-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.expert-card__role {
  font-size: 0.875rem;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 16px;
}

.expert-card__quote {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.55;
  margin-bottom: 18px;
  position: relative;
  padding-left: 18px;
  border-left: 3px solid var(--color-accent);
}

.expert-card__tips {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.expert-card__tips li {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.expert-card__tips li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.expert-card__disclosure {
  margin-top: 18px;
  font-size: 0.75rem;
  color: var(--color-text-light);
  font-style: italic;
}

/* Mission values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.value-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--color-border-light);
  text-align: center;
}

.value-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.value-card__description {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Use cases */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.use-case-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--color-border-light);
}

.use-case-card__icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
}

.use-case-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.use-case-card__description {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ============ FAQ ============ */
.faq {
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='40' viewBox='0 0 80 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 C 20 0, 40 40, 60 20 S 100 0, 80 20' stroke='%231F3D44' stroke-opacity='0.04' fill='none' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.faq .container { position: relative; z-index: 1; }

.faq-list, .faq-more {
  max-width: 820px;
  margin: 0 auto;
}

.faq-more {
  margin-top: 16px;
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-item.is-open {
  border-color: var(--color-accent);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-primary);
  background: transparent;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--color-surface-muted);
}

.faq-question__text { flex: 1; }

.faq-question__chev {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform var(--transition);
}

.faq-question__chev::before,
.faq-question__chev::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 10px;
  height: 2px;
  background: var(--color-primary);
  transform-origin: center;
  transition: transform var(--transition);
}

.faq-question__chev::before {
  left: 3px;
  transform: translateY(-50%) rotate(45deg);
}

.faq-question__chev::after {
  right: 3px;
  transform: translateY(-50%) rotate(-45deg);
}

.faq-item.is-open .faq-question__chev::before {
  transform: translateY(-50%) rotate(-45deg);
}

.faq-item.is-open .faq-question__chev::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }

.faq-item:not(.is-open) .faq-answer { display: none; }
.faq-item.is-open .faq-answer { display: block; }
.faq-more[hidden] { display: none; }

.faq-expand-btn {
  display: block;
  margin: 28px auto 0;
  padding: 14px 32px;
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
}

.faq-expand-btn:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

/* ============ GALLERY ============ */
.gallery-section {
  background: var(--bg-primary) !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-surface-muted);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 18px 14px;
  background: linear-gradient(180deg, transparent, rgba(31, 61, 68, 0.85));
  color: var(--color-text-inverse);
  font-size: 0.8125rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__caption { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 30, 0.92);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-text-inverse);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 600;
}

/* ============ NEWSLETTER ============ */
.newsletter {
  background: var(--color-primary) !important;
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(229, 161, 85, 0.06) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(229, 161, 85, 0.06) 0 1px, transparent 1px 5px);
  opacity: 0.5;
  pointer-events: none;
}

.newsletter .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.newsletter__title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  color: var(--color-text-inverse);
  margin-bottom: 14px;
}

.newsletter__subtitle {
  font-size: 1.0625rem;
  color: rgba(251, 248, 243, 0.85);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.55;
}

.newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(229, 161, 85, 0.4);
  background: rgba(251, 248, 243, 0.08);
  color: var(--color-text-inverse);
  font-size: 0.9375rem;
  font-family: var(--font-body);
}

.newsletter__input::placeholder {
  color: rgba(251, 248, 243, 0.55);
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(251, 248, 243, 0.12);
}

.newsletter__submit {
  padding: 14px 24px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all var(--transition);
}

.newsletter__submit:hover {
  background: var(--color-accent-dark);
}

.newsletter__fine-print {
  font-size: 0.8125rem;
  color: rgba(251, 248, 243, 0.6);
  margin-top: 14px;
}

.newsletter-message {
  max-width: 480px;
  margin: 16px auto 0;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.newsletter-message--error {
  color: #fff;
  background: rgba(192, 57, 43, 0.85);
  border: 1px solid var(--color-error);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--color-primary-dark) !important;
  color: var(--color-text-inverse);
  padding: 64px 0 28px;
}

.footer__content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-inverse);
  margin-bottom: 12px;
}

.footer__brand-text span { color: var(--color-accent); }

.footer__tagline {
  font-size: 0.9375rem;
  color: rgba(251, 248, 243, 0.75);
  line-height: 1.55;
  margin-bottom: 18px;
}

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-inverse);
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a,
.footer__contact-info {
  color: rgba(251, 248, 243, 0.75);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--color-accent); }

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer__contact-info strong {
  color: var(--color-text-inverse);
  font-weight: 600;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(251, 248, 243, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  color: var(--color-text-inverse);
}

.footer__social a:hover {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.footer__languages {
  margin: 1.5rem 0 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(251, 248, 243, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
}

.footer__languages:empty { display: none; }

.footer__bottom {
  border-top: 1px solid rgba(251, 248, 243, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer__copyright {
  font-size: 0.875rem;
  color: rgba(251, 248, 243, 0.6);
  margin-bottom: 12px;
}

.footer__disclosure {
  font-size: 0.75rem;
  color: rgba(251, 248, 243, 0.5);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 110;
  background: var(--color-primary-dark);
  color: var(--color-text-inverse);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  max-width: 920px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-banner[hidden] { display: none; }

.cookie-banner p { flex: 1; min-width: 220px; line-height: 1.5; }

.cookie-banner a { color: var(--color-accent-light); text-decoration: underline; }

.cookie-banner__actions { display: flex; gap: 10px; }

.cookie-banner__btn {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.8125rem;
}

.cookie-banner__btn--accept {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.cookie-banner__btn--decline {
  background: transparent;
  color: var(--color-text-inverse);
  border: 1px solid rgba(251, 248, 243, 0.3);
}

/* ============ STICKY CTA ============ */
.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 105;
  background: rgba(31, 61, 68, 0.94);
  backdrop-filter: blur(14px);
  color: var(--color-text-inverse);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
}

.sticky-cta[hidden] { display: none; }

.sticky-cta__text {
  flex: 1;
  min-width: 200px;
  font-size: 0.875rem;
  line-height: 1.4;
}

.sticky-cta__cta {
  padding: 10px 20px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8125rem;
}

.sticky-cta__close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(251, 248, 243, 0.15);
  color: var(--color-text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ============ INTERNAL PAGES ============ */
.internal-page {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 80px;
  background: var(--bg-primary);
  min-height: 80vh;
}

.internal-page .container { max-width: 980px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 24px;
  font-weight: 500;
}

.back-link:hover { color: var(--color-accent); }

.page-h1 {
  font-size: clamp(2rem, 4vw, 2.875rem);
  margin-bottom: 18px;
  color: var(--color-primary);
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 36px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-top: 32px;
}

.contact-form {
  background: var(--color-surface);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-surface);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__submit {
  width: 100%;
  padding: 14px 28px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: background var(--transition);
}

.contact-form__submit:hover { background: var(--color-accent-dark); }

.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-message--error {
  color: var(--color-error);
  background: var(--color-error-bg);
  border: 1px solid var(--color-error);
}

.contact-info-block {
  background: var(--color-surface);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.contact-info-block h3 {
  font-size: 1.125rem;
  margin-bottom: 18px;
  color: var(--color-primary);
}

.contact-info-block dl {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-block dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-block dd {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
}

.contact-info-block address {
  font-style: normal;
}

/* About */
.about-story {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.about-story__text p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
}

.about-story__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mission {
  margin-top: 72px;
}

.about-mission h2 {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.about-mission__subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stat-block {
  text-align: center;
}

.stat-block__value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  line-height: 1;
}

.stat-block__label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 600;
}

/* Terms / Privacy */
.legal-content {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--color-border-light);
  margin-top: 24px;
}

.legal-content h2 {
  font-size: 1.375rem;
  margin: 32px 0 12px;
  color: var(--color-primary);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 12px;
}

.legal-content ul, .legal-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-style: italic;
}

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .feature-block { grid-template-columns: 1fr; gap: 32px; }
  .feature-block:nth-child(even) .feature-block__media { order: 0; }
  .about-brief-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .expert-card { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
  .expert-card__photo { max-width: 160px; margin: 0 auto; }
  .expert-card__quote { text-align: left; }
  .footer__content { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  .header__nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--bg-primary); padding: 24px; border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-md); }
  .header__nav.is-open { display: flex; }
  .header__nav ul { flex-direction: column; gap: 18px; width: 100%; }
  .header__nav a { display: block; font-size: 1rem; }
  .header__cta { display: none; }
  .header__hamburger { display: block; }
  .hero { min-height: 420px; }
  .hero__stats { gap: 20px; }
  .timeline::before { left: 24px; }
  .timeline__marker { width: 48px; height: 48px; font-size: 0.6875rem; }
  .legal-content { padding: 28px 24px; }
  .footer__content { grid-template-columns: 1fr; gap: 32px; }
  .stats-row { gap: 28px; padding: 24px 0; }
  .stat-block__value { font-size: 1.625rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__cta-group { flex-direction: column; align-items: stretch; }
  .hero__cta-group .btn-primary,
  .hero__cta-group .btn-secondary { width: 100%; }
  .cookie-banner, .sticky-cta { flex-direction: column; text-align: center; }
  .newsletter__form { flex-direction: column; }
  .newsletter__submit { width: 100%; }
}

/* ============================================================
   COMPATIBILITY + EXTENSIONS — aligns with index.html structure
   ============================================================ */

/* General btn helpers */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-md); font-weight: 600; font-size: 0.9375rem; transition: all var(--transition); cursor: pointer; text-align: center; white-space: nowrap; }
.btn-lg, .btn-large { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }

/* Accessibility helper */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ----- HEADER overrides ----- */
.header__logo { display: inline-flex; align-items: center; gap: 8px; }
.header__logo-mark { font-size: 1.4rem; line-height: 1; }
.header__logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem; color: var(--color-primary); letter-spacing: -0.01em; }
.header__nav { flex: 1; display: flex; justify-content: center; gap: 28px; }
.header__nav a { font-size: 0.94rem; font-weight: 500; color: var(--color-text); padding: 8px 0; position: relative; }
.header__nav a::after { content: ''; position: absolute; left: 0; bottom: 4px; width: 0; height: 2px; background: var(--color-accent); transition: width var(--transition); }
.header__nav a:hover::after, .header__nav a.is-active::after { width: 100%; }
.header__toggle { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: transparent; border: 0; padding: 8px; }
.header__toggle span { display: block; width: 22px; height: 2px; background: var(--color-primary); transition: all var(--transition); border-radius: 2px; }
.header.is-scrolled { box-shadow: var(--shadow-sm); }

@media (max-width: 900px) {
  .header__nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--bg-primary); padding: 24px; flex-direction: column; align-items: stretch; gap: 14px; border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-md); }
  .header__nav.is-open { display: flex; }
  .header__nav a { display: block; font-size: 1rem; padding: 12px 0; border-bottom: 1px solid var(--color-border-light); }
  .header__cta { display: none; }
  .header__toggle { display: inline-flex; }
}

/* ----- HERO override (two-column layout) ----- */
.hero {
  height: auto;
  min-height: 720px;
  margin-top: var(--header-h);
  background: var(--bg-primary);
  color: var(--color-text);
  padding: 72px 0 88px;
  display: block;
}
.hero__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.hero__content { text-align: left; max-width: none; padding: 0; }
.hero__eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-secondary); padding: 6px 14px; border: 1px solid rgba(168,130,90,0.35); border-radius: var(--radius-pill); margin-bottom: 22px; background: rgba(168,130,90,0.06); }
.hero__heading { font-family: var(--font-heading); font-size: clamp(2.1rem, 4.3vw, 3.4rem); line-height: 1.08; color: var(--color-primary); letter-spacing: -0.02em; margin-bottom: 22px; font-weight: 700; }
.hero__subtitle { font-size: clamp(1.02rem, 1.4vw, 1.18rem); line-height: 1.6; color: var(--color-text-muted); max-width: 620px; margin: 0 0 26px; }
.hero__bullets { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.hero__bullets li { padding-left: 30px; position: relative; line-height: 1.5; color: var(--color-text); font-size: 0.96rem; }
.hero__bullets li::before { content: '✓'; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 999px; background: var(--color-accent); color: var(--color-primary-dark); font-weight: 700; font-size: 0.78rem; display: inline-flex; align-items: center; justify-content: center; }
.hero__cta-row, .hero__cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin: 0 0 30px; }
.hero__trust { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-pill { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.01em; color: var(--color-primary); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-pill); padding: 7px 14px; }
.hero__media { position: relative; }
.hero__media img { width: 100%; height: 100%; max-height: 560px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero__badge { position: absolute; right: -16px; bottom: -16px; background: var(--color-surface); padding: 18px 22px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.hero__badge strong { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-accent-dark); }
.hero__badge span { font-size: 0.78rem; color: var(--color-text-muted); }

@media (max-width: 900px) {
  .hero { padding: 48px 0 64px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; text-align: left; }
  .hero__badge { right: 16px; bottom: 16px; }
}

/* ----- SECTION primitives ----- */
.section-padded { padding: 88px 0; }
.section-bg-alt { background: var(--bg-secondary); }
.section-bg-dots { background: var(--bg-primary); background-image: radial-gradient(circle at 1px 1px, rgba(31,61,68,0.08) 1px, transparent 1.5px); background-size: 22px 22px; }
.section-bg-lines { background: var(--bg-secondary); background-image: repeating-linear-gradient(135deg, rgba(168,130,90,0.07) 0 2px, transparent 2px 16px); }
.section-bg-waves { background: var(--bg-primary); position: relative; }
.section-bg-waves::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='40' viewBox='0 0 80 40'%3E%3Cpath d='M0 20 Q20 0 40 20 T80 20' stroke='%23A8825A' stroke-opacity='0.10' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); opacity: 0.55; pointer-events: none; }
.section-bg-waves > .container { position: relative; z-index: 1; }

.section-header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-secondary); margin-bottom: 14px; }
.section-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; line-height: 1.15; color: var(--color-primary); letter-spacing: -0.015em; margin-bottom: 14px; }
.section-subtitle { font-size: 1.05rem; line-height: 1.6; color: var(--color-text-muted); max-width: 720px; margin: 0 auto; text-align: center; }

/* ----- BENEFITS ----- */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { background: var(--color-surface); border: 1px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-card__icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark)); color: var(--color-primary-dark); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 0.92rem; margin-bottom: 16px; box-shadow: 0 4px 10px rgba(229,161,85,0.3); }
.benefit-card__title { font-size: 1.08rem; font-weight: 700; color: var(--color-primary); margin-bottom: 8px; font-family: var(--font-heading); }
.benefit-card__desc { font-size: 0.94rem; line-height: 1.55; color: var(--color-text-muted); }
@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ----- PRODUCTS ----- */
.products { background: var(--bg-primary); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card { background: var(--color-surface); border: 1px solid var(--color-border-light); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-card__img-link { display: block; background: var(--color-surface-muted); aspect-ratio: 1 / 1; overflow: hidden; }
.product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card__title { font-size: 1.02rem; font-weight: 700; line-height: 1.35; font-family: var(--font-heading); color: var(--color-primary); }
.product-card__title a { color: inherit; }
.product-card__title a:hover { color: var(--color-accent-dark); }
.product-card__rating { display: flex; gap: 6px; align-items: center; font-size: 0.85rem; color: var(--color-text-muted); }
.stars { color: var(--color-accent); letter-spacing: 1px; font-size: 0.95rem; }
.rating-count { font-size: 0.82rem; color: var(--color-text-light); }
.product-card__desc { font-size: 0.9rem; line-height: 1.55; color: var(--color-text-muted); }
.product-card__highlights { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.product-card__highlights li { font-size: 0.85rem; line-height: 1.5; padding-left: 20px; position: relative; color: var(--color-text); }
.product-card__highlights li::before { content: '·'; position: absolute; left: 8px; top: -2px; color: var(--color-accent); font-weight: 700; font-size: 1.3rem; }
.product-card__cta { margin-top: auto; align-self: stretch; }
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } }

/* ----- HOW IT WORKS (steps) ----- */
.steps-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { background: var(--color-surface); border: 1px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 28px 24px; position: relative; box-shadow: var(--shadow-sm); }
.step-card__num { width: 36px; height: 36px; border-radius: 999px; background: var(--color-primary); color: var(--color-text-inverse); font-family: var(--font-heading); font-weight: 700; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step-card__title { font-size: 1.06rem; font-weight: 700; color: var(--color-primary); margin-bottom: 8px; font-family: var(--font-heading); }
.step-card__desc { font-size: 0.93rem; line-height: 1.55; color: var(--color-text-muted); }
@media (max-width: 900px) { .steps-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps-list { grid-template-columns: 1fr; } }

/* ----- FEATURES (zigzag) ----- */
.features { background: var(--bg-primary); }
.feature-blocks { display: grid; gap: 80px; }
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-block--reverse { direction: rtl; }
.feature-block--reverse > * { direction: ltr; }
.feature-block__media img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; }
.feature-block__body { display: grid; gap: 16px; }
.feature-block__title { font-family: var(--font-heading); font-size: 1.6rem; line-height: 1.2; color: var(--color-primary); font-weight: 700; }
.feature-block__para { font-size: 1.02rem; line-height: 1.65; color: var(--color-text-muted); }
.feature-block__bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.feature-block__bullets li { padding-left: 28px; position: relative; font-size: 0.96rem; line-height: 1.55; color: var(--color-text); }
.feature-block__bullets li::before { content: '→'; position: absolute; left: 0; top: 0; color: var(--color-accent-dark); font-weight: 700; font-size: 1.05rem; }
@media (max-width: 900px) {
  .feature-block, .feature-block--reverse { grid-template-columns: 1fr; gap: 24px; direction: ltr; }
  .feature-blocks { gap: 56px; }
}

/* ----- ABOUT BRIEF ----- */
.about-brief { background: var(--bg-secondary); }
.about-brief__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.about-brief__media img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; }
.about-brief__body p { font-size: 1rem; line-height: 1.7; color: var(--color-text); margin-bottom: 16px; }
.about-brief__body .section-eyebrow { display: inline-block; }
.about-brief__body .section-heading { text-align: left; margin-bottom: 20px; }
@media (max-width: 900px) { .about-brief__inner { grid-template-columns: 1fr; gap: 28px; } }

/* ----- COMPARISON ----- */
.comparison__table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); background: var(--color-surface); border: 1px solid var(--color-border-light); }
.comparison__table { width: 100%; border-collapse: collapse; min-width: 720px; }
.comparison__table th, .comparison__table td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--color-border-light); font-size: 0.94rem; vertical-align: top; }
.comparison__table thead th { background: var(--color-surface-muted); color: var(--color-primary); font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; }
.comparison__table tbody th[scope="row"] { font-weight: 600; color: var(--color-primary); background: var(--color-surface-muted); }
.comparison__brand-col { background: rgba(229,161,85,0.10); color: var(--color-primary); font-weight: 600; }
.comparison__table tbody tr:last-child th, .comparison__table tbody tr:last-child td { border-bottom: 0; }

/* ----- WHAT YOU GET (timeline) ----- */
.what-you-get { }
.timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 24px; max-width: 880px; margin-left: auto; margin-right: auto; }
.timeline-item { display: grid; grid-template-columns: 140px 1fr; gap: 28px; padding: 24px 28px; background: var(--color-surface); border: 1px solid var(--color-border-light); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.timeline-item__time { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--color-accent-dark); padding-top: 2px; }
.timeline-item__body { font-size: 0.98rem; line-height: 1.6; color: var(--color-text); }
@media (max-width: 700px) { .timeline-item { grid-template-columns: 1fr; gap: 8px; } }

/* ----- FEARS ----- */
.fears { background: var(--bg-primary); }
.fears-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.fear-card { background: var(--color-surface); border: 1px solid var(--color-border-light); border-left: 3px solid var(--color-accent-dark); border-radius: var(--radius-md); padding: 26px 28px; box-shadow: var(--shadow-sm); }
.fear-card__title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; line-height: 1.3; }
.fear-card__desc { font-size: 0.95rem; line-height: 1.6; color: var(--color-text-muted); }
.fear-card__stat { margin-top: 12px; font-size: 0.85rem; color: var(--color-text-light); font-style: italic; }
@media (max-width: 800px) { .fears-grid { grid-template-columns: 1fr; } }

/* ----- MISSION (values) ----- */
.mission { }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: var(--color-surface); border: 1px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.value-card__title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; }
.value-card__desc { font-size: 0.93rem; line-height: 1.6; color: var(--color-text-muted); }
@media (max-width: 1000px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

/* ----- WHO ITS FOR (personas) ----- */
.who-its-for { }
.personas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.persona-card { background: var(--color-surface); border: 1px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow-sm); }
.persona-card__emoji { font-size: 1.8rem; margin-bottom: 14px; }
.persona-card__title { font-family: var(--font-heading); font-size: 1.06rem; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; line-height: 1.3; }
.persona-card__desc { font-size: 0.94rem; line-height: 1.6; color: var(--color-text-muted); }
.not-for { margin-top: 40px; background: var(--color-surface); border: 1px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 28px 30px; }
.not-for__title { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); margin-bottom: 14px; font-size: 1.1rem; }
.not-for__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.not-for__list li { padding-left: 28px; position: relative; font-size: 0.95rem; line-height: 1.55; color: var(--color-text-muted); }
.not-for__list li::before { content: '×'; position: absolute; left: 0; top: -3px; color: var(--color-error); font-weight: 700; font-size: 1.3rem; }
@media (max-width: 900px) { .personas-grid { grid-template-columns: 1fr; } }

/* ----- USE CASES ----- */
.use-cases { }
.use-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.use-case-card { background: var(--color-surface); border: 1px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.use-case-card__title { font-family: var(--font-heading); font-size: 1.04rem; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; line-height: 1.3; }
.use-case-card__desc { font-size: 0.94rem; line-height: 1.6; color: var(--color-text-muted); }
@media (max-width: 900px) { .use-cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .use-cases-grid { grid-template-columns: 1fr; } }

/* ----- EXPERT ----- */
.expert { }
.expert__card { display: grid; grid-template-columns: 220px 1fr; gap: 36px; align-items: start; background: var(--color-surface); border: 1px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.expert__avatar img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); aspect-ratio: 1/1; object-fit: cover; }
.expert__body { display: grid; gap: 18px; }
.expert__quote { font-family: var(--font-heading); font-size: 1.18rem; line-height: 1.55; color: var(--color-primary); border-left: 3px solid var(--color-accent); padding-left: 20px; font-style: italic; font-weight: 500; }
.expert__attr { font-size: 0.94rem; color: var(--color-text-muted); }
.expert__attr strong { color: var(--color-primary); font-family: var(--font-heading); font-size: 1rem; }
.expert__tips { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.expert__tips li { padding-left: 28px; position: relative; font-size: 0.95rem; line-height: 1.6; color: var(--color-text); }
.expert__tips li::before { content: '★'; position: absolute; left: 0; top: 1px; color: var(--color-accent); font-weight: 700; }
.expert__picks { font-size: 0.95rem; color: var(--color-text); }
.expert__picks-list { display: inline; list-style: none; padding: 0; margin: 0; }
.expert__picks-list li { display: inline; }
.expert__picks-list li:not(:last-child)::after { content: ' · '; color: var(--color-text-light); }
.expert__disclosure { font-size: 0.8rem; color: var(--color-text-light); border-top: 1px solid var(--color-border-light); padding-top: 14px; }
@media (max-width: 800px) {
  .expert__card { grid-template-columns: 1fr; padding: 26px; }
  .expert__avatar img { max-width: 200px; margin: 0 auto; }
}

/* ----- FAQ ----- */
.faq-list { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
.faq-item { background: var(--color-surface); border: 1px solid var(--color-border-light); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow var(--transition); }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.is-open { box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; text-align: left; font-weight: 600; font-size: 1rem; color: var(--color-primary); cursor: pointer; }
.faq-question__icon { font-size: 1.4rem; font-weight: 400; color: var(--color-accent-dark); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.is-open .faq-question__icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { font-size: 0.96rem; line-height: 1.65; color: var(--color-text-muted); margin: 0; }
.faq-item:not(.is-open) .faq-answer { display: none; }
.faq-item.is-open .faq-answer { display: block; }
.faq-more[hidden] { display: none; }
.faq-more { display: grid; gap: 12px; max-width: 880px; margin: 12px auto 0; }
.faq-more-toggle-wrap { text-align: center; margin-top: 28px; }

/* ----- NEWSLETTER ----- */
.newsletter { background: var(--color-primary); color: var(--color-text-inverse); position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23F5C586' stroke-opacity='0.06' stroke-width='1'/%3E%3C/svg%3E"); pointer-events: none; }
.newsletter__inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; }
.newsletter__heading { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--color-text-inverse); margin-bottom: 14px; line-height: 1.2; }
.newsletter__subtitle { font-size: 1rem; line-height: 1.6; color: rgba(251,248,243,0.85); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; max-width: 560px; margin: 0 auto 14px; }
.newsletter-form input[type="email"] { flex: 1; padding: 14px 18px; border-radius: var(--radius-md); border: 0; font-family: var(--font-body); font-size: 0.95rem; background: rgba(255,255,255,0.95); color: var(--color-text); }
.newsletter-form .btn-primary { flex-shrink: 0; }
.newsletter__note { font-size: 0.82rem; color: rgba(251,248,243,0.65); }
@media (max-width: 700px) { .newsletter-form { flex-direction: column; } }

/* ----- FOOTER ----- */
.footer { background: var(--color-primary-dark); color: rgba(251,248,243,0.85); padding: 72px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 48px; }
.footer__brand { }
.footer__logo { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer__logo-mark { font-size: 1.4rem; }
.footer__logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem; color: var(--color-text-inverse); letter-spacing: -0.01em; }
.footer__tagline { font-size: 0.92rem; line-height: 1.6; margin-bottom: 18px; }
.footer__social { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 14px; }
.footer__social a { color: var(--color-accent-light); font-size: 0.85rem; font-weight: 500; }
.footer__social a:hover { color: var(--color-accent); }
.footer__heading { font-family: var(--font-heading); color: var(--color-text-inverse); font-size: 1rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__links a { color: rgba(251,248,243,0.75); font-size: 0.92rem; }
.footer__links a:hover { color: var(--color-accent); }
.footer__address { font-style: normal; font-size: 0.92rem; line-height: 1.6; margin-bottom: 10px; }
.footer__address a { color: var(--color-accent-light); }
.footer__hours { font-size: 0.85rem; color: rgba(251,248,243,0.65); }
.footer__bottom { border-top: 1px solid rgba(251,248,243,0.12); padding-top: 22px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer__copyright { font-size: 0.85rem; color: rgba(251,248,243,0.65); }
.footer__disclosure { font-size: 0.78rem; color: rgba(251,248,243,0.6); max-width: 760px; }
.footer__disclosure p { margin: 0; line-height: 1.6; }
@media (max-width: 900px) {
  .footer__inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ----- COOKIE BANNER ----- */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; background: var(--color-primary-dark); color: var(--color-text-inverse); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 16px 18px; }
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-banner__text { font-size: 0.88rem; line-height: 1.5; flex: 1; min-width: 240px; color: rgba(251,248,243,0.92); }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__actions .btn-secondary { color: var(--color-text-inverse); border-color: rgba(251,248,243,0.4); }
.cookie-banner__actions .btn-secondary:hover { background: rgba(251,248,243,0.1); color: var(--color-text-inverse); }
@media (max-width: 600px) { .cookie-banner__actions { width: 100%; } .cookie-banner__actions .btn { flex: 1; } }

/* ----- STICKY CTA ----- */
.sticky-cta { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 14px 18px; }
.sticky-cta[hidden] { display: none; }
.sticky-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.sticky-cta__text { font-size: 0.9rem; color: var(--color-text); flex: 1; min-width: 220px; line-height: 1.5; }
.sticky-cta__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.sticky-cta__close { width: 32px; height: 32px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--color-text-muted); background: transparent; border: 1px solid var(--color-border); }
.sticky-cta__close:hover { background: var(--color-surface-muted); color: var(--color-text); }

/* ----- LIGHTBOX ----- */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(15,30,35,0.92); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 24px; right: 28px; width: 44px; height: 44px; border-radius: 999px; background: rgba(255,255,255,0.12); color: #fff; font-size: 1.6rem; display: inline-flex; align-items: center; justify-content: center; }
body.lightbox-open { overflow: hidden; }
body.nav-open { overflow: hidden; }

/* ----- FORM ERROR ----- */
.form-error { display: none; background: var(--color-error-bg); color: var(--color-error); border: 1px solid rgba(192,57,43,0.35); border-radius: var(--radius-md); padding: 14px 18px; margin-top: 16px; font-size: 0.92rem; line-height: 1.5; }
.form-error.is-visible { display: block; }

/* ----- INTERNAL PAGES ----- */
.page-hero { padding: 72px 0 32px; background: var(--bg-primary); }
.page-hero__heading { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--color-primary); margin: 10px 0 12px; line-height: 1.15; }
.page-hero__subtitle { font-size: 1.05rem; line-height: 1.6; color: var(--color-text-muted); max-width: 720px; }

/* About page */
.about-page__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.about-page__body p { font-size: 1rem; line-height: 1.75; color: var(--color-text); margin-bottom: 18px; }
.about-page__media img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; }
.about-cta { background: var(--bg-secondary); text-align: center; }
.about-cta__inner { max-width: 720px; margin: 0 auto; display: grid; gap: 18px; justify-items: center; }
@media (max-width: 900px) { .about-page__inner { grid-template-columns: 1fr; gap: 32px; } }

/* Contact page */
.contact__inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start; }
.contact-form { display: grid; gap: 16px; }
.contact-form .section-heading { text-align: left; margin-bottom: 12px; }
.form-row { display: grid; gap: 6px; }
.form-row label { font-weight: 600; font-size: 0.9rem; color: var(--color-primary); }
.form-row input, .form-row select, .form-row textarea { padding: 12px 14px; border: 1px solid var(--color-border); border-radius: var(--radius-md); font-family: inherit; font-size: 0.95rem; background: var(--color-surface); color: var(--color-text); transition: border-color var(--transition); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(229,161,85,0.18); }
.contact__sidebar { background: var(--color-surface); border: 1px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.contact__sidebar .section-heading { text-align: left; font-size: 1.3rem; margin-bottom: 16px; }
.contact__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.contact__list li { display: grid; gap: 4px; font-size: 0.94rem; line-height: 1.55; color: var(--color-text-muted); }
.contact__list strong { color: var(--color-primary); font-weight: 700; font-size: 0.9rem; }
.contact__list a { color: var(--color-accent-dark); }
@media (max-width: 900px) { .contact__inner { grid-template-columns: 1fr; gap: 32px; } }

/* Legal pages */
.legal-content__inner { max-width: 780px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-heading); font-size: 1.35rem; color: var(--color-primary); margin: 36px 0 12px; line-height: 1.25; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 1rem; line-height: 1.75; color: var(--color-text); margin-bottom: 16px; }
.legal-content a { color: var(--color-accent-dark); text-decoration: underline; }

/* auto-email anchor */
.auto-email { color: var(--color-accent-dark); }

/* Affiliate disclosure inline text */
.affiliate-disclosure-text { font-size: 0.78rem; color: rgba(251,248,243,0.55); margin-top: 6px; line-height: 1.55; }

