/* =========================================================================
   Bijklus Academie / Smart Observer Weekly — site/assets/css/style.css
   Plain handwritten CSS, no framework. System font stack only.
   Two design families share this file:
     .pub-body   -> publication family (advertorial + about)
     .offer-body -> offer family (course page + legal utility pages)
   ========================================================================= */

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #16181c;
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; font-weight: 800; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
:focus-visible {
  outline: 3px solid #2965c9;
  outline-offset: 2px;
}
.skip-link {
  position: absolute; left: -999px; top: 0;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-link:focus {
  left: 8px; top: 8px; background: #fff; color: #111; padding: 8px 12px;
  border-radius: 6px; z-index: 999; box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

/* ---------- Design-family variables ---------- */
body.pub-body {
  --bg: #ffffff;
  --text: #16181c;
  --muted-text: #4b5158;
  --accent: #155e56;
  --accent-dark: #0d3f3a;
  --muted-bg: #eef6f4;
  --border: #e3e3e3;
  --card-bg: #fafafa;
}
body.offer-body {
  --bg: #ffffff;
  --text: #1b1d17;
  --muted-text: #4c5245;
  --accent: #558c2e;
  --accent-dark: #3c6820;
  --muted-bg: #f3f8ee;
  --border: #d9e4cd;
  --card-bg: #fbfdf8;
  --dark: #1c2318;
}

/* ---------- Layout wrap ---------- */
.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.wrap--narrow { max-width: 760px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
  min-height: 48px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  box-shadow: 0 3px 0 rgba(0,0,0,.15);
  text-align: center;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 0 rgba(0,0,0,.18); }
.btn:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,.15); }
.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent-dark); }
.btn--primary:hover { background: var(--accent-dark); }
.btn--dark { background: #1a1a1a; color: #fff; border-color: #000; }
.btn--dark:hover { background: #000; }
.btn--ghost { background: transparent; color: var(--accent); border-color: var(--accent); box-shadow: none; }
.btn--ghost:hover { background: var(--muted-bg); }
.btn--block { width: 100%; }

.badge {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: .35em .75em;
  border-radius: 4px;
  background: #eee;
  color: #444;
}

/* =========================================================================
   PUBLICATION FAMILY — advertorial + about
   ========================================================================= */
.pub-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.pub-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}
.pub-logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text);
}
.pub-logo span { color: var(--accent); }
.pub-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}
.pub-nav {
  display: none;
  width: 100%;
}
.pub-nav.is-open { display: block; }
.pub-nav__list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pub-nav__list a {
  display: block;
  padding: 10px 4px;
  font-weight: 600;
  min-height: 44px;
  border-bottom: 1px solid var(--border);
}
.pub-nav__list a:hover { color: var(--accent); }

.pub-topbar {
  background: var(--muted-bg);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.pub-topbar__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.pub-topbar p { margin: 0; font-size: .92rem; font-weight: 600; }
.pub-topbar .btn { min-height: 40px; padding: 8px 18px; font-size: .88rem; }

.pub-ribbon {
  background: #f2f2f2;
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 8px 0;
}
.pub-ribbon span {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #666;
}

.pub-breadcrumb {
  font-size: .85rem;
  color: var(--muted-text);
  padding: 14px 0 0;
}
.pub-breadcrumb a { color: var(--muted-text); }
.pub-breadcrumb a:hover { color: var(--accent); }

.pub-hero { padding: 18px 0 8px; }
.pub-hero__meta { font-size: .85rem; color: var(--muted-text); margin-bottom: 10px; }
.pub-hero h1 {
  font-size: clamp(1.7rem, 5.5vw, 2.7rem);
  letter-spacing: -.01em;
  color: var(--text);
}
.pub-hero__subhead {
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  color: var(--muted-text);
  font-weight: 500;
  max-width: 46em;
}
.pub-hero__subhead strong { color: var(--text); }

.pub-select-wrap { padding: 6px 0 22px; }
.pub-select {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--muted-bg);
  color: var(--text);
  font-weight: 600;
}

.pub-figure { margin: 0 0 28px; }
.pub-figure img, .pub-figure video {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.pub-figure figcaption {
  font-size: .85rem;
  color: var(--muted-text);
  margin-top: 8px;
}
.pub-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}
.pub-video-frame video { width: 100%; height: 100%; object-fit: cover; }

.pub-article { padding-bottom: 8px; }
.pub-article h2 {
  font-size: clamp(1.35rem, 3.6vw, 1.9rem);
  margin-top: 2em;
  color: var(--text);
}
.pub-article p, .pub-article li { font-size: 1.05rem; color: var(--text); }
.pub-article > p:first-of-type { font-size: 1.15rem; }

