/* ═══════════════════════════════════════════════════════════════════════
   Superlative Studios — styles.css

   Colour system is contrast-audited. Every text pair on this page meets
   WCAG 2.1 AAA (7:1); every interactive boundary meets 1.4.11 (3:1).
   Measured ratios are noted beside each token — if you change a value,
   re-check it before shipping.
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* ── Surfaces ─────────────────────────────────────────────────────── */
  --bg: #FAF9F6;
  --bg-tint: #F4F2EC;
  --surface: #FFFFFF;
  --ink: #1B2330;
  --ink-dark: #141B26;

  /* ── Brand ────────────────────────────────────────────────────────── */
  --accent: #1E44A8;          /* 8.15:1 on cream · 8.58:1 white-on-accent */
  --accent-deep: #16357A;     /* hover/pressed · 11.51:1 white-on-accent */
  --accent-tint: #EEF2FC;
  --accent-line: #93AADE;

  /* ── Text ─────────────────────────────────────────────────────────── */
  --muted: #4A5261;           /* 7.47 cream · 7.86 white · 7.02 tint */
  --on-dark: #E8EAEE;         /* 13.11 on ink */
  --on-dark-muted: #B8BEC9;   /* 8.46 on ink */
  --on-dark-note: #A8B0BE;    /* 7.23 on ink · 7.92 on ink-dark */

  /* ── Support ──────────────────────────────────────────────────────── */
  --green: #0F5C45;           /* 7.96 on white · 7.14 on green-bg */
  --green-bg: #EAF5F0;
  --err: #7E2A1D;             /* 8.11 on err-bg */
  --err-bg: #FBEBE7;
  --err-line: #E9C0B6;

  /* ── Lines ────────────────────────────────────────────────────────── */
  --border: #E0DBCF;
  --border-soft: #EFECE4;
  --input-border: #8F8879;    /* 3.52 on white · 3.34 on cream (1.4.11) */

  /* ── Geometry ─────────────────────────────────────────────────────── */
  --radius-card: 14px;
  --radius-panel: 16px;
  --radius-input: 8px;
  --radius-btn: 8px;
  --shadow-card: 0 16px 40px rgba(27, 35, 48, 0.09);
  --shadow-panel: 0 18px 44px rgba(27, 35, 48, 0.08);
  --shadow-lift: 0 22px 50px rgba(27, 35, 48, 0.12);
  --max: 1120px;
}

/* ── Base ─────────────────────────────────────────────────────────────── */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Public Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); }

input, select, textarea, button { font-family: inherit; }

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

::selection { background: rgba(30, 68, 168, 0.16); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
/* Focus must stay visible on the dark bands too */
.stats :focus-visible,
.contact :focus-visible,
.footer :focus-visible,
.proof :focus-visible {
  outline-color: #FFFFFF;
}

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

.skip-link {
  position: absolute;
  top: -48px; left: 16px;
  z-index: 100;
  background: var(--ink); color: var(--bg);
  padding: 10px 18px; border-radius: 0 0 8px 8px;
  font-size: 14px; font-weight: 600;
  transition: top 0.15s;
}
.skip-link:focus { top: 0; color: var(--bg); }

.accent { color: var(--accent); font-style: normal; }

.eyebrow {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}

/* ── Buttons ──────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; cursor: pointer;
  border-radius: var(--radius-btn);
  padding: 12px 22px;
  font-size: 15px; font-weight: 600; line-height: 1.2;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.12s, box-shadow 0.2s;
}
.btn:active { transform: translateY(1px); }

/* One primary colour sitewide: blue means "this is the action". */
.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 6px 16px rgba(30, 68, 168, 0.22);
}
.btn--primary:hover {
  background: var(--accent-deep); color: #fff;
  box-shadow: 0 10px 22px rgba(30, 68, 168, 0.28);
}

.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--input-border);
}
.btn--ghost:hover { background: var(--surface); color: var(--accent); border-color: var(--accent); }

