/* ==========================================================================
   Bright Digest Desk / EDGE SOLUTIONS LTD — static site stylesheet
   Handwritten CSS, BEM naming, CSS Grid for page structure, flexbox inside
   components. Two design families toggled via body class:
     .page--pub    -> advertorial + about (publication style)
     .page--offer  -> training + legal pages (saas/offer style)
   ========================================================================== */

/* -------------------------- Reset & base -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
}
img, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0 0 1em; }
ul, ol { padding-left: 1.25em; }
a { color: var(--brand-dark); text-decoration-thickness: 1.5px; }
a:hover { color: var(--brand); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
}
button { font-family: inherit; }

:root {
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 3px rgba(20,17,15,0.10);
  --shadow-md: 0 10px 28px rgba(20,17,15,0.12);
  --shadow-lg: 0 24px 55px rgba(20,17,15,0.16);
  --transition: 180ms ease;
  --container-max: 1180px;
}

body.page--pub {
  --ink: #17201b;
  --ink-soft: #49554d;
  --bg: #ffffff;
  --bg-soft: #f3f6f1;
  --bg-tint: #e6f7ec;
  --border: #dfe6dd;
  --brand: #23a35a;
  --brand-dark: #157a3f;
  --brand-ink: #0f5c30;
  --brand-contrast: #ffffff;
  --font-head: 'Baloo 2', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --footer-bg: #142219;
  --footer-ink: #ecf3ee;
}

body.page--offer {
  --ink: #18140f;
  --ink-soft: #5a534a;
  --bg: #ffffff;
  --bg-soft: #f7f3ec;
  --bg-tint: #fdeadf;
  --border: #e9e1d3;
  --brand: #de5225;
  --brand-dark: #ac3c17;
  --brand-ink: #ac3c17;
  --brand-contrast: #ffffff;
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --footer-bg: #16130f;
  --footer-ink: #f4ede2;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; color: var(--ink); line-height: 1.15; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 18px;
}
@media (min-width: 768px) { .container { padding-inline: 32px; } }
@media (min-width: 1024px) { .container { padding-inline: 40px; } }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: var(--brand-contrast);
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.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: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn--primary {
  background: var(--brand);
  color: var(--brand-contrast);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--brand-dark); color: var(--brand-contrast); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--outline-invert {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.btn--outline-invert:hover { background: #fff; color: var(--ink); }
.btn--block { width: 100%; }
.btn--lg { min-height: 54px; padding: 14px 32px; font-size: 1.05rem; }

.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge--muted { background: var(--bg-soft); color: var(--ink-soft); border: 1px solid var(--border); }
.badge--brand { background: var(--bg-tint); color: var(--brand-ink); }

/* ============================ PUBLICATION HEADER ========================= */
.pub-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding-block: 18px 0;
}
.pub-header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  text-decoration: none;
  margin-bottom: 14px;
}
.pub-header__mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  color: var(--ink);
}
.pub-header__mark svg { flex-shrink: 0; }
.pub-header__word--accent { color: var(--brand); }
.pub-header__tagline {
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}
.pub-nav {
  border-top: 1px solid var(--border);
  padding-block: 10px;
}
.pub-nav__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pub-nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  min-height: 44px;
  font-weight: 700;
  color: var(--ink);
}
.pub-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.pub-nav__list.is-open { display: flex; }
.pub-nav__link {
  display: block;
  padding: 10px 4px;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.pub-nav__link:hover, .pub-nav__link[aria-current="page"] { color: var(--brand-dark); }
@media (min-width: 768px) {
  .pub-nav__toggle { display: none; }
  .pub-nav__row { justify-content: center; }
  .pub-nav__list { display: flex !important; flex-direction: row; justify-content: center; gap: 32px; width: auto; }
  .pub-nav__link { border-bottom: none; padding: 4px 2px; min-height: auto; }
}

/* ============================ OFFER HEADER =============================== */
.offer-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding-block: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.offer-header__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.offer-header__logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.offer-header__logo-dot { color: var(--brand); }
.offer-header__actions { display: none; align-items: center; gap: 10px; }
.offer-header__nav-cta { margin-top: 6px; }
.offer-header__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
}
.offer-header__nav {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.offer-header__nav.is-open { display: flex; }
.offer-header__link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 4px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.offer-header__link:hover, .offer-header__link[aria-current="page"] { color: var(--brand-dark); }
@media (min-width: 768px) {
  .offer-header__toggle { display: none; }
  .offer-header__row { flex-wrap: wrap; }
  .offer-header__nav { display: flex !important; flex-direction: row; gap: 26px; margin: 0; order: 2; }
  .offer-header__link { border-bottom: none; min-height: auto; padding: 4px 0; }
  .offer-header__actions { display: flex; order: 3; }
  .offer-header__nav-cta { display: none; }
}

/* ============================ ARTICLE (advertorial) ======================= */
.pub-ribbon {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding-block: 10px;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}
.article { padding-block: 28px 8px; }
.article__h1 {
  font-size: clamp(1.8rem, 5.4vw, 2.9rem);
  margin-bottom: 14px;
}
.article__dek {
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 44em;
  margin-bottom: 18px;
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.article__stars { color: #f0a202; letter-spacing: 2px; }
.disclosure-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 20px 0 28px;
}
.article__lead { max-width: 44em; }
.article__lead p { font-size: 1.05rem; }
.article__section { padding-block: 26px; }
.article__section h2 {
  font-size: clamp(1.4rem, 3.6vw, 1.9rem);
  margin-bottom: 14px;
}
.article__body { max-width: 44em; }
.article__body p { font-size: 1.02rem; }

.toc {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin: 24px 0;
  max-width: 44em;
}
.toc__title { font-weight: 700; margin-bottom: 8px; font-family: var(--font-head); }
.toc__list { margin: 0; padding-left: 1.1em; font-size: 0.95rem; }
.toc__list li { margin-bottom: 4px; }

.pullquote {
  border-left: 6px solid var(--brand);
  background: var(--bg-tint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 22px 22px;
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--brand-ink);
  margin: 24px 0;
  max-width: 44em;
}
.pullquote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

.table-wrap { overflow-x: auto; margin: 20px 0; max-width: 44em; }
.rate-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 420px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.rate-table caption { text-align: left; font-weight: 700; margin-bottom: 8px; font-family: var(--font-head); }
.rate-table th, .rate-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.rate-table thead th {
  background: var(--bg-soft);
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.rate-table tbody tr:last-child td { border-bottom: none; }
.rate-table tbody tr.rate-table__hero td { font-weight: 700; background: var(--bg-tint); }
.rate-note { font-size: 0.85rem; color: var(--ink-soft); max-width: 44em; }

.callout-band {
  background: var(--brand-ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  margin: 30px 0;
}
.callout-band__kicker {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #bdeecd;
  margin-bottom: 10px;
}
.callout-band__title { color: #fff; font-size: clamp(1.3rem, 3.4vw, 1.8rem); margin-bottom: 12px; }
.callout-band__body { color: #e4f6ea; max-width: 44em; font-size: 1.02rem; margin-bottom: 0; }

.offer-list { list-style: none; margin: 0; padding: 0; max-width: 44em; }
.offer-list__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding-block: 18px;
  border-bottom: 1px solid var(--border);
}
.offer-list__item:first-child { padding-top: 0; }
.offer-list__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--brand-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
}
.offer-list__title { margin-bottom: 6px; font-size: 1.1rem; }
.offer-list__text { margin-bottom: 0; color: var(--ink-soft); }
.offer-list__rate { display: inline-block; margin-top: 8px; font-weight: 700; color: var(--brand-ink); }

.steps { display: grid; gap: 16px; max-width: 44em; }
.steps__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}
.steps__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  color: var(--brand-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.steps__title { margin-bottom: 4px; font-size: 1.05rem; }
.steps__text { margin-bottom: 0; color: var(--ink-soft); font-size: 0.98rem; }

.guarantee-box {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  max-width: 44em;
  background: var(--bg-soft);
}
.guarantee-box h3 { margin-bottom: 10px; font-size: 1.2rem; }

.verdict-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  max-width: 44em;
}
.verdict-card__score {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--brand-ink);
}
.verdict-card__stars { color: #f0a202; letter-spacing: 3px; font-size: 1.1rem; }
.verdict-card__label { font-size: 0.85rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; }
.verdict-card__text { margin-bottom: 0; }

.quote-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  max-width: 44em;
  position: relative;
}
.quote-card__mark { font-family: var(--font-head); font-size: 2.4rem; color: var(--brand); line-height: 0.5; display: block; margin-bottom: 8px; }
.quote-card__text { font-style: italic; margin-bottom: 10px; }
.quote-card__by { font-size: 0.85rem; color: var(--ink-soft); }

@media (min-width: 768px) {
  .verdict-card { grid-template-columns: 140px 1fr; align-items: center; }
}

.media-figure { margin: 26px 0; max-width: 44em; }
.media-figure img { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); width: 100%; }
.media-figure__caption { font-size: 0.85rem; color: var(--ink-soft); margin-top: 8px; }
.media-figure--wide { max-width: none; }

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0c0c0c;
  box-shadow: var(--shadow-sm);
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-frame--tall { aspect-ratio: 4 / 5; }

.cta-band {
  background: var(--bg-tint);
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  margin: 30px 0;
}
.cta-band__title { font-size: clamp(1.3rem, 3.4vw, 1.7rem); margin-bottom: 10px; }
.cta-band__text { max-width: 34em; margin-inline: auto; color: var(--ink-soft); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 18px; }

/* ============================== ACCORDION (FAQ) =========================== */
.accordion { max-width: 44em; border-top: 1px solid var(--border); }
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 4px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  cursor: pointer;
}
.accordion__icon { flex-shrink: 0; transition: transform var(--transition); font-size: 1.3rem; color: var(--brand); }
.accordion__trigger[aria-expanded="true"] .accordion__icon { transform: rotate(45deg); }
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.accordion__panel[hidden] { display: block; }
.accordion__panel p { padding-bottom: 18px; color: var(--ink-soft); margin: 0; }

