/* =========================================================
   Shared base styles
   ========================================================= */
:root {
  --pub-ink: #1a1a1a;
  --pub-bg: #ffffff;
  --pub-accent: #1a7a4c;
  --pub-accent-light: #e6f4ec;
  --pub-border: #e3e0d8;
  --pub-serif: 'Source Serif 4', Georgia, serif;
  --pub-sans: 'Inter', system-ui, sans-serif;

  --offer-bg: #061a2b;
  --offer-bg-2: #0a2a44;
  --offer-blue: #1f8fe0;
  --offer-blue-light: #eaf5fe;
  --offer-ink: #0b1b2b;
  --offer-sans: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

.container-wide {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

a { text-decoration-color: inherit; }

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

:focus-visible {
  outline: 3px solid #ffb703;
  outline-offset: 2px;
}

/* =========================================================
   PUBLICATION (advertorial / about) design family
   ========================================================= */
.pub-page {
  background: var(--pub-bg);
  color: var(--pub-ink);
  font-family: var(--pub-sans);
  line-height: 1.6;
}

.pub-header {
  border-bottom: 1px solid var(--pub-border);
  padding: 16px 0;
}

.pub-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pub-logo {
  font-family: var(--pub-serif);
  font-weight: 700;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  color: var(--pub-ink);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.pub-header__tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #767268;
}

.pub-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pub-accent-light);
  color: var(--pub-accent);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 18px;
}

.pub-article {
  padding-top: 8px;
  padding-bottom: 8px;
}

.pub-h1 {
  font-family: var(--pub-serif);
  font-weight: 700;
  font-size: clamp(1.7rem, 1.35rem + 2vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin: 18px 0 10px;
  color: var(--pub-ink);
}

.pub-subhead {
  font-size: clamp(1rem, 0.94rem + 0.3vw, 1.15rem);
  color: #4a463d;
  margin: 0 0 22px;
  max-width: 62ch;
}

.pub-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #8a8578;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--pub-border);
  padding-bottom: 18px;
}

.pub-media {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 6px;
  background: #eee;
  margin: 22px 0;
}
.pub-media img, .pub-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.pub-caption {
  font-size: 0.82rem;
  color: #8a8578;
  margin-top: -12px;
  margin-bottom: 26px;
}

.pub-body p {
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.08rem);
  margin: 0 0 20px;
  color: #29271f;
}

.pub-body h2 {
  font-family: var(--pub-serif);
  font-size: clamp(1.35rem, 1.15rem + 1vw, 1.8rem);
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--pub-ink);
  line-height: 1.25;
}

.pub-body h3 {
  font-family: var(--pub-sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 28px 0 12px;
}

.pub-list {
  margin: 0 0 22px;
  padding-left: 0;
  list-style: none;
  counter-reset: pub-counter;
}
.pub-list > li {
  counter-increment: pub-counter;
  position: relative;
  padding: 16px 16px 16px 54px;
  margin-bottom: 12px;
  background: #faf9f5;
  border: 1px solid var(--pub-border);
  border-radius: 8px;
}
.pub-list > li::before {
  content: counter(pub-counter);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pub-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pub-sans);
}
.pub-list h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}
.pub-list p {
  margin: 0;
  font-size: 0.98rem;
  color: #45412f;
}
.pub-list li.is-highlight {
  background: var(--pub-accent-light);
  border-color: var(--pub-accent);
}

.pub-aside {
  border: 1.5px solid var(--pub-accent);
  background: #f4faf6;
  border-radius: 10px;
  padding: 20px;
  margin: 26px 0;
}
.pub-aside__label {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pub-accent);
  background: #fff;
  border: 1px solid var(--pub-accent);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.pub-aside__rate {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed #c7ddca;
  font-size: 0.95rem;
}
.pub-aside__rate:last-of-type { border-bottom: none; }
.pub-aside__rate strong {
  font-size: 1.05rem;
  color: var(--pub-ink);
  white-space: nowrap;
}
.pub-aside__note {
  font-size: 0.78rem;
  color: #6b6a5f;
  margin: 12px 0 0;
}