.btn--on-dark { background: #fff; color: var(--ink); }
.btn--on-dark:hover { background: var(--on-dark); color: var(--ink); }

.btn--lg { padding: 16px 30px; font-size: 16.5px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 15px 12px;
  font-weight: 600; font-size: 16px;
  color: var(--ink);
  border-bottom: 2px solid transparent;
}
.link-arrow:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ── Config warning (only shows on non-production hosts) ──────────────── */

.cfg-warn {
  position: relative; z-index: 60;
  background: #7E2A1D; color: #fff;
  font-size: 13.5px; font-weight: 600;
  padding: 10px 20px;
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  align-items: center; justify-content: center;
  text-align: center;
}
.cfg-warn code {
  background: rgba(0, 0, 0, 0.25);   /* 12.4:1 — darkening keeps AAA, tinting didn't */
  border-radius: 4px; padding: 1px 6px;
  font-size: 12.5px;
}

/* ── Nav ──────────────────────────────────────────────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 249, 246, 0.93);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}

.nav__brand {
  font-family: 'Instrument Serif', serif;
  font-size: 24px; letter-spacing: 0.01em;
  color: var(--ink);
}
.nav__brand:hover { color: var(--accent); }

.nav__menu {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 14px 26px;
  font-size: 15px; font-weight: 500;
}

.nav__link { color: var(--muted); border-bottom: 2px solid transparent; padding: 3px 0 5px; }
.nav__link:hover { color: var(--ink); border-bottom-color: var(--accent); }

.nav__link--tel {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--ink); font-weight: 700;
}
.nav__link--tel[hidden],
.nav__tel-quick[hidden],
.sticky-cta__call[hidden],
[data-tel-block][hidden],
[data-tel][hidden] {
  display: none !important;
}
.nav__link--tel:hover { color: var(--accent); }

.nav__tel-quick { display: none; flex: none; }

.nav__toggle {
  display: none;
  background: none; border: 1px solid var(--input-border);
  border-radius: 8px;
  width: 44px; height: 44px;
  cursor: pointer;
  position: relative;
}
.nav__toggle-bar,
.nav__toggle-bar::before,
.nav__toggle-bar::after {
  content: '';
  position: absolute; left: 11px;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav__toggle-bar { top: 15px; }
.nav__toggle-bar::before { content: ''; left: 0; top: 6px; }
.nav__toggle-bar::after { content: ''; left: 0; top: 12px; }

.nav--open .nav__toggle-bar { transform: translateY(6px) rotate(45deg); }
.nav--open .nav__toggle-bar::before { opacity: 0; }
.nav--open .nav__toggle-bar::after { transform: translateY(-12px) rotate(-90deg); }

@media (max-width: 900px) {
  .nav__inner { padding: 12px 20px; }
  .nav__tel-quick {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    margin-left: auto;
    border: 1px solid var(--input-border); border-radius: 8px;
    color: var(--accent);
  }
  .nav__toggle { display: block; flex: none; }
  .nav__menu {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 30px rgba(27, 35, 48, 0.10);
    padding: 8px 20px 20px;
  }
  .nav--open .nav__menu { display: flex; }
  .nav__link, .nav__link--tel {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border-soft);
    font-size: 16px;
  }
  .nav__cta { margin-top: 16px; padding: 15px; }
}

/* ── Hero ─────────────────────────────────────────────────────────────── */

.hero {
  max-width: var(--max); margin: 0 auto;
  padding: 76px 32px 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(430px, 100%), 1fr));
  gap: 60px;
  align-items: center;
}

.hero__title {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(42px, 6.5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.hero__title em { font-style: italic; }

.hero__sub {
  font-size: 19px; line-height: 1.6;
  color: var(--muted);
  margin: 0 0 30px;
  max-width: 490px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Risk-reversal strip — the three objections answered before they're asked */
.hero__trust {
  display: flex; flex-wrap: wrap;
  gap: 10px 22px;
  margin: 26px 0 0;
  padding: 0; list-style: none;
}
.hero__trust li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--muted);
}
.hero__trust svg { color: var(--green); flex: none; }

.eyebrow.rise { margin-bottom: 20px; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 0.6s both; }
.rise--d1 { animation-delay: 0.06s; }
.rise--d2 { animation-delay: 0.12s; }
.rise--d3 { animation-delay: 0.18s; }
.rise--d4 { animation-delay: 0.24s; }
.hero__demo.rise { animation-duration: 0.6s; animation-delay: 0.1s; }

/* ── Demo card (the "one job on autopilot" story) ─────────────────────── */

.demo-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  padding: 18px 20px 20px;
  box-shadow: var(--shadow-panel);
  display: flex; flex-direction: column; gap: 8px;
}

/* The rail makes the not-yet-filled part of the card read as a timeline
   waiting for events, rather than as empty space. */
