/* ==========================================================================
   Sageon Media — site.css
   Handwritten CSS, BEM naming, CSS Grid for structure / flexbox in components.
   Two design families share this file:
     .theme-dark  → publication / advertorial (index, about)
     .theme-light → offer (course, contact, cookies, data-rights,
                    earnings-disclaimer, privacy, terms)
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }
h1, h2, h3, h4, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

/* ---------- Design tokens ---------- */
:root {
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(10, 12, 20, 0.08);
  --shadow-md: 0 12px 32px rgba(10, 12, 20, 0.16);
  --transition: 180ms ease;
  --container-wide: 1180px;
  --container-article: 760px;
  --container-narrow: 620px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;

  --fs-h1: clamp(1.8rem, 1.25rem + 2.9vw, 3.2rem);
  --fs-h2: clamp(1.4rem, 1.15rem + 1.4vw, 2.15rem);
  --fs-h3: clamp(1.15rem, 1.02rem + 0.6vw, 1.4rem);
  --fs-lead: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem);
  --fs-stat: clamp(1.9rem, 1.4rem + 2.6vw, 2.9rem);
  --fs-small: 0.875rem;
}

/* ---------- Theme: dark (publication / advertorial) ---------- */
.theme-dark {
  --bg: #0a0d14;
  --bg-raised: #131826;
  --bg-raised-2: #171d2e;
  --text: #f4f6fb;
  --text-muted: #a6afc4;
  --border: rgba(244, 246, 251, 0.1);
  --accent: #3b6dfb;
  --accent-strong: #6690ff;
  --accent-contrast: #06070c;
  --focus: #8fb1ff;
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
}

/* ---------- Theme: light (offer / legal) ---------- */
.theme-light {
  --bg: #f6f9f7;
  --bg-raised: #ffffff;
  --bg-raised-2: #eef4f0;
  --text: #10201a;
  --text-muted: #4c5f57;
  --border: rgba(16, 32, 26, 0.12);
  --accent: #0d7a56;
  --accent-strong: #0a5f43;
  --accent-contrast: #ffffff;
  --focus: #0d7a56;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

.theme-dark h1, .theme-dark h2, .theme-dark h3 {
  font-family: 'Century Gothic', 'Segoe UI', system-ui, sans-serif;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.12;
}
.theme-light h1, .theme-light h2, .theme-light h3 {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: -0.01em;
  font-weight: 800;
  line-height: 1.14;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--accent-contrast);
  padding: 0.75em 1.25em;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.wrap--article { max-width: var(--container-article); }
.wrap--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-5); }
.section--tight { padding-block: var(--space-4); }
.section--alt.theme-dark, .theme-dark .section--alt { background: var(--bg-raised); }
.theme-light .section--alt { background: var(--bg-raised-2); }
.section__kicker {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
  margin-bottom: var(--space-2);
}
.section__title { font-size: var(--fs-h2); margin-bottom: var(--space-2); max-width: 46ch; }
.section__lead { font-size: var(--fs-lead); color: var(--text-muted); max-width: 62ch; margin-bottom: var(--space-3); }
.section__head { margin-bottom: var(--space-4); }
.section__head--center { text-align: center; margin-inline: auto; }
.section__head--center .section__title,
.section__head--center .section__lead { margin-inline: auto; }