/* ================================ OFFER HERO =============================== */
.hero-offer {
  padding-block: 44px 36px;
  text-align: center;
}
.hero-offer__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.hero-offer__title {
  font-size: clamp(1.9rem, 6vw, 3.4rem);
  max-width: 18em;
  margin-inline: auto;
  margin-bottom: 18px;
}
.hero-offer__title-accent { color: var(--brand); }
.hero-offer__subhead {
  max-width: 38em;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  margin-bottom: 24px;
}
.hero-offer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}
.hero-offer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  list-style: none;
  padding: 0;
  margin: 0;
}

.video-showcase { padding-bottom: 8px; }
.video-showcase__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.section { padding-block: 44px; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--footer-bg); color: var(--footer-ink); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section__head { max-width: 40em; margin-bottom: 28px; }
.section__kicker {
  display: inline-block;
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.section__title { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 10px; }
.section__lead { color: var(--ink-soft); margin-bottom: 0; }
.section--dark .section__lead { color: #d8d1c7; }

/* -------------------------------- Split ----------------------------------- */
.split { display: grid; gap: 26px; }
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .split--reverse { direction: rtl; }
  .split--reverse > * { direction: ltr; }
}

.rate-aside {
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--bg);
  height: 100%;
}
.rate-aside__label {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.rate-aside__row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-block: 10px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.rate-aside__row:last-of-type { border-bottom: none; }
.rate-aside__deliverable { color: var(--ink-soft); }
.rate-aside__price { font-weight: 800; font-family: var(--font-head); white-space: nowrap; }
.rate-aside__math {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.rate-aside__foot { font-size: 0.78rem; color: var(--ink-soft); margin-top: 12px; margin-bottom: 0; }

.leverage-card {
  background: var(--brand-ink);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leverage-card__label {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #ffd8c4;
  margin-bottom: 12px;
}
.leverage-card__title { color: #fff; font-size: clamp(1.2rem, 3vw, 1.5rem); margin-bottom: 12px; }
.leverage-card__text { color: #fbe8dd; margin-bottom: 0; }

/* ------------------------------ Steps strip -------------------------------- */
.steps-strip {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 768px) { .steps-strip { grid-template-columns: repeat(4, 1fr); } }
.steps-strip__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  background: var(--bg);
  counter-increment: step;
  position: relative;
}
.steps-strip__item::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--brand-ink);
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 12px;
}
.steps-strip__title { font-size: 1.02rem; margin-bottom: 6px; }
.steps-strip__text { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 0; }

/* ---------------------------- Deliverables grid ---------------------------- */
.deliverables-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .deliverables-grid { grid-template-columns: repeat(3, 1fr); } }
.deliverable-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
.deliverable-card__title { font-size: 1.08rem; margin-bottom: 8px; }
.deliverable-card__price { display: inline-block; font-family: var(--font-head); font-weight: 800; color: var(--brand-ink); margin-bottom: 10px; }
.deliverable-card__text { color: var(--ink-soft); margin-bottom: 0; font-size: 0.94rem; }

/* -------------------------------- Pricing ---------------------------------- */
.pricing__spotlight { margin-bottom: 22px; }
.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
.price-card--highlight {
  border-color: var(--brand);
  border-width: 2px;
  background: var(--bg-tint);
  box-shadow: var(--shadow-md);
  position: relative;
}
.price-card__flag {
  position: absolute;
  top: -14px;
  left: 26px;
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-card__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.price-card__name { font-size: 1.3rem; margin-bottom: 0; }
.price-card__price { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--brand-ink); }
.price-card__hours { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 16px; }
.price-card__list { list-style: none; padding: 0; margin: 0 0 20px; }
.price-card__list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.price-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-dark);
  font-weight: 800;
}
.pricing__other { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .pricing__other { grid-template-columns: 1fr 1fr; } }