.demo-card__rail {
  position: absolute;
  left: 30px; top: 62px; bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--border) 0%, var(--border) 70%, transparent 100%);
  border-radius: 2px;
  pointer-events: none;
}

.demo-card__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}
.demo-card__label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.demo-card__live {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.demo-card__live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15, 92, 69, 0.5); }
  50% { box-shadow: 0 0 0 5px rgba(15, 92, 69, 0); }
}

.demo-card__feed { display: flex; flex-direction: column; gap: 8px; position: relative; }

.demo-card__event {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 13px;
}
.demo-card__time {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.demo-card__msg { font-size: 13.5px; font-weight: 600; margin-top: 3px; }

.demo-card__tick {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; font-weight: 600;
  color: var(--muted);
  padding-left: 2px;
}
.tick {
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--green-bg); color: var(--green);
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}

.demo-card__bubble {
  max-width: 88%;
  background: var(--bg-tint);
  border-radius: 12px 12px 12px 3px;
  padding: 9px 13px;
  font-size: 13px; line-height: 1.45;
  color: var(--ink);
}

.demo-card__quote {
  background: var(--surface);
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  padding: 13px 14px;
  box-shadow: 0 10px 26px rgba(30, 68, 168, 0.14);
}
.demo-card__quote-head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.demo-card__quote-title { font-size: 13.5px; font-weight: 700; }
.demo-card__quote-note {
  font-size: 10.5px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.07em;
}
.demo-card__quote-sub { font-size: 12px; color: var(--muted); margin-top: 3px; }
.demo-card__quote-actions { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.demo-card__approve {
  background: var(--accent); color: #fff;
  font-size: 12.5px; font-weight: 700;
  border-radius: 7px; padding: 8px 14px;
}
.demo-card__approved { font-size: 12.5px; font-weight: 700; color: var(--green); }

.demo-card__then {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.demo-card__end {
  align-self: flex-start;
  background: var(--ink); color: var(--bg);
  font-size: 12.5px; font-weight: 700;
  border-radius: 99px;
  padding: 9px 17px;
  margin-top: 4px;
}
.demo-card__end em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.demo-card__urgency {
  display: inline-flex;
  align-items: center;
  background: var(--accent-tint);
  color: var(--accent);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 3px 8px;
  margin-left: 2px;
}

/* Story loop — 15s.
   Two rules, both learned the hard way:
   1. The card must never be blank. Row 1 is present at 0%, so someone who
      lands on the page sees a real enquiry immediately, not an empty box.
   2. Fill fast, hold long. Everything is revealed inside the first ~48%
      (~7s) and then holds. The old build spread the reveal across 82% of a
      20s loop, which left the card visibly empty for ~16 seconds. */
@keyframes eR1   { 0%,92%  { opacity:1; transform:translateY(0); } 97%,100% { opacity:0; } }
@keyframes eR2   { 0%,2%   { opacity:0; transform:translateY(6px); } 4.5%,92% { opacity:1; transform:translateY(0); } 97%,100% { opacity:0; } }
@keyframes eR3   { 0%,5%   { opacity:0; transform:translateY(6px); } 7.5%,92% { opacity:1; transform:translateY(0); } 97%,100% { opacity:0; } }
@keyframes eCard { 0%,8%   { opacity:0; transform:translateY(10px) scale(0.97); } 11%,92% { opacity:1; transform:translateY(0) scale(1); } 97%,100% { opacity:0; } }
@keyframes eTap  { 0%,14%  { transform:scale(1); box-shadow:0 0 0 0 rgba(30,68,168,0); } 16% { transform:scale(0.9); box-shadow:0 0 0 0 rgba(30,68,168,0.45); } 20% { box-shadow:0 0 0 14px rgba(30,68,168,0); } 22%,100% { transform:scale(1); box-shadow:0 0 0 0 rgba(30,68,168,0); } }
@keyframes eApr  { 0%,19%  { opacity:0; transform:translateY(4px); } 21.5%,92% { opacity:1; transform:translateY(0); } 97%,100% { opacity:0; } }
@keyframes eLbl  { 0%,23%  { opacity:0; } 25%,92% { opacity:1; } 97%,100% { opacity:0; } }
@keyframes eC1   { 0%,26%  { opacity:0; transform:translateY(6px); } 28%,92% { opacity:1; transform:translateY(0); } 97%,100% { opacity:0; } }
@keyframes eC2   { 0%,29%  { opacity:0; transform:translateY(6px); } 31%,92% { opacity:1; transform:translateY(0); } 97%,100% { opacity:0; } }
@keyframes eC3   { 0%,32%  { opacity:0; transform:translateY(6px); } 34%,92% { opacity:1; transform:translateY(0); } 97%,100% { opacity:0; } }
@keyframes eC4   { 0%,35%  { opacity:0; transform:translateY(6px); } 37%,92% { opacity:1; transform:translateY(0); } 97%,100% { opacity:0; } }
@keyframes eC5   { 0%,38%  { opacity:0; transform:translateY(6px); } 40%,92% { opacity:1; transform:translateY(0); } 97%,100% { opacity:0; } }
@keyframes eC6   { 0%,41%  { opacity:0; transform:translateY(6px); } 43%,92% { opacity:1; transform:translateY(0); } 97%,100% { opacity:0; } }
@keyframes eEnd  { 0%,45%  { opacity:0; transform:translateY(6px); } 48%,92% { opacity:1; transform:translateY(0); } 97%,100% { opacity:0; } }

.anim-r1   { animation: eR1   15s infinite; }
.anim-r2   { animation: eR2   15s infinite; }
.anim-r3   { animation: eR3   15s infinite; }
.anim-card { animation: eCard 15s infinite; }
.anim-tap  { animation: eTap  15s infinite; }
.anim-apr  { animation: eApr  15s infinite; }
.anim-lbl  { animation: eLbl  15s infinite; }
.anim-c1   { animation: eC1   15s infinite; }
.anim-c2   { animation: eC2   15s infinite; }
.anim-c3   { animation: eC3   15s infinite; }
.anim-c4   { animation: eC4   15s infinite; }
.anim-c5   { animation: eC5   15s infinite; }
.anim-c6   { animation: eC6   15s infinite; }
.anim-end  { animation: eEnd  15s infinite; }

/* ── Proof band — the credibility we actually have ────────────────────── */

.proof { background: var(--bg-tint); border-block: 1px solid var(--border); }
.proof__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 26px 32px;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 14px 40px;
}
.proof__lead {
  font-size: 14.5px; font-weight: 700; color: var(--ink);
  margin: 0; flex: 1 1 240px;
}
.proof__list {
  display: flex; flex-wrap: wrap; gap: 10px 12px;
  margin: 0; padding: 0; list-style: none;
}
.proof__item {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 13.5px; font-weight: 600; color: var(--muted);
}
.proof__item svg { color: var(--accent); flex: none; }
.proof__item strong { color: var(--ink); font-weight: 700; }

/* ── Stats strip ──────────────────────────────────────────────────────── */

.stats { background: var(--ink); color: var(--on-dark); }
.stats__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 56px 32px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 44px;
}
.stat__num {
  font-family: 'Instrument Serif', serif;
  font-size: 54px; line-height: 1;
  color: #fff;
}
.stat__text { font-size: 15px; line-height: 1.55; color: var(--on-dark-muted); margin: 10px 0 0; }
.stats__sources {
  max-width: var(--max); margin: 0 auto;
  padding: 0 32px 40px;
  font-size: 12.5px; line-height: 1.6; color: var(--on-dark-note);
}
.stats__sources a { color: var(--on-dark-note); text-decoration: underline; }
.stats__sources a:hover { color: #fff; }

/* ── Sections ─────────────────────────────────────────────────────────── */

.section { max-width: var(--max); margin: 0 auto; padding: 92px 32px 48px; }
.section--how { padding: 72px 32px; }
.section--pricing { padding: 48px 32px 72px; }
.section--faq { padding: 24px 32px 92px; }

.section__intro { max-width: 640px; margin-bottom: 52px; }
.section__title {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 42px);
  line-height: 1.1;
  margin: 0 0 16px;
}
.section__sub { font-size: 17px; line-height: 1.6; color: var(--muted); margin: 0; }