/* ---------- Disclosure ribbon ---------- */
.disclosure-ribbon {
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Site header / nav ---------- */
.site-header {
  border-bottom: 1px solid var(--border);
  position: relative;
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  gap: 1rem;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.05rem;
}
.site-header__brand-mark {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--accent-contrast);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}
.site-header__tagline {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.site-header__toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.site-header__nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding-block: 0.5rem 1.25rem;
}
.site-header__nav.is-open { display: flex; }
.site-header__nav-link {
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.site-header__nav-link:hover, .site-header__nav-link:focus-visible { color: var(--accent-strong); }
.site-header__cta { margin-top: 0.5rem; }

@media (min-width: 768px) {
  .site-header__toggle { display: none; }
  .site-header__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
    padding: 0;
  }
  .site-header__nav-link { border-bottom: none; padding: 0.25rem 0; min-height: auto; }
  .site-header__cta { margin-top: 0; margin-left: 0.5rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-align: center;
}
.btn--primary {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover, .btn--primary:focus-visible { background: var(--accent-strong); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn--secondary:hover, .btn--secondary:focus-visible { border-color: var(--accent); color: var(--accent-strong); }
.btn--block { width: 100%; }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ---------- Badge row ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ---------- Hero (advertorial) ---------- */
.hero { padding-block: var(--space-5) var(--space-4); }
.hero__byline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}
.hero__h1 {
  font-size: var(--fs-h1);
  margin-bottom: 0.9rem;
}
.hero__h1 em { color: var(--accent-strong); font-style: normal; }
.hero__h2 {
  font-size: var(--fs-lead);
  font-weight: 600;
  color: var(--text-muted);
  max-width: 58ch;
  margin-bottom: var(--space-3);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-block: var(--space-3); }
.hero__badges { margin-bottom: var(--space-3); }

/* ---------- Hero (offer, split layout) ---------- */
.hero-offer {
  padding-block: var(--space-4) var(--space-5);
}
.hero-offer__grid {
  display: grid;
  gap: var(--space-4);
}
.hero-offer__eyebrow {
  display: inline-block;
  font-weight: 700;
  color: var(--accent-strong);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.hero-offer__h1 { font-size: var(--fs-h1); margin-bottom: 1rem; }
.hero-offer__subhead { font-size: var(--fs-lead); color: var(--text-muted); margin-bottom: var(--space-3); max-width: 56ch; }
.hero-offer__checks { display: flex; flex-direction: column; gap: 0.6rem; margin-block: var(--space-3); }
.hero-offer__check { display: flex; gap: 0.6rem; align-items: flex-start; font-weight: 600; }
.hero-offer__check-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-contrast);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}
.hero-offer__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: var(--space-3); }
.hero-offer__media { position: relative; }

@media (min-width: 1024px) {
  .hero-offer__grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
}

/* ---------- Media frame (video / gif loop wrapper) ---------- */
.media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-raised-2);
  border: 1px solid var(--border);
}
.media-frame--wide { aspect-ratio: 16 / 9; }
.media-frame video, .media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame__caption {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-top: 0.6rem;
}

/* ---------- Floating check badges over hero media ---------- */
.floating-check {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1rem 0.6rem 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  max-width: 88%;
}
.floating-check__icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-contrast);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.floating-check--a { top: -14px; left: 12px; }
.floating-check--b { bottom: 18%; right: -10px; }
@media (max-width: 767px) {
  .floating-check { position: static; margin-top: 0.75rem; max-width: 100%; }
}

