/* ==========================================================================
   KYNOURA / Honest Monitor + KundeFlow — shared stylesheet
   Plain CSS, system fonts only, mobile-first, theme-driven via CSS vars.
   ========================================================================== */

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

:root {
  /* Publication theme (default) — advertorial + about */
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #5b5b5b;
  --surface: #f5f5f3;
  --surface-2: #eeeeee;
  --border: #dcdcdc;
  --navy: #132c52;
  --navy-2: #0d2244;
  --accent: #2f8f4e;
  --accent-dark: #23703c;
  --accent-contrast: #ffffff;
  --link: #14315c;
  --star: #f5a623;
  --danger: #a02525;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --font-body: Arial, Helvetica, "Segoe UI", sans-serif;
  --font-head: Arial, Helvetica, "Segoe UI", sans-serif;
  --shadow-1: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-2: 0 8px 24px rgba(0,0,0,0.10);
  --maxw: 1100px;
}

body.theme-offer {
  --bg: #0a0d13;
  --text: #e9edf6;
  --muted: #9aa4b7;
  --surface: #131826;
  --surface-2: #171d2e;
  --border: rgba(255,255,255,0.10);
  --navy: #05070c;
  --navy-2: #0a0d13;
  --accent: #3b6fed;
  --accent-dark: #2b56c4;
  --accent-contrast: #ffffff;
  --link: #8fb0ff;
  --star: #f5a623;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-body: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow-1: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-2: 0 20px 50px rgba(0,0,0,0.55);
}

html { -webkit-text-size-adjust: 100%; }
body.theme-pub { color-scheme: light; }
body.theme-offer { color-scheme: dark; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--link); text-decoration: underline; text-underline-offset: 2px; }
a:hover { text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) { .wrap { padding: 0 32px; } }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--accent-contrast);
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 48px;
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: var(--shadow-1);
}
.btn--primary:hover { background: var(--accent-dark); }
.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: var(--text);
}
.btn--block { width: 100%; }
.btn--lg { min-height: 56px; padding: 14px 28px; font-size: 1.05rem; }

/* ==========================================================================
   PUBLICATION FAMILY (advertorial + about)
   ========================================================================== */

.pub-header {
  background: var(--navy);
  color: #fff;
  padding: 18px 0;
}
.pub-header__inner { display: flex; flex-direction: column; gap: 2px; }
.pub-brand {
  font-size: clamp(1.25rem, 1rem + 1vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.pub-tagline { font-size: 0.8rem; color: #c7d3e6; }

.pub-ribbon {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  color: #555;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.article { padding: 28px 0 8px; }
.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 8px;
}
.stars { color: var(--star); letter-spacing: 2px; font-size: 1rem; }

.article__h1 {
  font-size: clamp(1.7rem, 1.25rem + 2.2vw, 2.7rem);
  color: #111;
  margin-bottom: 0.45em;
}
.article__subhead {
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);
  color: #22406b;
  background: #eef3fb;
  border-left: 4px solid var(--navy);
  padding: 14px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1.4em;
  font-weight: 600;
}
.article__lead { font-size: 1.08rem; }

.article__body h2 {
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.7rem);
  margin-top: 1.7em;
  color: #111;
}
.article__body p { font-size: 1.03rem; color: #232323; }
.article__body p.cap { font-size: 0.85rem; color: var(--muted); }

.kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.5em;
}

.figure { margin: 1.4em 0; }
.figure img, .figure video {
  width: 100%;
  border-radius: var(--radius-md);
  background: #ddd;
}
.figure__caption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}
.media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #ddd;
}
.media-frame video, .media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--wide { aspect-ratio: 16 / 9; }
.media-frame-topgap { margin-top: 8px; }
.media-narrow { max-width: 640px; }
.media-narrow--gap { max-width: 640px; margin-top: 20px; }
.media-narrow--center { max-width: 640px; margin: 0 auto 28px; }
.section-media-wrap { margin-top: 24px; }