/* Services cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); border-color: var(--accent-line); }
.card__num { font-family: 'Instrument Serif', serif; font-size: 20px; color: var(--accent); margin-bottom: 18px; }
.card__title { font-size: 20px; font-weight: 700; margin: 0 0 12px; }
.card__text { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0 0 18px; }
.card__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 700; color: var(--accent);
  background: var(--accent-tint);
  border-radius: 99px; padding: 6px 13px;
  margin: 0;
}

/* ── Calculator ───────────────────────────────────────────────────────── */

.calc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  box-shadow: var(--shadow-card);
}
.calc__inputs { padding: clamp(26px, 4vw, 40px); }
.calc__legend {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 22px; padding: 0;
}
.calc__field { display: block; margin-bottom: 20px; }
.calc__label { display: block; font-size: 14.5px; font-weight: 600; margin-bottom: 7px; }
.calc__hint { display: block; font-size: 12.5px; font-weight: 400; color: var(--muted); margin-top: 3px; }
.calc__input-wrap { position: relative; display: flex; align-items: center; }
.calc__prefix {
  position: absolute; left: 14px;
  font-size: 16px; font-weight: 600; color: var(--muted);
  pointer-events: none;
}
.calc__suffix {
  position: absolute; right: 14px;
  font-size: 15px; font-weight: 600; color: var(--muted);
  pointer-events: none;
}
.calc__input {
  width: 100%;
  border: 1px solid var(--input-border);
  border-radius: var(--radius-input);
  padding: 13px 14px;
  font-size: 16px; font-weight: 600;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.calc__input--money { padding-left: 30px; }
.calc__input--pct { padding-right: 34px; }
.calc__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30, 68, 168, 0.20);
}