.addons { display: grid; gap: 12px; margin-top: 8px; }
.addon-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  background: var(--bg);
}
.addon-item__name { font-weight: 700; }
.addon-item__price { font-family: var(--font-head); font-weight: 800; color: var(--brand-ink); }
.addon-item__text { flex-basis: 100%; margin: 4px 0 0; color: var(--ink-soft); font-size: 0.9rem; }

.perks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
@media (min-width: 768px) { .perks { grid-template-columns: 1fr 1fr; } }
.perks__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  background: var(--bg);
}
.perks__icon { color: var(--brand-dark); font-weight: 800; flex-shrink: 0; }

/* ------------------------------- Facts band --------------------------------- */
.facts-band { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); text-align: center; }
@media (min-width: 768px) { .facts-band { grid-template-columns: repeat(4, 1fr); } }
.fact__num { font-family: var(--font-head); font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; color: var(--brand); display: block; }
.fact__label { font-size: 0.85rem; color: var(--ink-soft); }
.section--dark .fact__label { color: #cfc7bb; }

/* -------------------------------- Limits box --------------------------------- */
.limits-box {
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--bg-soft);
}
.limits-box__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.limits-box__item { padding-left: 26px; position: relative; color: var(--ink-soft); }
.limits-box__item::before { content: "—"; position: absolute; left: 0; color: var(--brand-dark); font-weight: 800; }