.callout--rates {
  background: #fbf6e8;
  border: 1px solid #ecd9a0;
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  margin: 1.6em 0;
}
.callout--rates h2 { margin-top: 0; font-size: clamp(1.2rem, 1rem + 1vw, 1.5rem); color: #6b4c00; }
.rate-worked {
  background: #fff;
  border: 1px solid #ecd9a0;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin: 0.9em 0;
}
.rate-worked strong { color: #6b4c00; }
.rate-fineprint { font-size: 0.85rem; color: var(--muted); margin-bottom: 0; }
.rate-figures {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}
@media (min-width: 480px) { .rate-figures { grid-template-columns: repeat(3, 1fr); } }
.rate-figures__item {
  background: #fff;
  border: 1px solid #ecd9a0;
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}
.rate-figures__num { display: block; font-size: 1.15rem; font-weight: 800; color: #6b4c00; }
.rate-figures__label { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin: 1.8em 0;
}
@media (min-width: 768px) { .split { grid-template-columns: 1fr 1fr; align-items: start; } }
.split__col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.split__col h2, .split__col h3 { margin-top: 0; }

.deliverables-list { list-style: none; padding: 0; margin: 1em 0; }
.deliverables-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 14px;
  margin-bottom: 10px;
  font-size: 0.98rem;
}
.deliverables-list li strong { display: block; color: #111; margin-bottom: 2px; }

.inline-cta {
  display: block;
  margin: 1.6em 0;
  padding: 18px;
  text-align: center;
  background: var(--navy);
  border-radius: var(--radius-lg);
}
.inline-cta a.btn { background: var(--accent); color: #fff; }
.inline-cta p { color: #dbe6f7; margin: 0 0 10px; font-size: 0.95rem; }

.faq { margin: 1.6em 0; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  padding: 4px 16px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 1.3rem;
  color: var(--accent-dark);
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding-bottom: 14px; margin: 0; color: #333; }

.ps-note {
  font-style: italic;
  border-top: 2px dashed var(--border);
  padding-top: 16px;
  margin-top: 2em;
  color: #333;
}

/* ---------- About page (publication family) ---------- */
.about-hero { padding: 34px 0 10px; }
.about-hero h1 { font-size: clamp(1.7rem, 1.3rem + 2vw, 2.4rem); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 1.4em 0 2em;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: repeat(3, 1fr); } }
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.about-card h2 { font-size: 1.1rem; margin-top: 0; }

/* ==========================================================================
   OFFER FAMILY (the-program + legal pages)
   ========================================================================== */

.offer-header {
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.offer-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}
.offer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
}
.offer-brand__mark {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--accent), #8f6bff);
  display: inline-block;
  flex-shrink: 0;
}
.offer-nav-cta {
  display: none;
}
@media (min-width: 640px) {
  .offer-nav-cta { display: inline-flex; }
}
.nav-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
  border-radius: var(--radius-sm);
  min-width: 44px;
  min-height: 44px;
  font-size: 1.3rem;
  cursor: pointer;
}
@media (min-width: 640px) { .nav-toggle { display: none; } }
.offer-nav-links {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 16px;
}
.offer-nav-links.is-open { display: flex; }
.offer-nav-links a {
  color: #cfd8ea;
  text-decoration: none;
  padding: 10px 4px;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}
@media (min-width: 640px) {
  .offer-nav-links { display: none !important; }
}

.offer-hero {
  background: radial-gradient(ellipse at top, #101729 0%, var(--bg) 60%);
  padding: 44px 0 40px;
  color: var(--text);
}
.offer-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) { .offer-hero__grid { grid-template-columns: 1.15fr 0.85fr; } }

.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

.offer-hero h1 {
  font-size: clamp(1.7rem, 1.25rem + 2.6vw, 2.8rem);
  color: #fff;
  margin-bottom: 0.4em;
}
.offer-hero h1 .hl { color: #7fa4ff; }
.offer-hero__sub {
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.15rem);
  color: var(--muted);
  margin-bottom: 1.4em;
  max-width: 46em;
}
.offer-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.offer-hero__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-2);
}
.offer-hero__media .media-frame { aspect-ratio: 4 / 5; border-radius: 0; }
@media (min-width: 480px) { .offer-hero__media .media-frame { aspect-ratio: 4 / 3; } }