.calc__out {
  background: var(--ink); color: var(--on-dark);
  padding: clamp(26px, 4vw, 40px);
  display: flex; flex-direction: column; justify-content: center;
  gap: 6px;
}
.calc__out-label {
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-dark-note);
  margin: 0;
}
.calc__big {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(46px, 7vw, 68px);
  line-height: 1;
  color: #fff;
  margin: 6px 0 2px;
  font-variant-numeric: tabular-nums;
}
.calc__big-sub { font-size: 16px; color: var(--on-dark-muted); margin: 0 0 20px; }
.calc__recover {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 15px; line-height: 1.6;
  color: #C2C8D2;   /* 7.63:1 — the 7% white overlay lifts the bg, so the
                       text has to lift with it to stay AAA */
  margin: 0 0 18px;
}
.calc__recover strong { color: #fff; font-weight: 700; }
.calc__note { font-size: 12.5px; line-height: 1.6; color: var(--on-dark-note); margin: 14px 0 0; }
.calc__cta { align-self: flex-start; }

/* ── How it works ─────────────────────────────────────────────────────── */

.how {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 48px;
  align-items: start;
}
.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step--last { border-bottom: none; }
.step__num {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Instrument Serif', serif; font-size: 20px;
}
.step__num--filled { background: var(--accent); border-color: var(--accent); color: #fff; }
.step__title { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.step__text { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }
.step__when {
  display: inline-block; margin-top: 10px;
  background: var(--accent-tint); color: var(--accent);
  border-radius: 99px; padding: 5px 12px;
  font-size: 12.5px; font-weight: 700;
}

/* ── Pricing ──────────────────────────────────────────────────────────── */

.pricing {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(28px, 5vw, 52px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-card);
}
.pricing__title {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(30px, 4.5vw, 38px);
  line-height: 1.12;
  margin: 0 0 18px;
}
.pricing__tag {
  display: inline-flex; align-items: baseline; gap: 10px;
  margin: 0 0 18px;
}
.pricing__amount {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(52px, 8vw, 68px); line-height: 1;
  color: var(--accent);
}
.pricing__per { font-size: 16px; font-weight: 600; color: var(--muted); }
.pricing__from {
  display: block; font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.pricing__stamp {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 5px 12px;
  margin: 0 0 12px;
}
.pricing__then {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--muted);
  margin: -6px 0 18px;
}
.pricing__text { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0 0 24px; }
.pricing__cta { width: 100%; max-width: 320px; }
.pricing__points { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pricing__point {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  font-size: 15px; font-weight: 500; line-height: 1.45;
}
.tick-accent { color: var(--green); font-weight: 700; flex: none; }

.guarantee {
  display: flex; align-items: flex-start; gap: 13px;
  background: var(--green-bg);
  border: 1px solid #C9E3D8;
  border-radius: 12px;
  padding: 16px 18px;
}
.guarantee svg { color: var(--green); flex: none; margin-top: 1px; }
.guarantee p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--muted); }
.guarantee strong { color: var(--ink); }

/* ── FAQ ──────────────────────────────────────────────────────────────── */

.faq { display: grid; gap: 12px; max-width: 820px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.faq__item[open] { border-color: var(--accent-line); box-shadow: var(--shadow-card); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  font-size: 16.5px; font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--accent); }
.faq__q::after {
  content: '';
  flex: none;
  width: 10px; height: 10px;
  margin: -4px 4px 0 0;   /* optical centring — translate() would be applied
                             in the rotated frame and skew the chevron */
  border-right: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.2s;
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg); margin: 2px 4px 0 0; }
.faq__a { padding: 0 22px 22px; margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--muted); }
.faq__a + .faq__a { padding-top: 12px; }
.faq__a strong { color: var(--ink); }