.pub-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin: 26px 0;
}
.pub-split__col {
  background: #faf9f5;
  border: 1px solid var(--pub-border);
  border-radius: 10px;
  padding: 20px;
}
.pub-split__col.is-accent {
  background: #12261d;
  color: #f2f6f2;
  border-color: #12261d;
}
.pub-split__kicker {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: var(--pub-accent);
  margin-bottom: 10px;
}
.pub-split__col.is-accent .pub-split__kicker { color: #8fd6ac; }
.pub-split__col h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.pub-cta-block {
  background: var(--pub-accent);
  color: #fff;
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  margin: 32px 0;
}
.pub-cta-block h3 {
  font-family: var(--pub-serif);
  font-size: clamp(1.2rem, 1.1rem + 0.6vw, 1.5rem);
  margin: 0 0 10px;
  color: #fff;
}
.pub-cta-block p {
  margin: 0 0 18px;
  color: #e2f1e7;
  font-size: 0.98rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-pub-primary {
  background: #fff;
  color: var(--pub-accent);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-pub-primary:hover { background: #f2f2f2; }

.btn-pub-outline {
  background: var(--pub-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,122,76,0.25);
}
.btn-pub-outline:hover { background: #156040; }

.pub-summary {
  background: #12261d;
  color: #f2f6f2;
  border-radius: 12px;
  padding: 26px 22px;
  margin: 32px 0;
}
.pub-summary h2 {
  color: #fff;
  margin-top: 0;
}
.pub-summary ul {
  margin: 0;
  padding-left: 20px;
}
.pub-summary li { margin-bottom: 8px; color: #d9e7dd; }

.pub-faq {
  margin: 26px 0;
}
.pub-faq__item {
  border-bottom: 1px solid var(--pub-border);
  padding: 16px 0;
}
.pub-faq__item h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}
.pub-faq__item p {
  margin: 0;
  color: #45412f;
  font-size: 0.96rem;
}

.pub-footer-spacer { height: 8px; }

@media (min-width: 480px) {
  .pub-list > li { padding-left: 60px; }
}

@media (min-width: 768px) {
  .pub-split { grid-template-columns: 1fr 1fr; }
  .pub-media { aspect-ratio: 16/8; }
}

/* =========================================================
   OFFER (SaaS-style) design family
   ========================================================= */
.offer-page {
  background: #f4f8fb;
  color: var(--offer-ink);
  font-family: var(--offer-sans);
  line-height: 1.6;
}

.offer-nav {
  background: #fff;
  border-bottom: 1px solid #dfe7ee;
}
.offer-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}
.offer-logo {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--offer-ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.offer-nav__cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--offer-blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.15s ease;
}
.offer-nav__cta:hover { background: #1673b8; }

.offer-hero {
  background: linear-gradient(160deg, var(--offer-bg) 0%, var(--offer-bg-2) 55%, var(--offer-blue) 130%);
  color: #fff;
  padding: 40px 0 46px;
}
.offer-hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9fd4fb;
  margin-bottom: 14px;
}
.offer-h1 {
  font-size: clamp(1.8rem, 1.4rem + 2.2vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: 16ch;
}
.offer-hero__sub {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
  color: #d6e8f7;
  max-width: 58ch;
  margin: 0 0 26px;
}
.offer-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.offer-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.offer-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  color: var(--offer-ink);
  box-shadow: 0 20px 50px rgba(6,26,43,0.35);
}
.offer-card__title {
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 14px;
  text-align: center;
}

.offer-section {
  padding: 44px 0;
}
.offer-section.is-tinted { background: #eaf3fb; }
.offer-section.is-dark {
  background: var(--offer-ink);
  color: #f2f6fa;
}

.offer-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--offer-blue);
  margin-bottom: 10px;
}
.offer-h2 {
  font-size: clamp(1.4rem, 1.15rem + 1.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  line-height: 1.18;
}
.offer-section.is-dark .offer-h2 { color: #fff; }
.offer-lede {
  font-size: 1.02rem;
  color: #405166;
  max-width: 68ch;
  margin: 0 0 28px;
}
.offer-section.is-dark .offer-lede { color: #c3cedb; }

.offer-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.offer-split__col {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #dfe7ee;
}
.offer-split__col.is-blue {
  background: var(--offer-blue-light);
  border-color: #bfe0f8;
}
.offer-split__col h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 800;
}

.rate-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}
.rate-band__item {
  padding: 18px 10px;
}
.rate-band__figure {
  font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.2rem);
  font-weight: 800;
  color: var(--offer-blue);
  line-height: 1.1;
}
.rate-band__label {
  font-size: 0.85rem;
  color: #58657a;
  margin-top: 6px;
}
.offer-section.is-dark .rate-band__label { color: #b7c3d2; }

.offer-note {
  font-size: 0.82rem;
  color: #6d7889;
  margin-top: 18px;
}
.offer-section.is-dark .offer-note { color: #9aa7b8; }

.pkg-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pkg {
  background: #fff;
  border: 1.5px solid #dfe7ee;
  border-radius: 16px;
  padding: 26px 22px;
  position: relative;
}
.pkg.is-highlight {
  border-color: var(--offer-blue);
  box-shadow: 0 18px 40px rgba(31,143,224,0.18);
  background: linear-gradient(180deg, #fff 0%, var(--offer-blue-light) 100%);
}
.pkg__badge {
  position: absolute;
  top: -14px;
  left: 22px;
  background: var(--offer-blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}
.pkg__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.pkg__name {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
}
.pkg__price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--offer-blue);
}
.pkg__hours {
  font-size: 0.85rem;
  color: #58657a;
  margin: 0 0 16px;
}
.pkg__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.pkg__list li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 0.96rem;
  border-bottom: 1px dashed #e2e8ef;
}
.pkg__list li:last-child { border-bottom: none; }
.pkg__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--offer-blue);
  font-weight: 800;
}

.addon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.addon-card {
  background: #fff;
  border: 1px solid #dfe7ee;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.addon-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.addon-card__name { font-weight: 800; font-size: 1.05rem; }
.addon-card__price { font-weight: 800; color: var(--offer-blue); font-size: 1.05rem; white-space: nowrap; }
.addon-card__desc { font-size: 0.92rem; color: #4c5a6b; margin: 0; }

.perk-stack {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.perk-stack li {
  background: #fff;
  border: 1px solid #dfe7ee;
  border-radius: 10px;
  padding: 14px 16px 14px 46px;
  position: relative;
  font-size: 0.96rem;
}
.perk-stack li::before {
  content: "★";
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--offer-blue);
}

.limits-box {
  background: #fff3e6;
  border: 1px solid #f0d3a8;
  border-radius: 12px;
  padding: 22px;
}
.limits-box h3 { margin-top: 0; }
.limits-box ul { margin: 0; padding-left: 20px; }
.limits-box li { margin-bottom: 8px; }

.offer-media {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: #dbe6f0;
}
.offer-media img, .offer-media video { width: 100%; height: 100%; object-fit: cover; }

.lead-form {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #dfe7ee;
  box-shadow: 0 14px 40px rgba(6,26,43,0.08);
}
.lead-form h3 { margin-top: 0; font-size: 1.25rem; font-weight: 800; }
.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.88rem; font-weight: 600; color: #33404f; }
.field input, .field textarea {
  font-size: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid #cfd9e3;
  font-family: inherit;
  min-height: 44px;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field textarea:focus {
  border-color: var(--offer-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(31,143,224,0.18);
}
.field-error {
  color: #c0362c;
  font-size: 0.82rem;
  min-height: 1.1em;
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.consent-row input {
  width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0;
}
.consent-row label { font-size: 0.86rem; color: #33404f; }
.btn-offer-primary {
  background: var(--offer-blue);
  color: #fff;
  width: 100%;
  min-height: 50px;
  margin-top: 6px;
}
.btn-offer-primary:hover { background: #1673b8; }
.form-success {
  display: none;
  background: #e6f7ee;
  border: 1px solid #a9e0c1;
  color: #14532d;
  border-radius: 10px;
  padding: 16px;
  margin-top: 16px;
  font-size: 0.95rem;
}
.form-success.is-visible { display: block; }

.offer-faq__item {
  border-bottom: 1px solid #dfe7ee;
  padding: 16px 0;
}
.offer-faq__item h3 { margin: 0 0 8px; font-size: 1.02rem; }
.offer-faq__item p { margin: 0; color: #4c5a6b; font-size: 0.94rem; }

/* =========================================================
   Shared: disclaimer + footer (both families)
   ========================================================= */
.site-disclaimer {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  padding: 22px 18px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #4a4636;
  background: #f6f4ec;
  border-top: 1px solid #e3e0d8;
}
.site-disclaimer a { color: inherit; font-weight: 700; }
.offer-page .site-disclaimer {
  background: #eef3f8;
  color: #33404f;
  border-top: 1px solid #dfe7ee;
}
.site-disclaimer__inner {
  max-width: 760px;
  margin: 0 auto;
}
.offer-page .site-disclaimer__inner { max-width: 1120px; }

.site-footer {
  background: #14171c;
  color: #cfd3d9;
  padding: 32px 18px 100px;
  font-size: 0.88rem;
}
.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.site-footer__company {
  white-space: pre-line;
  line-height: 1.7;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.site-footer__links a {
  color: #e6e8eb;
  text-decoration: underline;
  font-size: 0.9rem;
  padding: 4px 0;
}
.site-footer__links a:hover { color: #fff; }

@media (min-width: 640px) {
  .site-footer { padding-bottom: 40px; }
}

@media (min-width: 768px) {
  .offer-hero__grid { grid-template-columns: 1.1fr 0.9fr; }
  .offer-split { grid-template-columns: 1fr 1fr; }
  .rate-band { grid-template-columns: repeat(4, 1fr); }
  .addon-grid { grid-template-columns: 1fr 1fr; }
  .perk-stack { grid-template-columns: 1fr 1fr; }
  .curriculum-grid { grid-template-columns: 1.2fr 0.8fr; }
  .site-footer__inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .pkg__head { flex-wrap: nowrap; }
}

/* =========================================================
   Sticky mobile CTA bar (offer + advertorial)
   ========================================================= */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  padding: 10px 14px;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid var(--pub-border);
  backdrop-filter: blur(4px);
}
.sticky-cta .btn { width: 100%; }
.offer-page .sticky-cta {
  background: rgba(6,26,43,0.97);
  border-top: 1px solid #123049;
}
@media (min-width: 1024px) {
  .sticky-cta { display: none; }
}

.pub-split__col.is-rate {
  border-color: var(--pub-accent);
  background: #f4faf6;
}

/* Mobile nav toggle (offer family utility/legal pages) */
.offer-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1.5px solid #cfd9e3;
  background: #fff;
  cursor: pointer;
}
.offer-nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--offer-ink);
  position: relative;
}
.offer-nav__toggle span::before,
.offer-nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--offer-ink);
}
.offer-nav__toggle span::before { top: -6px; }
.offer-nav__toggle span::after { top: 6px; }
.offer-nav__menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding-bottom: 12px;
}
.offer-nav__menu.is-open { display: flex; }
.offer-nav__menu a {
  padding: 12px 6px;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--offer-ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #eef2f6;
}
.offer-nav__menu a:hover { color: var(--offer-blue); }

@media (min-width: 768px) {
  .offer-nav__toggle { display: none; }
  .offer-nav__menu {
    display: flex !important;
    flex-direction: row;
    width: auto;
    padding-bottom: 0;
    gap: 22px;
  }
  .offer-nav__menu a { border-bottom: none; padding: 0; min-height: auto; }
}

/* How-it-works steps strip (offer page) */
.steps-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: step-counter;
}
.step-item {
  background: #fff;
  border: 1px solid #dfe7ee;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  padding-left: 64px;
}
.step-item__num {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--offer-blue);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-item h3 { margin: 0 0 6px; font-size: 1.05rem; font-weight: 800; }
.step-item p { margin: 0; font-size: 0.94rem; color: #4c5a6b; }

/* Curriculum / deliverables grid (offer page) */
.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.curriculum-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.curriculum-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px dashed #dfe7ee;
  font-size: 0.96rem;
}
.curriculum-list li:last-child { border-bottom: none; }
.curriculum-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--offer-blue);
  font-weight: 800;
}

.offer-faq { margin-top: 6px; }

/* Legal page typography (offer family utility pages + about) */
.legal-content { padding: 8px 0 12px; }
.legal-content h1 {
  font-size: clamp(1.6rem, 1.3rem + 1.6vw, 2.3rem);
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 32px 0 12px;
}
.legal-content p {
  font-size: 0.98rem;
  color: #33404f;
  margin: 0 0 16px;
}
.legal-content ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal-content li {
  margin-bottom: 8px;
  font-size: 0.96rem;
  color: #33404f;
}
.legal-content strong { color: var(--offer-ink); }
.legal-updated {
  font-size: 0.85rem;
  color: #6d7889;
  margin-bottom: 26px;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  background: #fff;
  border: 1px solid #dfe7ee;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(6,26,43,0.25);
  padding: 20px;
  max-width: 640px;
  margin: 0 auto;
}
.cookie-banner__text {
  font-size: 0.9rem;
  color: #33404f;
  margin: 0 0 16px;
  line-height: 1.55;
}
.cookie-banner__text a { color: var(--offer-blue); font-weight: 700; }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid #cfd9e3;
  background: #fff;
  color: var(--offer-ink);
  cursor: pointer;
}
.cookie-btn--accept {
  background: var(--offer-blue);
  border-color: var(--offer-blue);
  color: #fff;
}
.cookie-btn--accept:hover { background: #1673b8; }
.cookie-btn--reject:hover { background: #f4f8fb; }
.pub-page .cookie-banner .cookie-btn--accept {
  background: var(--pub-accent);
  border-color: var(--pub-accent);
}
.pub-page .cookie-banner .cookie-btn--accept:hover { background: #156040; }
.pub-page .cookie-banner__text a { color: var(--pub-accent); }

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.badge-inline {
  display: inline-block;
  background: var(--pub-accent-light);
  color: var(--pub-accent);
  border-radius: 6px;
  padding: 2px 8px;
  font-weight: 700;
  font-size: 0.85em;
}
.offer-page .badge-inline {
  background: var(--offer-blue-light);
  color: var(--offer-blue);
}