/* --------------------------------- Lead form ---------------------------------- */
.lead-form { display: grid; gap: 16px; max-width: 640px; }
.lead-form__grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .lead-form__grid--2col { grid-template-columns: 1fr 1fr; } }
.lead-form__field { display: flex; flex-direction: column; gap: 6px; }
.lead-form__label { font-weight: 700; font-size: 0.92rem; }
.lead-form__input, .lead-form__textarea {
  min-height: 48px;
  font-size: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: inherit;
  background: var(--bg);
  color: var(--ink);
}
.lead-form__textarea { min-height: 110px; resize: vertical; }
.lead-form__input:focus, .lead-form__textarea:focus { border-color: var(--brand); }
.lead-form__error { color: #b3261e; font-size: 0.82rem; min-height: 1.1em; }
.lead-form__consent { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }
.lead-form__consent input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.lead-form__note { font-size: 0.8rem; color: var(--ink-soft); }
.lead-form__success {
  border: 2px solid var(--brand);
  background: var(--bg-tint);
  border-radius: var(--radius-md);
  padding: 20px;
  font-weight: 600;
}
.lead-form__success[hidden] { display: none; }
.lead-section { max-width: 780px; }

/* --------------------------------- Legal pages --------------------------------- */
.legal-article { padding-block: 40px; max-width: 46em; }
.legal-article h1 { font-size: clamp(1.7rem, 5vw, 2.4rem); margin-bottom: 8px; }
.legal-article__updated { color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 30px; }
.legal-article__section { margin-bottom: 30px; }
.legal-article__section h2 { font-size: 1.25rem; margin-bottom: 10px; }
.legal-article__section p, .legal-article__section li { color: var(--ink-soft); }
.legal-article address { font-style: normal; color: var(--ink-soft); }

/* --------------------------------- Disclaimer + Footer --------------------------------- */
.site-disclaimer {
  display: block;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 22px 18px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .site-disclaimer { padding: 26px 32px; } }
.site-disclaimer a { color: var(--brand-dark); font-weight: 700; }

.site-footer { background: var(--footer-bg); color: var(--footer-ink); }
.site-footer__inner { max-width: var(--container-max); margin: 0 auto; padding: 28px 18px 34px; }
@media (min-width: 768px) {
  .site-footer__inner { padding: 34px 32px 40px; display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
}
.site-footer__company { font-size: 0.9rem; line-height: 1.7; white-space: pre-line; }
.site-footer__links {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) { .site-footer__links { margin-top: 0; } }
.site-footer__links a {
  color: var(--footer-ink);
  text-decoration: none;
  font-size: 0.92rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.site-footer__links a:hover { text-decoration: underline; }

/* --------------------------------- Sticky mobile CTA (offer pages) --------------------------------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.08);
  z-index: 90;
  display: flex;
}
.sticky-cta .btn { flex: 1; }
@media (min-width: 1024px) { .sticky-cta { display: none; } }
.has-sticky-cta { padding-bottom: 78px; }
@media (min-width: 1024px) { .has-sticky-cta { padding-bottom: 0; } }