/* ---------- Stat band (market rates) ---------- */
.stat-band {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: var(--space-4);
}
.stat-band__item { text-align: center; padding-inline: 0.5rem; }
.stat-band__figure {
  font-size: var(--fs-stat);
  font-weight: 800;
  color: var(--accent-strong);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.stat-band__label { font-size: var(--fs-small); color: var(--text-muted); margin-top: 0.4rem; }
.stat-band__note { font-size: var(--fs-small); color: var(--text-muted); margin-top: var(--space-2); }
.stat-band__note a { text-decoration: underline; color: var(--text-muted); }
@media (min-width: 640px) {
  .stat-band { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Card grid ---------- */
.card-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__icon { font-size: 1.6rem; margin-bottom: 0.75rem; }
.card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.card__text { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Article body text ---------- */
.article-body p { margin-bottom: 1.1rem; max-width: 68ch; }
.article-body p:last-child { margin-bottom: 0; }

/* ---------- Compare table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-md); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.compare-table th, .compare-table td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.compare-table thead th {
  background: var(--bg-raised-2);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td:first-child, .compare-table th:first-child { font-weight: 600; color: var(--text-muted); }
.compare-table__win { color: var(--accent-strong); font-weight: 700; }

/* ---------- Savings callouts ---------- */
.callout-row { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: var(--space-3); }
@media (min-width: 640px) { .callout-row { grid-template-columns: 1fr 1fr; } }
.callout {
  border: 1px dashed var(--accent-strong);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---------- Steps ---------- */
.steps { display: grid; gap: 1.25rem; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps--4 { }
@media (min-width: 768px) { .steps--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps--4 { grid-template-columns: repeat(4, 1fr); } }
.steps__item {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}
.steps__num {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-contrast);
  font-weight: 800;
  margin-bottom: 0.85rem;
}
.steps__title { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.4rem; }
.steps__text { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Quote card ---------- */
.quote-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  position: relative;
}
.quote-card__mark { font-size: 3rem; line-height: 1; color: var(--accent); font-weight: 800; }
.quote-card__text { font-size: var(--fs-lead); font-weight: 600; margin-block: 0.5rem 1rem; max-width: 56ch; }
.quote-card__attr { color: var(--text-muted); font-size: 0.9rem; }
.quote-card__actions { margin-top: var(--space-3); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
}
.cta-band__title { font-size: var(--fs-h2); margin-bottom: 0.75rem; }
.cta-band__text { color: var(--text-muted); max-width: 58ch; margin-inline: auto; margin-bottom: var(--space-3); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- Full-width highlighted callout (AI leverage band, offer page) ---------- */
.leverage-band {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: var(--accent-contrast);
  padding-block: var(--space-5);
}
.leverage-band .section__kicker { color: rgba(255,255,255,0.85); }
.leverage-band__title { font-size: var(--fs-h2); margin-bottom: 1rem; max-width: 42ch; }
.leverage-band__text { max-width: 62ch; font-size: var(--fs-lead); opacity: 0.95; margin-bottom: var(--space-3); }
.leverage-band__grid { display: grid; gap: var(--space-3); }
@media (min-width: 1024px) { .leverage-band__grid { grid-template-columns: 1.2fr 0.8fr; align-items: center; } }
.leverage-band__list { display: flex; flex-direction: column; gap: 0.6rem; }
.leverage-band__list li { display: flex; gap: 0.6rem; font-weight: 600; }

/* ---------- Pricing packages (stacked full-width boxes) ---------- */
.pricing-stack { display: flex; flex-direction: column; gap: 1.5rem; }
.pricing-card {
  display: grid;
  gap: 1.25rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.pricing-card--highlight {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.pricing-card__ribbon {
  position: absolute;
  top: -14px; left: 1.5rem;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
}
.pricing-card__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 0.75rem; }
.pricing-card__name { font-size: var(--fs-h3); font-weight: 800; }
.pricing-card__price { font-size: var(--fs-h2); font-weight: 800; color: var(--accent-strong); }
.pricing-card__hours { color: var(--text-muted); font-size: 0.9rem; }
.pricing-card__list { display: flex; flex-direction: column; gap: 0.55rem; }
.pricing-card__list li { display: flex; gap: 0.6rem; align-items: flex-start; }
.pricing-card__list li::before { content: "✓"; color: var(--accent-strong); font-weight: 800; flex-shrink: 0; }
.pricing-card__foot { display: flex; }

@media (min-width: 768px) {
  .pricing-card { grid-template-columns: 1fr 220px; align-items: center; }
  .pricing-card__body { grid-column: 1 / 2; }
  .pricing-card__foot { grid-column: 2 / 3; }
}

/* ---------- Add-on list ---------- */
.addon-list { display: flex; flex-direction: column; gap: 1rem; }
.addon-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
}
.addon-item__name { font-weight: 700; margin-bottom: 0.25rem; }
.addon-item__text { color: var(--text-muted); font-size: 0.92rem; max-width: 46ch; }
.addon-item__price { font-weight: 800; font-size: 1.15rem; color: var(--accent-strong); white-space: nowrap; }

/* ---------- Perks stack ---------- */
.perks-list { display: grid; gap: 0.85rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .perks-list { grid-template-columns: repeat(2, 1fr); } }
.perks-list__item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  background: var(--bg-raised-2);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.perks-list__icon { color: var(--accent-strong); font-weight: 800; flex-shrink: 0; }

/* ---------- Limits block ---------- */
.limits-block {
  background: var(--bg-raised-2);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.limits-block__list { display: flex; flex-direction: column; gap: 0.85rem; }
.limits-block__list li { display: flex; gap: 0.7rem; }
.limits-block__list li::before { content: "•"; color: var(--accent-strong); font-weight: 800; }

/* ---------- Lead form ---------- */
.lead-form {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  max-width: 620px;
  margin-inline: auto;
}
.lead-form__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .lead-form__grid--2 { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-weight: 700; font-size: 0.92rem; }
.form-field input, .form-field textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.9rem;
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  min-height: 48px;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--accent); }
.form-field__error {
  color: #d0264c;
  font-size: 0.85rem;
  display: none;
  font-weight: 600;
}
.form-field--invalid input, .form-field--invalid textarea { border-color: #d0264c; }
.form-field--invalid .form-field__error { display: block; }
.form-consent { display: flex; gap: 0.65rem; align-items: flex-start; margin-block: 1.1rem; }
.form-consent input { width: 20px; height: 20px; margin-top: 0.15rem; flex-shrink: 0; }
.form-consent label { font-size: 0.9rem; color: var(--text-muted); }
.form-consent__error { display: none; margin-top: 0.35rem; }
.form-consent--invalid input { outline: 2px solid #d0264c; }
.form-consent--invalid .form-consent__error { display: block; }
.lead-form__note { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.9rem; }
.form-success {
  display: none;
  background: var(--bg-raised-2);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  font-weight: 700;
  margin-top: 1rem;
}
.form-success.is-visible { display: block; }
.lead-form.is-submitted .lead-form__fields { display: none; }

/* ---------- Value summary ---------- */
.value-summary { display: grid; gap: var(--space-4); }
@media (min-width: 1024px) { .value-summary { grid-template-columns: 1fr 1fr; align-items: center; } }
.value-summary__list { display: flex; flex-direction: column; gap: 0.85rem; margin-top: var(--space-3); }
.value-summary__list li { display: flex; gap: 0.65rem; }
.value-summary__list li::before { content: "→"; color: var(--accent-strong); font-weight: 800; flex-shrink: 0; }
.value-summary__price {
  display: inline-block;
  margin-top: var(--space-3);
  font-size: var(--fs-h3);
  font-weight: 800;
  background: var(--bg-raised-2);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
}

/* ---------- Site disclaimer ---------- */
.site-disclaimer {
  display: block;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: var(--space-3);
}
.site-disclaimer__inner {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.site-disclaimer__inner a { color: var(--accent-strong); text-decoration: underline; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { padding-block: var(--space-4); background: var(--bg); }
.site-footer__inner {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.site-footer__company {
  white-space: pre-line;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}
.site-footer__links a {
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.site-footer__links a:hover, .site-footer__links a:focus-visible { color: var(--accent-strong); text-decoration: underline; }

/* ---------- Legal page content ---------- */
.legal-hero { padding-block: var(--space-5) var(--space-3); }
.legal-hero__h1 { font-size: var(--fs-h1); margin-bottom: 0.75rem; }
.legal-hero__meta { color: var(--text-muted); }
.legal-content { padding-bottom: var(--space-5); }
.legal-content h2 { font-size: var(--fs-h3); margin-bottom: 0.75rem; margin-top: var(--space-4); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { margin-bottom: 1rem; max-width: 72ch; color: var(--text-muted); }
.legal-content ul { padding-left: 1.25rem; list-style: disc; }
.legal-content ul li { margin-bottom: 0.5rem; }
.legal-content strong { color: var(--text); }

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-md { margin-top: var(--space-4); }
.mt-lg { margin-top: var(--space-5); }
.mt-sm { margin-top: 1rem; }

@media (min-width: 768px) {
  .section { padding-block: var(--space-6); }
  .hero { padding-block: var(--space-6) var(--space-5); }
}