/* ── Contact ──────────────────────────────────────────────────────────── */

.contact { background: var(--ink); color: var(--on-dark); }
.contact__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 88px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: 56px;
  align-items: start;
}
.contact__title {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1.08;
  margin: 0 0 18px;
  color: #fff;
}
.contact__sub { font-size: 17px; line-height: 1.65; color: var(--on-dark-muted); margin: 0 0 26px; max-width: 440px; }

/* What happens after they hit the button — removes the last hesitation */
.next-steps { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 14px; max-width: 440px; }
.next-steps li { display: flex; align-items: flex-start; gap: 13px; font-size: 15px; line-height: 1.5; color: var(--on-dark-muted); }
.next-steps__n {
  flex: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 700;
}
.next-steps strong { color: #fff; font-weight: 700; }

.contact__alt { font-size: 15px; line-height: 1.6; color: var(--on-dark-muted); margin: 0 0 26px; max-width: 440px; }
.contact__tel { color: #fff; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,0.45); }
.contact__tel:hover { color: var(--on-dark-muted); }
.contact__meta {
  font-size: 14px; line-height: 1.7; color: var(--on-dark-note);
  margin: 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

/* Form */
.form {
  background: var(--bg); color: var(--ink);
  border-radius: var(--radius-panel);
  padding: 34px;
  box-shadow: var(--shadow-lift);
}
#form-fields {
  display: flex; flex-direction: column; gap: 16px;
}
.form__head { margin: 0 0 4px; }
.form__title { font-size: 20px; font-weight: 700; margin: 0 0 4px; }
.form__lead { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 16px;
}
.form__field {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13.5px; font-weight: 600;
}
/* The label text has to be ONE flex item, or a trailing span like
   "(optional)" becomes its own row and knocks the input out of line. */
.form__label { display: block; }
.form__optional { font-weight: 400; color: var(--muted); }
.form__field input,
.form__field select {
  border: 1px solid var(--input-border);
  border-radius: var(--radius-input);
  padding: 13px 14px;
  font-size: 16px; /* 16px stops iOS zooming on focus */
  background: var(--surface);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234A5261' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form__field input:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30, 68, 168, 0.20);
}
.form__field input:user-invalid { border-color: var(--err); }

.hp { position: absolute !important; left: -9999px; top: -9999px; height: 1px; width: 1px; overflow: hidden; }

.form__error {
  background: var(--err-bg);
  border: 1px solid var(--err-line);
  color: var(--err);
  border-radius: var(--radius-input);
  padding: 12px 14px;
  font-size: 14px; line-height: 1.5;
}
.form__error a { color: var(--err); font-weight: 700; text-decoration: underline; }

.form__submit { border-radius: var(--radius-input); padding: 16px; font-size: 16.5px; font-weight: 700; margin-top: 4px; }
.form__submit[disabled] { opacity: 0.7; cursor: wait; }

.form__note {
  font-size: 12.5px; line-height: 1.55; color: var(--muted);
  text-align: center; margin: 0;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.form__note svg { color: var(--green); flex: none; }

/* Success replaces the fields in the same card — never stacked */
.form-success {
  background: transparent; color: var(--ink);
  padding: 28px 8px;
  display: none;
  flex-direction: column; align-items: center;
  text-align: center; gap: 14px;
  animation: rise 0.45s both;
}
.form:not(.form--sent) .form-success,
.form-success[hidden] { display: none !important; }
.form--sent #form-fields,
#form-fields[hidden] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}
.form--sent {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form--sent .form-success {
  display: flex !important;
}
.form-success__badge {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 700;
}
.form-success__title { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 30px; margin: 8px 0 0; }
.form-success__text { font-size: 15.5px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 340px; }
.form-success__cta { margin-top: 8px; }

/* ── Footer ───────────────────────────────────────────────────────────── */

.footer { background: var(--ink-dark); color: var(--on-dark-note); }
.footer__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 30px 32px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px 24px;
  font-size: 13.5px;
}
.footer__brand { font-family: 'Instrument Serif', serif; font-size: 18px; color: var(--bg); }
.footer__links { display: flex; flex-wrap: wrap; gap: 4px 24px; }
.footer__links a { color: var(--on-dark-note); padding: 4px 0; }   /* ≥24px target (2.5.8) */
.footer__links a:hover { color: #fff; text-decoration: underline; }
.footer__legal {
  flex-basis: 100%;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px;
  border-top: 1px solid rgba(168, 176, 190, 0.22);
  padding-top: 18px; margin-top: 4px;
  line-height: 1.6;
}
.footer__legal-links a { color: var(--on-dark-note); }
.footer__legal-links a:hover { color: #fff; text-decoration: underline; }

/* ── Sticky mobile action bar ─────────────────────────────────────────── */

.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 45;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(250, 249, 246, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(27, 35, 48, 0.10);
  gap: 10px;
  transform: translateY(110%);
  transition: transform 0.28s ease;
}
.sticky-cta--in { transform: translateY(0); }
.sticky-cta .btn { flex: 1 1 0; padding: 14px 12px; }
.sticky-cta__call {
  flex: 0 0 auto !important;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 18px !important;
}

@media (max-width: 900px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
}

/* ── Legal pages (privacy / terms / 404) ──────────────────────────────── */

.legal { max-width: 760px; margin: 0 auto; padding: 72px 32px 96px; }
.legal h1 {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: clamp(34px, 5vw, 46px); line-height: 1.1; margin: 0 0 12px;
}
.legal .legal__updated { font-size: 14px; color: var(--muted); margin: 0 0 40px; }
.legal h2 { font-size: 20px; font-weight: 700; margin: 36px 0 10px; }
.legal p, .legal li { font-size: 15.5px; line-height: 1.7; color: var(--muted); }
.legal ul { padding-left: 22px; }
.legal .legal__note {
  background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--accent);
  border-radius: 10px; padding: 14px 18px; font-size: 14px;
}

/* ── Motion preferences ───────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  /* Demo card settles into its final "everything done" state */
  .anim-r1, .anim-r2, .anim-r3, .anim-card, .anim-apr, .anim-lbl,
  .anim-c1, .anim-c2, .anim-c3, .anim-c4, .anim-c5, .anim-c6, .anim-end {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
  .anim-tap, .demo-card__live-dot { animation: none !important; }
  .sticky-cta { transition: none; }
}

/* ── Small screens ────────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .hero { padding: 48px 20px 40px; gap: 36px; }
  .section, .section--how, .section--pricing, .section--faq { padding-left: 20px; padding-right: 20px; }
  .section { padding-top: 68px; }
  .section__intro { margin-bottom: 36px; }
  .proof__inner { padding: 22px 20px; gap: 12px 20px; }
  .stats__inner { padding: 44px 20px 32px; gap: 34px; }
  .stats__sources { padding: 0 20px 32px; }
  .contact__inner { padding: 64px 20px; gap: 40px; }
  .form { padding: 24px 20px; }
  .form-success { padding: 40px 24px; }
  .footer__inner { padding: 24px 20px; }
  .hero__actions .btn--lg { width: 100%; }
  .hero__actions .link-arrow { padding-left: 0; }
  .pricing__cta { max-width: none; }
  .calc__inputs, .calc__out { padding: 26px 20px; }
  .faq__q { padding: 17px 18px; font-size: 15.5px; }
  .faq__a { padding: 0 18px 18px; font-size: 15px; }
}

/* ── Touch targets on phones (2.5.5 AAA) ──────────────────────────────
   Kept last in the file: these need to win over the desktop footer rules
   above, which share their specificity. */

@media (max-width: 900px) {
  .footer__links { gap: 0 24px; }
  .footer__links a { display: inline-block; padding: 14px 0; }
  .footer__legal-links a { display: inline-block; padding: 11px 0; }
}

/* ── Nav dropdown ─────────────────────────────────────────────────────── */

.nav__drop { position: relative; }
.nav__drop-btn {
  background: none; border: 0; padding: 3px 0 5px;
  font: inherit; font-weight: 500; font-size: 15px;
  color: var(--muted); cursor: pointer;
  border-bottom: 2px solid transparent;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav__drop-btn:hover,
.nav__drop--open .nav__drop-btn { color: var(--ink); border-bottom-color: var(--accent); }
.nav__drop-btn::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg); margin-top: -3px;
}
.nav__drop-menu {
  display: none;
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 8px;
  z-index: 60;
}
.nav__drop--open .nav__drop-menu,
.nav__drop:hover .nav__drop-menu { display: block; }
.nav__drop-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink); font-size: 14.5px; font-weight: 600;
}
.nav__drop-menu a:hover { background: var(--accent-tint); color: var(--accent); }
.nav__drop-menu a span {
  display: block; font-size: 12.5px; font-weight: 500; color: var(--muted); margin-top: 2px;
}

@media (max-width: 900px) {
  .nav__drop-btn {
    width: 100%; justify-content: space-between;
    padding: 14px 4px; font-size: 16px;
    border-bottom: 1px solid var(--border-soft);
  }
  .nav__drop-menu {
    position: static; display: block;
    min-width: 0; box-shadow: none; border: 0;
    background: transparent; padding: 0 0 8px 12px;
  }
  .nav__drop-menu a { padding: 10px 4px; font-weight: 500; color: var(--muted); }
}

/* ── Stats footnote (always visible — industry figures, not ours) ───── */

.stats__note {
  max-width: var(--max); margin: 0 auto;
  padding: 0 32px 40px;
  font-size: 13px; line-height: 1.65; color: var(--on-dark-note);
}
@media (max-width: 640px) {
  .stats__note { padding: 0 20px 32px; }
}

/* ── Breadcrumbs ─────────────────────────────────────────────────────── */

.crumbs {
  max-width: var(--max); margin: 0 auto;
  padding: 22px 32px 0;
  font-size: 13px; color: var(--muted);
}
.crumbs ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 0;
}
.crumbs li { display: inline-flex; align-items: center; }
.crumbs li:not(:last-child)::after {
  content: '/';
  margin: 0 10px;
  color: var(--accent-line);
}
.crumbs a { color: var(--muted); font-weight: 500; }
.crumbs a:hover { color: var(--accent); }
.crumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ── Inner ranking / legal / about pages ────────────────────────────── */