.pub-kicker {
  display: block;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
  margin: 2.2em 0 .4em;
}

.pub-list-check { list-style: none; padding-left: 0; margin: 1.2em 0; }
.pub-list-check li {
  display: flex;
  align-items: flex-start;
  gap: .6em;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.02rem;
}
.pub-list-check li:before {
  content: "✔";
  color: var(--accent);
  font-weight: 800;
  flex: none;
  margin-top: .1em;
}

.pub-table-wrap {
  overflow-x: auto;
  margin: 1.4em 0;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.pub-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.pub-table caption {
  text-align: left;
  font-weight: 700;
  padding: 12px 14px 0;
  font-size: .95rem;
}
.pub-table th, .pub-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .96rem;
}
.pub-table thead th {
  background: var(--muted-bg);
  font-weight: 700;
}
.pub-table tbody tr:last-child td { border-bottom: none; }
.pub-table .fig { font-weight: 800; color: var(--accent-dark); white-space: nowrap; }
.pub-table-note { font-size: .82rem; color: var(--muted-text); margin-top: -.6em; }

.pub-quote {
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  background: var(--card-bg);
  border-radius: 8px;
  padding: 20px 22px;
  margin: 1.6em 0;
}
.pub-quote p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: .4em;
  color: var(--text);
}
.pub-quote cite {
  font-size: .85rem;
  color: var(--muted-text);
  font-style: normal;
}

.pub-cardgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 1.4em 0;
}
.pub-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card-bg);
  padding: 18px 18px;
}
.pub-card h3 { font-size: 1.05rem; margin-bottom: .3em; color: var(--text); }
.pub-card p { font-size: .95rem; color: var(--muted-text); margin-bottom: 0; }