.section { padding: 40px 0; }
.section--surface { background: var(--surface); }
.section-kicker {
  display: block;
  color: #7fa4ff;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.4rem, 1.15rem + 1.4vw, 2rem);
  color: var(--text);
  margin-bottom: 0.4em;
}
.section-sub { color: var(--muted); max-width: 60em; margin-bottom: 1.6em; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step-card p { color: var(--muted); font-size: 0.94rem; margin: 0; }

.pullquote {
  background: linear-gradient(135deg, #16204a, #0a0d13);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  color: #fff;
}
.pullquote p {
  font-size: clamp(1.15rem, 1rem + 1vw, 1.55rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
}
.pullquote cite { display: block; margin-top: 10px; color: var(--muted); font-size: 0.85rem; font-style: normal; }

.checklist { list-style: none; padding: 0; margin: 0 0 1em; }
.checklist li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.checklist li span.what { font-weight: 600; }
.checklist li span.fee { color: #7fa4ff; font-weight: 800; white-space: nowrap; }
body:not(.theme-offer) .checklist li span.fee { color: var(--accent-dark); }
.checklist-math {
  background: var(--surface-2);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.leverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) { .leverage-grid { grid-template-columns: 1fr 1fr; } }
.leverage-grid .media-frame { aspect-ratio: 4 / 3; }

.curriculum-list { list-style: none; padding: 0; margin: 0; }
.curriculum-list li {
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.curriculum-list li:last-child { border-bottom: none; }
.curriculum-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--accent);
  font-weight: 800;
}

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -16px; padding: 0 16px; }
.pricing-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  border: 1px solid var(--border);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 0.93rem;
}
.pricing-table thead th {
  background: var(--surface-2);
  font-size: 1rem;
}
.pricing-table td.price-cell, .pricing-table th.price-cell {
  font-size: 1.2rem;
  font-weight: 800;
}
.pricing-table col.highlight-col, .pricing-table th.is-highlight, .pricing-table td.is-highlight {
  background: rgba(59,111,237,0.12);
}
body:not(.theme-offer) .pricing-table th.is-highlight, body:not(.theme-offer) .pricing-table td.is-highlight {
  background: #eaf6ee;
}
.pricing-table th.is-highlight { position: relative; }
.badge-pop {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.addons-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 640px) { .addons-grid { grid-template-columns: 1fr 1fr; } }
.addon-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.addon-card__price { font-size: 1.25rem; font-weight: 800; color: #7fa4ff; }
body:not(.theme-offer) .addon-card__price { color: var(--accent-dark); }

.perks-stack { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
@media (min-width: 640px) { .perks-stack { grid-template-columns: 1fr 1fr; } }
.perks-stack li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 0.94rem;
}
.perks-stack li::before { content: "\2605"; color: var(--star); flex-shrink: 0; }

.limits-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid #c8862c;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 20px;
}
.limits-box ul { margin: 0; padding-left: 1.1em; }
.limits-box li { margin-bottom: 8px; }

.lead-section { background: var(--surface-2); }
.lead-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  max-width: 640px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.9rem; font-weight: 700; }
.form-field .req { color: var(--danger); }
.form-field input, .form-field textarea {
  font-size: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  min-height: 48px;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field .field-error {
  color: #ff8080;
  font-size: 0.82rem;
  display: none;
}
body:not(.theme-offer) .form-field .field-error { color: var(--danger); }
.form-field.has-error input, .form-field.has-error textarea { border-color: #d33; }
.form-field.has-error .field-error { display: block; }
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  font-size: 0.9rem;
}
.consent-row input { min-width: 20px; min-height: 20px; margin-top: 3px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 10px; }
.form-success {
  display: none;
  background: rgba(59,111,237,0.12);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 18px;
  font-weight: 600;
}
.form-success.is-visible { display: block; }
.lead-form.is-submitted .form-fields, .lead-form.is-submitted .btn--submit { display: none; }

/* ---------- Legal pages (offer chrome, readable content) ---------- */
.legal-main { padding: 36px 0 10px; }
.legal-main h1 { font-size: clamp(1.6rem, 1.25rem + 1.6vw, 2.2rem); margin-bottom: 0.3em; }
.legal-updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.6em; }
.legal-body h2 { font-size: 1.25rem; margin-top: 1.6em; }
.legal-body p, .legal-body li { color: var(--text); }
.legal-body ul { padding-left: 1.2em; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 1.4em 0;
}
.contact-card p { margin: 0 0 6px; }

/* ==========================================================================
   SHARED: disclaimer + footer + 404
   ========================================================================== */

.site-disclaimer {
  display: block;
  max-width: var(--maxw);
  margin: 32px auto 0;
  padding: 18px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--muted);
}
@media (min-width: 768px) { .site-disclaimer { padding: 18px 32px; } }
.site-disclaimer p { margin: 0 0 6px; }
.site-disclaimer p:last-child { margin-bottom: 0; }
.site-disclaimer a { color: inherit; font-weight: 700; }

.site-footer {
  background: #05070c;
  color: #b9c2d4;
  margin-top: 26px;
  padding: 28px 0 96px;
  font-size: 0.9rem;
}
.site-footer__company {
  white-space: pre-line;
  margin-bottom: 18px;
  line-height: 1.7;
}
.site-footer__company strong { color: #fff; }
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.site-footer__links a { color: #cfd8ea; text-decoration: none; font-size: 0.88rem; }
.site-footer__links a:hover { text-decoration: underline; }

.notfound-main { padding: 60px 0; text-align: center; }
.notfound-main h1 { font-size: clamp(2rem, 1.6rem + 2vw, 3rem); }

/* ==========================================================================
   Responsive helpers
   ========================================================================== */
@media (min-width: 1024px) {
  .offer-hero { padding: 64px 0 56px; }
  .section { padding: 64px 0; }
}