.page-hero {
  max-width: var(--max); margin: 0 auto;
  padding: 36px 32px 12px;
}
.page-hero__kicker { margin-bottom: 18px; }
.page-hero__title {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 52px);
  line-height: 1.08;
  margin: 0 0 18px;
  max-width: 18ch;
}
.page-hero__sub {
  font-size: 18px; line-height: 1.6; color: var(--muted);
  margin: 0; max-width: 640px;
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 32px 48px;
}
.prose h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.15;
  margin: 40px 0 12px;
}
.prose h3 { font-size: 18px; font-weight: 700; margin: 28px 0 8px; }
.prose p, .prose li { font-size: 16.5px; line-height: 1.7; color: var(--muted); }
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose strong { color: var(--ink); }
.prose a { font-weight: 600; }

.related {
  max-width: var(--max); margin: 0 auto;
  padding: 8px 32px 72px;
}
.related__title {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 16px;
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 16px;
}
.related__card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 700; font-size: 16px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.related__card:hover {
  color: var(--accent);
  border-color: var(--accent-line);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.related__card span {
  display: block; margin-top: 6px;
  font-size: 13.5px; font-weight: 500; color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 20px;
  margin: 28px 0 8px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}
.pricing-card h2, .pricing-card h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400; font-size: 28px; margin: 0 0 8px; color: var(--ink);
}
.pricing-card .pricing-card__label {
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 10px;
}
.pricing-card p { font-size: 15.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.pricing-card--accent { border-color: var(--accent-line); box-shadow: var(--shadow-card); }

.not-included {
  background: var(--bg-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px 26px;
  margin: 28px 0;
}
.not-included h2 { margin-top: 0; }

.trust-line {
  font-size: 14px; line-height: 1.55; color: var(--muted);
  margin: 18px 0 0; max-width: 520px;
}

.footer__meta {
  flex-basis: 100%;
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  color: var(--on-dark-note); font-size: 13px; line-height: 1.6;
}
.footer__trust { color: var(--on-dark-muted); }

.card a.card__title {
  color: var(--ink);
}
.card a.card__title:hover { color: var(--accent); }

@media (max-width: 640px) {
  .page-hero, .prose, .related, .crumbs { padding-left: 20px; padding-right: 20px; }
  .page-hero { padding-top: 40px; }
}