.pub-cta-band {
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  padding: 28px 22px;
  margin: 2em 0;
  text-align: center;
}
.pub-cta-band h2 { color: #fff; font-size: clamp(1.3rem, 4vw, 1.7rem); margin-bottom: .4em; }
.pub-cta-band p { color: #eaf3f0; margin-bottom: 1.1em; }
.pub-cta-band .btn--primary { background: #fff; color: var(--accent-dark); border-color: #fff; }
.pub-cta-band .btn--primary:hover { background: #eef6f4; }

.pub-divider { border: none; border-top: 1px solid var(--border); margin: 2em 0; }

/* =========================================================================
   OFFER FAMILY — course page + legal utility pages
   ========================================================================= */
.offer-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 22px 0 16px;
  text-align: center;
}
.offer-logo {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.01em;
}
.offer-logo span { color: var(--accent); }
.offer-tagline {
  margin: 4px 0 14px;
  font-size: .85rem;
  color: var(--muted-text);
  font-weight: 600;
  letter-spacing: .02em;
}
.offer-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  margin: 0 auto;
}
.offer-nav { display: none; }
.offer-nav.is-open { display: block; }
.offer-nav__list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.offer-nav__list a {
  display: block;
  padding: 10px 4px;
  font-weight: 700;
  min-height: 44px;
  text-align: center;
}
.offer-nav__list a:hover { color: var(--accent); }

.offer-hero {
  padding: 30px 0 10px;
  text-align: center;
}
.offer-hero__kicker {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: .6em;
}
.offer-hero h1 {
  font-size: clamp(1.7rem, 5.8vw, 2.9rem);
  color: var(--dark);
  max-width: 18ch;
  margin: 0 auto .5em;
}
.offer-hero__divider {
  width: 64px; height: 4px;
  background: var(--accent);
  margin: 14px auto 18px;
  border-radius: 2px;
  border: none;
}
.offer-hero__subhead {
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  color: var(--muted-text);
  max-width: 44em;
  margin: 0 auto 20px;
}
.offer-hero__media {
  margin: 18px auto 0;
  max-width: 640px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.offer-hero__media img, .offer-hero__media video { width: 100%; }

.offer-section { padding: 44px 0; }
.offer-section--muted { background: var(--muted-bg); }
.offer-section--dark { background: var(--dark); color: #fff; }
.offer-section__kicker {
  display: block;
  text-align: center;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: .5em;
}
.offer-section--dark .offer-section__kicker { color: #a9d888; }
.offer-section__title {
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 2rem);
  max-width: 30ch;
  margin: 0 auto .5em;
}
.offer-section--dark .offer-section__title { color: #fff; }
.offer-section__lead {
  text-align: center;
  max-width: 42em;
  margin: 0 auto 28px;
  color: var(--muted-text);
  font-size: 1.05rem;
}
.offer-section--dark .offer-section__lead { color: #d9e6cc; }
.offer-section p, .offer-section li { font-size: 1rem; }

.offer-media {
  margin: 26px auto 0;
  max-width: 720px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.offer-media img, .offer-media video { width: 100%; }
.offer-media--frame { aspect-ratio: 16 / 10; }
.offer-media--frame video, .offer-media--frame img { width: 100%; height: 100%; object-fit: cover; }
.offer-media figcaption {
  font-size: .85rem;
  color: var(--muted-text);
  text-align: center;
  margin-top: 8px;
}

.offer-cardgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
.offer-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.offer-card h3 { font-size: 1.1rem; margin-bottom: .4em; }
.offer-card p { color: var(--muted-text); margin-bottom: 0; font-size: .95rem; }
.offer-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: .6em;
}

.offer-quote {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  padding: 22px;
  max-width: 640px;
  margin: 28px auto 0;
}
.offer-quote p { font-style: italic; font-size: 1.05rem; margin-bottom: .5em; }
.offer-quote cite { font-size: .85rem; color: var(--muted-text); font-style: normal; }

.offer-statband {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 26px auto 0;
  max-width: 900px;
}
.offer-stat {
  text-align: center;
  padding: 18px 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
}
.offer-stat__num {
  display: block;
  font-size: clamp(1.5rem, 5vw, 2.1rem);
  font-weight: 800;
  color: var(--accent-dark);
  letter-spacing: -.01em;
}
.offer-stat__label {
  display: block;
  font-size: .85rem;
  color: var(--muted-text);
  margin-top: 4px;
}
.offer-statband-note {
  text-align: center;
  font-size: .82rem;
  color: var(--muted-text);
  max-width: 640px;
  margin: 16px auto 0;
}
.offer-arithmetic {
  max-width: 640px;
  margin: 20px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  text-align: left;
}
.offer-arithmetic p { margin-bottom: .6em; font-size: .98rem; }
.offer-arithmetic p:last-child { margin-bottom: 0; }

.offer-pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
  align-items: stretch;
}
.offer-price-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.offer-price-card--highlight {
  border-color: var(--accent);
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
  transform: scale(1);
}
.offer-price-card__flag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.offer-price-card__name { font-size: 1.2rem; margin-bottom: .1em; }
.offer-price-card__hours { font-size: .85rem; color: var(--muted-text); margin-bottom: .8em; }
.offer-price-card__price {
  font-size: clamp(1.8rem, 5vw, 2.3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .8em;
}
.offer-price-card__list { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.offer-price-card__list li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: .95rem;
  border-bottom: 1px solid var(--border);
}
.offer-price-card__list li:last-child { border-bottom: none; }
.offer-price-card__list li:before {
  content: "✔";
  position: absolute; left: 0; top: 8px;
  color: var(--accent);
  font-weight: 800;
}

.offer-addon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
.offer-addon-card {
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.offer-addon-card__name { font-weight: 700; font-size: 1.02rem; margin-bottom: .3em; }
.offer-addon-card__desc { font-size: .9rem; color: var(--muted-text); margin-bottom: 0; }
.offer-addon-card__price {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent-dark);
  white-space: nowrap;
}

.offer-perks__list {
  list-style: none;
  padding: 0;
  margin: 26px auto 0;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer-perks__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: .98rem;
}
.offer-perks__item .ico {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
}

.offer-limits__list {
  list-style: none;
  padding: 0;
  margin: 24px auto 0;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offer-limits__list li {
  border-left: 4px solid var(--accent);
  padding: 4px 0 4px 16px;
  font-size: .98rem;
}
.offer-limits__list li strong { display: block; color: var(--dark); margin-bottom: .15em; }

.offer-cta__box {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px;
}

/* ---------- Forms (shared) ---------- */
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  color: #111;
  font-family: inherit;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--accent);
}
.form-field .field-error {
  display: none;
  color: #b02a2a;
  font-size: .82rem;
  margin-top: 4px;
}
.form-field.has-error input, .form-field.has-error textarea { border-color: #b02a2a; }
.form-field.has-error .field-error { display: block; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0 16px; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  font-size: .92rem;
}
.form-consent input {
  width: 22px; height: 22px;
  flex: none;
  margin-top: 2px;
}
.form-note { font-size: .82rem; color: var(--muted-text); margin-top: 10px; }
.form-success {
  display: none;
  background: var(--muted-bg);
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 18px 20px;
  font-weight: 600;
  color: var(--accent-dark);
}
.form-success.is-visible { display: block; }
.lead-form { display: block; }
.lead-form.is-hidden { display: none; }

/* ---------- Cookie consent banner ---------- */
.consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #1a1a1a;
  color: #f2f2f2;
  padding: 16px;
  z-index: 500;
  box-shadow: 0 -4px 16px rgba(0,0,0,.25);
  display: none;
}
.consent-banner.is-visible { display: block; }
.consent-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.consent-banner p { margin: 0; font-size: .9rem; }
.consent-banner a { text-decoration: underline; }
.consent-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-banner__actions .btn { min-height: 44px; padding: 10px 18px; font-size: .9rem; }
body.has-consent-banner { padding-bottom: 190px; }
@media (min-width: 480px) {
  body.has-consent-banner { padding-bottom: 90px; }
}

/* ---------- Disclaimer + footer (shared classes, themed by parent) ---------- */
.site-disclaimer {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 16px;
  font-size: .88rem;
  color: #555;
  border-top: 1px solid #e3e3e3;
}
.site-disclaimer a { text-decoration: underline; font-weight: 600; }
.site-disclaimer p { margin: 0 0 .6em; }
.site-disclaimer p:last-child { margin-bottom: 0; }

.site-footer { background: #1a1a1a; color: #ddd; }
body.pub-body .site-footer { background: #14181a; color: #cfd6d4; }
body.offer-body .site-footer { background: var(--dark); color: #e4ecdd; }

.site-footer__inner { padding: 32px 0 20px; }
.site-footer__company {
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 24px;
  white-space: pre-line;
}
.site-footer__company strong { display: block; font-size: 1rem; color: #fff; margin-bottom: 4px; }
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-footer__links a {
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
  font-size: .92rem;
  color: #cfd6d4;
}
body.offer-body .site-footer__links a { color: #e4ecdd; }
.site-footer__links a:hover { color: #fff; text-decoration: underline; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 14px 0;
  font-size: .8rem;
  color: #9aa19f;
  text-align: center;
}

/* ---------- Legal / about content ---------- */
.legal-main { padding: 30px 0 10px; }
.legal-main h1 {
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  margin-bottom: .3em;
}
.legal-main .updated { font-size: .85rem; color: var(--muted-text); margin-bottom: 1.6em; }
.legal-content h2 { font-size: clamp(1.15rem, 3vw, 1.4rem); margin-top: 1.6em; }
.legal-content p, .legal-content li { font-size: 1rem; color: var(--text); }
.legal-content ul { padding-left: 1.4em; }

.about-main { padding: 30px 0 10px; }
.about-main h1 { font-size: clamp(1.7rem, 5.5vw, 2.5rem); }
.about-lead { font-size: 1.1rem; color: var(--muted-text); max-width: 42em; }

.not-found-main {
  padding: 60px 0;
  text-align: center;
}
.not-found-main h1 { font-size: clamp(2rem, 8vw, 3.5rem); }

/* =========================================================================
   RESPONSIVE — 480 / 768 / 1024
   ========================================================================= */
@media (min-width: 480px) {
  .offer-statband { grid-template-columns: repeat(2, 1fr); }
  .pub-topbar__inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .consent-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .consent-banner p { max-width: 60ch; }
}

@media (min-width: 768px) {
  .pub-nav__toggle, .offer-nav__toggle { display: none; }
  .pub-nav, .offer-nav { display: block; width: auto; }
  .pub-nav__list {
    flex-direction: row;
    gap: 22px;
    margin: 0;
  }
  .pub-nav__list a { border-bottom: none; padding: 8px 2px; }
  .pub-header__inner { padding: 18px 0; }

  .offer-header__inner { display: flex; flex-direction: column; align-items: center; }
  .offer-nav__list { flex-direction: row; gap: 26px; margin-top: 14px; }

  .pub-cardgrid { grid-template-columns: repeat(3, 1fr); }
  .offer-cardgrid { grid-template-columns: repeat(2, 1fr); }
  .offer-addon-grid { grid-template-columns: repeat(3, 1fr); }
  .offer-statband { grid-template-columns: repeat(4, 1fr); }
  .offer-pricing__grid { grid-template-columns: repeat(3, 1fr); }
  .offer-price-card--highlight { transform: scale(1.04); }
  .form-row { grid-template-columns: 1fr 1fr; }

  .pub-hero__meta { font-size: .9rem; }
  .site-footer__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: start; }
  .site-footer__links { border-top: none; padding-top: 6px; flex-direction: row; flex-wrap: wrap; gap: 4px 22px; justify-content: flex-end; }
}

@media (min-width: 1024px) {
  .offer-cardgrid { grid-template-columns: repeat(3, 1fr); }
  .pub-article { max-width: 760px; margin: 0 auto; }
  .pub-hero, .pub-select-wrap, .pub-breadcrumb { max-width: 760px; margin-left: auto; margin-right: auto; }
  .offer-hero h1 { max-width: 22ch; }
}
