@charset "UTF-8";
/* ==========================================================================
   Xelvon Tax Advisors — site stylesheet
   Mobile-first. Single file, no build step, no framework.
   Sections: 1 reset · 2 tokens · 3 base · 4 layout · 5 type · 6 buttons
             7 header · 8 hero · 9 components · 10 quote engine · 11 forms
             12 prose · 13 footer · 14 utilities · 15 motion & print
   ========================================================================== */

/* 1 ─────────────────────────────────────────────────────────────── reset ── */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, picture, svg, video, canvas { display: block; max-width: 100%; }
img, video { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
p, h1, h2, h3, h4, h5, h6, li { overflow-wrap: break-word; }
ul[class], ol[class] { list-style: none; padding: 0; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; }
table { border-collapse: collapse; }

/* 2 ────────────────────────────────────────────────────────────── tokens ── */

:root {
  /* ink & neutrals */
  --ink:        #0A1628;
  --ink-2:      #15283E;
  --body:       #33465C;
  --muted:      #61748A;
  --muted-2:    #607386;   /* smallest text tier — 4.89:1 on white, 4.62:1 on --surface */
  --faint:      #75879A;   /* decorative only: separators, control borders, chevrons — 3.4:1, UI-safe on every surface */
  --underline:  #2B9B76;   /* resting link underline — clears 3:1 on every background the site uses */
  --line:       #E2E9E7;
  --line-soft:  #EEF3F1;
  --canvas:     #FFFFFF;
  --surface:    #F6F9F8;
  --surface-2:  #EDF3F1;
  --sand:       #FBF9F5;

  /* brand */
  --brand:      #0E7C5F;
  --brand-600:  #0B6650;
  --brand-700:  #085140;
  --brand-200:  #BCE3D6;
  --brand-100:  #DDF0E8;
  --brand-50:   #F0F9F5;

  /* accent + status */
  --accent:     #C87A16;
  --accent-100: #FCF1DE;
  --accent-50:  #FEF9F0;
  --danger:     #A82C24;
  --danger-50:  #FDF2F1;

  /* type */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: "Source Serif 4", ui-serif, Georgia, "Times New Roman", serif;

  /* shape */
  --r-xs: 8px;
  --r-sm: 10px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* elevation */
  --sh-1: 0 1px 2px rgba(10,22,40,.05), 0 1px 3px rgba(10,22,40,.05);
  --sh-2: 0 4px 14px -4px rgba(10,22,40,.10), 0 2px 6px -3px rgba(10,22,40,.07);
  --sh-3: 0 16px 40px -14px rgba(10,22,40,.22), 0 4px 12px -6px rgba(10,22,40,.10);
  --sh-brand: 0 8px 22px -8px rgba(14,124,95,.45);

  /* metrics */
  --maxw: 1160px;
  --maxw-narrow: 760px;
  --gutter: 20px;
  --header-h: 62px;
  --focus: 0 0 0 3px #fff, 0 0 0 5.5px var(--brand);
}

@media (min-width: 900px) {
  :root { --gutter: 32px; --header-h: 76px; }
}

/* 3 ──────────────────────────────────────────────────────────────── base ── */

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;          /* 17px — comfortable on phones */
  line-height: 1.65;
  color: var(--body);
  background: var(--canvas);
  font-feature-settings: "cv05" 1, "ss01" 1;
  /* room for the sticky mobile action bar */
  padding-bottom: env(safe-area-inset-bottom);
}

@media (max-width: 899px) {
  body.has-actionbar { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
}
body.no-actionbar .actionbar { display: none; }

::selection { background: var(--brand-100); color: var(--brand-700); }

:where(a):focus-visible,
:where(button):focus-visible,
:where(input, select, textarea):focus-visible,
:where(summary):focus-visible,
[tabindex]:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: var(--r-xs);
}

/* anchors must clear the sticky header */
:target { scroll-margin-top: calc(var(--header-h) + 20px); }
h2[id], h3[id], section[id] { scroll-margin-top: calc(var(--header-h) + 20px); }

.skip {
  position: absolute; left: 12px; top: -100px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px;
  border-radius: var(--r-sm); font-weight: 600; text-decoration: none;
  transition: top .15s ease;
}
.skip:focus { top: 12px; }

/* 4 ────────────────────────────────────────────────────────────── layout ── */

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: var(--maxw-narrow); }

.sec { padding-block: clamp(3rem, 8vw, 5.5rem); }
.sec-tight { padding-block: clamp(2.25rem, 5vw, 3.5rem); }
.sec-surface { background: var(--surface); }
.sec-sand { background: var(--sand); }
.sec-ink { background: var(--ink); color: #DCE6EF; }
.sec-ink h2, .sec-ink h3, .sec-ink strong { color: #fff; }
.sec-line-top { border-top: 1px solid var(--line); }

.grid { display: grid; gap: 18px; }
@media (min-width: 620px)  { .g-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .g-3 { grid-template-columns: repeat(3, 1fr); } .g-2\@lg { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .g-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 620px)  { .g-3 { grid-template-columns: repeat(2, 1fr); } .g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .g-4 { grid-template-columns: repeat(2, 1fr); } }

.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 1.75rem; }

/* 5 ──────────────────────────────────────────────────────────────── type ── */

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; font-weight: 600; letter-spacing: -0.018em; text-wrap: balance; }

h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 7.2vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 4.4vw, 2.55rem);
  line-height: 1.14;
  letter-spacing: -0.022em;
}
h3 { font-size: clamp(1.18rem, 2.4vw, 1.4rem); line-height: 1.25; }
h4 { font-size: 1.0625rem; line-height: 1.35; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8125rem; font-weight: 600; letter-spacing: .085em; text-transform: uppercase;
  color: var(--brand-600); margin-bottom: .85rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brand); border-radius: 2px; }
.sec-ink .eyebrow { color: var(--brand-200); }
.sec-ink .eyebrow::before { background: var(--brand-200); }

.lede { font-size: clamp(1.075rem, 2.2vw, 1.25rem); line-height: 1.6; color: var(--muted); text-wrap: pretty; }
.sec-ink .lede { color: #A8BDD1; }

.sec-head { max-width: 62ch; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head p { margin-top: .85rem; }

.small { font-size: .875rem; }
.tiny  { font-size: .8125rem; line-height: 1.5; color: var(--muted); }

a.link {
  color: var(--brand-600); text-decoration: underline; text-decoration-thickness: 1.5px;
  text-underline-offset: 3px; text-decoration-color: var(--underline); font-weight: 500;
}
a.link:hover { text-decoration-color: var(--brand); }

.arrow-link {
  display: inline-flex; align-items: center; gap: .45rem; font-weight: 600;
  color: var(--brand-600); text-decoration: none;
}
.arrow-link .ico { width: 17px; height: 17px; transition: transform .18s ease; }
.arrow-link:hover .ico { transform: translateX(3px); }
.arrow-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* 6 ───────────────────────────────────────────────────────────── buttons ── */

.btn {
  --btn-bg: var(--brand); --btn-fg: #fff; --btn-bd: var(--brand);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 50px; padding: .8rem 1.4rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd); border-radius: var(--r-pill);
  font-size: 1rem; font-weight: 600; line-height: 1.2; letter-spacing: -0.005em;
  text-align: center; text-decoration: none; white-space: nowrap;
  transition: transform .14s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn .ico { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { box-shadow: var(--sh-brand); }
.btn-primary:hover { --btn-bg: var(--brand-600); --btn-bd: var(--brand-600); }

.btn-secondary { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: var(--line); box-shadow: var(--sh-1); }
.btn-secondary:hover { --btn-bd: var(--brand-200); --btn-fg: var(--brand-700); }

.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: transparent; min-height: 44px; padding-inline: .8rem; }
.btn-ghost:hover { --btn-bg: var(--surface-2); }

.btn-onink { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn-onink:hover { --btn-bg: var(--brand-50); }
.btn-onink-ghost { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.35); }
.btn-onink-ghost:hover { --btn-bd: #fff; --btn-bg: rgba(255,255,255,.08); }

.btn-lg { min-height: 56px; padding: .95rem 1.8rem; font-size: 1.0625rem; }
.btn-sm { min-height: 42px; padding: .5rem 1rem; font-size: .9375rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 480px) { .btn-row { flex-direction: row; flex-wrap: wrap; align-items: center; } }
.btn-row.center { justify-content: center; }

.cta-note { margin-top: .9rem; font-size: .875rem; color: var(--muted); display: flex; align-items: flex-start; gap: .45rem; }
.cta-note .ico { margin-top: 3px; }
.cta-note .ico { width: 15px; height: 15px; color: var(--brand); flex: none; }
.sec-ink .cta-note { color: #93A9BE; }

/* 7 ────────────────────────────────────────────────────────────── header ── */

.topbar {
  background: var(--ink); color: #C9D8E6;
  font-size: .8125rem; letter-spacing: .002em;
}
.topbar .wrap { display: flex; align-items: center; justify-content: center; gap: 1.25rem; min-height: 38px; padding-block: .35rem; text-align: center; }
.topbar a { color: #fff; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.35); }
.topbar a:hover { border-bottom-color: #fff; }
.topbar-alt { display: none; }
@media (min-width: 760px) { .topbar-alt { display: inline; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header.is-stuck { box-shadow: var(--sh-2); border-bottom-color: transparent; }

.header-in { display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; padding-block: .35rem; }
.brand-mark { width: 34px; height: 34px; flex: none; border-radius: 9px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--serif); font-size: 1.185rem; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }
.brand-sub { font-size: .625rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--muted-2); margin-top: 1px; }

.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--r-sm); color: var(--ink); }
.nav-toggle:hover { background: var(--surface-2); }
.nav-toggle .ico { width: 24px; height: 24px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: block; }
.nav-toggle[aria-expanded="true"] .ico-menu { display: none; }
@media (min-width: 1000px) { .nav-toggle { display: none; } }

.nav-panel {
  position: fixed; inset: calc(var(--header-h) + 0px) 0 0 0;
  background: #fff; overflow-y: auto; overscroll-behavior: contain;
  padding: 1rem var(--gutter) 2.5rem;
  display: none;
}
.nav-panel.is-open { display: block; }
@media (min-width: 1000px) {
  .nav-panel { position: static; display: flex !important; align-items: center; gap: .15rem; inset: auto; padding: 0; overflow: visible; background: none; }
}

.nav-list { display: flex; flex-direction: column; gap: 2px; }
@media (min-width: 1000px) { .nav-list { flex-direction: row; align-items: center; gap: .15rem; } }

.nav-link {
  display: flex; align-items: center; justify-content: space-between; gap: .4rem;
  padding: .85rem .25rem; font-size: 1.0625rem; font-weight: 500; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid var(--line-soft); border-radius: 0;
}
.nav-link[aria-current="page"], .nav-link.is-active { color: var(--brand-600); font-weight: 600; }
@media (min-width: 1000px) {
  .nav-link { padding: .5rem .7rem; font-size: .9375rem; border-bottom: 0; border-radius: var(--r-sm); }
  .nav-link:hover { background: var(--surface-2); }
  .nav-link[aria-current="page"], .nav-link.is-active { background: var(--brand-50); }
}

/* dropdown */
.nav-item { position: relative; }
.nav-sub { display: flex; flex-direction: column; gap: 2px; padding: .25rem 0 .75rem .9rem; border-bottom: 1px solid var(--line-soft); }
.nav-sub a { display: flex; align-items: center; gap: .6rem; padding: .6rem .25rem; font-size: .9688rem; color: var(--body); text-decoration: none; }
.nav-sub a:hover { color: var(--brand-600); }
.nav-sub .ico { width: 18px; height: 18px; color: var(--brand); flex: none; }
.nav-sub-desc { display: none; }

@media (min-width: 1000px) {
  .nav-sub {
    position: absolute; top: calc(100% + 8px); left: -.4rem; z-index: 90;
    width: 340px; padding: .55rem; gap: 1px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-3);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
  }
  .nav-item:hover .nav-sub, .nav-item:focus-within .nav-sub { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-sub a { align-items: flex-start; padding: .6rem .65rem; border-radius: var(--r-sm); }
  .nav-sub a:hover { background: var(--brand-50); }
  .nav-sub .ico { margin-top: 2px; }
  .nav-sub-desc { display: block; font-size: .8125rem; color: var(--muted); line-height: 1.4; margin-top: 1px; font-weight: 400; }
  .nav-sub a strong { font-weight: 600; color: var(--ink); font-size: .9375rem; }
}

.nav-actions { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.25rem; }
@media (min-width: 1000px) { .nav-actions { flex-direction: row; align-items: center; gap: .5rem; margin-top: 0; margin-left: .6rem; } }

.nav-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--ink); text-decoration: none; font-size: .9375rem; padding: .5rem .7rem; border-radius: var(--r-sm); }
.nav-phone .ico { width: 17px; height: 17px; color: var(--brand); }
.nav-phone:hover { background: var(--surface-2); }

/* mobile sticky action bar */
.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: grid; grid-template-columns: 1fr 1.35fr; gap: .5rem;
  padding: .55rem var(--gutter) calc(.55rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px -12px rgba(10,22,40,.25);
}
.actionbar .btn { min-height: 48px; padding-inline: .75rem; font-size: .9375rem; }
@media (min-width: 900px) { .actionbar { display: none; } }

/* 8 ──────────────────────────────────────────────────────────────── hero ── */

.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% -10%, var(--brand-50) 0%, rgba(240,249,245,0) 58%),
    radial-gradient(90% 70% at 0% 0%, #FDF7EC 0%, rgba(253,247,236,0) 55%),
    var(--canvas);
  border-bottom: 1px solid var(--line-soft);
}
.hero-in { padding-block: clamp(2.25rem, 6vw, 4.25rem) clamp(2.5rem, 6vw, 4.5rem); display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 980px) { .hero-in { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); align-items: start; gap: 3.5rem; } }

.hero h1 { margin-bottom: 1.05rem; }
.hero h1 em { font-style: normal; color: var(--brand-600); }
.hero .lede { max-width: 34ch; }
@media (min-width: 980px) { .hero .lede { max-width: 46ch; } }
.hero .btn-row { margin-top: 1.6rem; }

.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .38rem .85rem .38rem .55rem; margin-bottom: 1.1rem;
  background: #fff; border: 1px solid var(--brand-200); border-radius: var(--r-pill);
  font-size: .8125rem; font-weight: 600; color: var(--brand-700); box-shadow: var(--sh-1);
}
.pill .ico { width: 15px; height: 15px; }
.pill b { background: var(--brand-100); padding: .1rem .45rem; border-radius: var(--r-pill); font-size: .75rem; }

.hero-proof { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: grid; gap: .9rem; }
@media (min-width: 560px) { .hero-proof { grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; } }
.hero-proof li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9375rem; font-weight: 500; color: var(--ink-2); }
.hero-proof .ico { width: 19px; height: 19px; color: var(--brand); flex: none; margin-top: 1px; }

/* 9 ──────────────────────────────────────────────────────── components ── */

/* — trust strip — */
.trustbar { border-block: 1px solid var(--line); background: var(--surface); }
.trustbar .wrap { display: grid; gap: 1.1rem; padding-block: 1.5rem; }
@media (min-width: 620px) { .trustbar .wrap { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .trustbar .wrap { grid-template-columns: repeat(3, 1fr); gap: 1.25rem 2rem; } }
.trust-item { display: flex; gap: .75rem; align-items: flex-start; }
.trust-item .ico { width: 21px; height: 21px; color: var(--brand); flex: none; margin-top: 2px; }
.trust-item b { display: block; color: var(--ink); font-size: .9375rem; font-weight: 600; }
.trust-item span { display: block; font-size: .8438rem; line-height: 1.5; color: var(--muted); margin-top: 1px; }

/* — generic card — */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.45rem; box-shadow: var(--sh-1);
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.card-pad-lg { padding: clamp(1.5rem, 4vw, 2.25rem); }
a.card, .card-link { text-decoration: none; display: block; }
a.card:hover, .card-hover:hover { box-shadow: var(--sh-2); border-color: var(--brand-200); transform: translateY(-2px); }

.card-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: 1rem;
  background: var(--brand-50); color: var(--brand-600);
  border: 1px solid var(--brand-100); border-radius: 13px;
}
.card-ico .ico { width: 23px; height: 23px; }
.card h3 { margin-bottom: .45rem; }
.card p { font-size: .9375rem; color: var(--muted); }

.card-price { display: inline-flex; align-items: baseline; gap: .3rem; margin-top: 1rem; font-size: .875rem; color: var(--muted); }
.card-price b { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }

.card-foot { margin-top: 1.15rem; padding-top: 1.1rem; border-top: 1px solid var(--line-soft); }

/* — feature list — */
.ticks { display: grid; gap: .6rem; }
.ticks li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9375rem; line-height: 1.55; }
.ticks .ico { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: 3px; }
.ticks-tight li { font-size: .9063rem; }

/* — numbered steps — */
.steps { counter-reset: step; display: grid; gap: 1rem; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem 1.4rem 1.4rem; }
.step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; margin-bottom: .9rem;
  background: var(--ink); color: #fff; border-radius: 50%;
  font-size: .9375rem; font-weight: 700; font-variant-numeric: tabular-nums;
}
.step h3 { font-size: 1.0625rem; margin-bottom: .4rem; }
.step p { font-size: .9375rem; color: var(--muted); }
.step-time {
  position: absolute; top: 1.5rem; right: 1.4rem;
  font-size: .75rem; font-weight: 600; color: var(--brand-700);
  background: var(--brand-50); border: 1px solid var(--brand-100);
  padding: .2rem .55rem; border-radius: var(--r-pill);
}

/* — comparison table — */
.compare { display: grid; gap: 1rem; }
@media (min-width: 760px) { .compare { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
.compare-col { border-radius: var(--r-lg); padding: 1.5rem 1.4rem; border: 1px solid var(--line); background: #fff; }
.compare-col.is-us { border-color: var(--brand-200); background: var(--brand-50); box-shadow: var(--sh-2); }
.compare-col h3 { font-size: 1.0625rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.compare-col ul { display: grid; gap: .65rem; }
.compare-col li { display: flex; gap: .6rem; font-size: .9375rem; line-height: 1.5; }
.compare-col li .ico { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.compare-col.is-them li .ico { color: var(--faint); }
.compare-col.is-us li .ico { color: var(--brand); }

/* — pricing cards — */
.price-grid { display: grid; gap: 1rem; }
@media (min-width: 700px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .price-grid-4 { grid-template-columns: repeat(4, 1fr); } .price-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.price-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem 1.35rem; }
.price-card.is-popular { border-color: var(--brand); box-shadow: var(--sh-3); }
.price-badge {
  position: absolute; top: -11px; left: 1.35rem;
  background: var(--brand); color: #fff; font-size: .6875rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; padding: .25rem .6rem; border-radius: var(--r-pill);
}
.price-card h3 { font-size: 1.0625rem; margin-bottom: .3rem; }
.price-card .desc { font-size: .875rem; color: var(--muted); min-height: 2.6em; }
.price-amount { display: flex; align-items: baseline; gap: .25rem; margin: 1rem 0 .25rem; }
.price-amount .from { font-size: .8125rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; align-self: flex-start; margin-top: .35rem; }
.price-amount .num { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.price-amount .unit { font-size: .875rem; color: var(--muted); font-weight: 500; }
.price-card .ticks { margin-top: 1.15rem; padding-top: 1.15rem; border-top: 1px solid var(--line-soft); }
.price-card .btn { margin-top: auto; }
.price-card .ticks + .btn { margin-top: 1.4rem; }

.price-note { margin-top: 1rem; font-size: .875rem; color: var(--muted); }

/* — add-on table — */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--r); background: #fff; }
.tbl { width: 100%; min-width: min(460px, 100%); border-collapse: collapse; font-size: .9375rem; }
.tbl caption { text-align: left; padding: .9rem 1.1rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); background: var(--surface); }
.tbl th, .tbl td { padding: .8rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.tbl thead th { background: var(--surface); font-size: .8125rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line); white-space: nowrap; }
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl tbody tr:hover { background: var(--brand-50); }
.tbl td.num, .tbl th.num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink); }

/* — FAQ accordion — */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: 1.15rem .25rem; cursor: pointer; list-style: none;
  font-size: 1.0313rem; font-weight: 600; color: var(--ink); line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--brand); transition: transform .2s ease; }
.faq details[open] summary .ico { transform: rotate(180deg); }
.faq summary:hover { color: var(--brand-700); }
.faq .faq-body { padding: 0 2.25rem 1.35rem .25rem; }
.faq .faq-body p { color: var(--muted); }
.faq .faq-body p + p { margin-top: .75rem; }

/* — callouts — */
.callout {
  margin-block: 1.5rem; padding: 1.15rem 1.25rem;
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--brand); border-radius: var(--r-sm);
  font-size: .9688rem;
}
.callout > :first-child { margin-top: 0; }
.callout > :last-child { margin-bottom: 0; }
.callout p + p, .callout p + ul, .callout ul + p { margin-top: .7rem; }
.callout-warn { background: var(--accent-50); border-color: #F0DCB6; border-left-color: var(--accent); }
.callout-ok   { background: var(--brand-50); border-color: var(--brand-100); border-left-color: var(--brand); }

/* — CTA band — */
.cta-band { background: var(--ink); color: #C3D3E2; border-radius: 0; }
.cta-band .wrap { padding-block: clamp(2.75rem, 7vw, 4.5rem); }
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band .lede { color: #A2B7CB; max-width: 52ch; margin-top: .9rem; }
.cta-band .btn-row { margin-top: 1.75rem; }
.cta-inner { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .cta-inner { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 3rem; } .cta-band .btn-row { margin-top: 0; justify-content: flex-end; } }

/* — breadcrumbs — */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; font-size: .8125rem; color: var(--muted); padding-block: 1rem .25rem; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--brand-600); text-decoration: underline; }
.crumbs span[aria-current] { color: var(--ink); font-weight: 500; }
.crumbs .sep { color: var(--faint); }

/* — page header — */
.pagehead { background: var(--surface); border-bottom: 1px solid var(--line); }
.pagehead .wrap { padding-block: clamp(1.5rem, 4vw, 2.75rem) clamp(2rem, 5vw, 3rem); }
.pagehead h1 { margin-bottom: .9rem; }
.pagehead .lede { max-width: 62ch; }
.pagehead .btn-row { margin-top: 1.6rem; }
.pagehead-meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; margin-top: 1.2rem; font-size: .8438rem; color: var(--muted); }
.pagehead-meta span { display: inline-flex; align-items: center; gap: .35rem; max-width: 100%; min-width: 0; }
.pagehead-meta .ico { width: 15px; height: 15px; }

/* — article cards — */
.post-card { display: flex; flex-direction: column; height: 100%; }
.post-cat { display: inline-block; align-self: flex-start; font-size: .6875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-700); background: var(--brand-50); border: 1px solid var(--brand-100); padding: .22rem .55rem; border-radius: var(--r-pill); margin-bottom: .85rem; }
.post-card h3 { font-size: 1.0938rem; line-height: 1.3; margin-bottom: .5rem; }
.post-card p { font-size: .9063rem; }
.post-card .post-meta { margin-top: auto; padding-top: 1.1rem; font-size: .8125rem; color: var(--muted-2); display: flex; align-items: center; gap: .4rem; }
.post-card .post-meta .ico { width: 14px; height: 14px; }

/* — stat row — */
.stats { display: grid; gap: 1.25rem; }
@media (min-width: 620px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat b { display: block; font-family: var(--serif); font-size: clamp(1.9rem, 5vw, 2.5rem); font-weight: 600; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.stat span { display: block; margin-top: .45rem; font-size: .9063rem; color: var(--muted); }
.sec-ink .stat b { color: #fff; }
.sec-ink .stat span { color: #93A9BE; }

/* — split media/feature — */
.split { display: grid; gap: clamp(2rem, 5vw, 3.25rem); align-items: center; }
.split.top { align-items: start; }
@media (min-width: 900px) {
  .split { grid-template-columns: repeat(2, 1fr); }
  .split.rev > :first-child { order: 2; }
  .split.top > .sticky-col { position: sticky; top: calc(var(--header-h) + 28px); }
}

/* — profile — */
.profile { display: grid; gap: 1.5rem; }
@media (min-width: 700px) { .profile { grid-template-columns: 168px 1fr; gap: 2rem; align-items: start; } }
.profile-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-700) 100%);
  color: #fff; font-family: var(--serif); font-size: 2.6rem; font-weight: 600; letter-spacing: -0.02em;
  box-shadow: var(--sh-2);
}
@media (min-width: 700px) { .profile-avatar { width: 168px; height: 168px; font-size: 3.6rem; } }

/* — badge row — */
.badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.badge { display: inline-flex; align-items: center; gap: .4rem; padding: .38rem .75rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); font-size: .8125rem; font-weight: 600; color: var(--ink-2); }
.badge .ico { width: 15px; height: 15px; color: var(--brand); }

/* 10 ────────────────────────────────────────────────── quote estimator ── */

.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-3); overflow: hidden;
}
.quote-head { padding: 1.25rem 1.35rem 1.1rem; background: var(--ink); color: #fff; }
.quote-head h2, .quote-head .qh { font-family: var(--sans); font-size: 1.0625rem; font-weight: 600; color: #fff; letter-spacing: -0.01em; margin: 0; }
.quote-head p { font-size: .8438rem; color: #A2B7CB; margin-top: .3rem; }
.quote-body { padding: 1.25rem 1.35rem 1.4rem; }
.quote-legend { display: block; font-size: .8125rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .7rem; }
.quote-legend + .quote-opts { margin-bottom: 1.3rem; }

.quote-opts { display: grid; gap: .5rem; }
.opt {
  position: relative; display: flex; align-items: flex-start; gap: .7rem;
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--r);
  cursor: pointer; transition: border-color .15s ease, background-color .15s ease;
}
.opt:hover { border-color: var(--brand-200); background: var(--brand-50); }
.opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.opt-box {
  width: 20px; height: 20px; flex: none; margin-top: 1px;
  border: 1.5px solid var(--faint); border-radius: 50%;
  display: grid; place-items: center; transition: border-color .15s, background-color .15s;
}
.opt input[type="checkbox"] + .opt-box { border-radius: 6px; }
.opt-box::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: #fff; transform: scale(0); transition: transform .15s ease; }
.opt input[type="checkbox"] + .opt-box::after { width: 11px; height: 6px; border-radius: 0; background: none; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg) scale(0); margin-top: -3px; }
.opt input:checked + .opt-box { border-color: var(--brand); background: var(--brand); }
.opt input:checked + .opt-box::after { transform: scale(1); }
.opt input[type="checkbox"]:checked + .opt-box::after { transform: rotate(-45deg) scale(1); }
.opt input:checked ~ .opt-text strong { color: var(--brand-700); }
.opt:has(input:checked) { border-color: var(--brand); background: var(--brand-50); }
.opt input:focus-visible + .opt-box { box-shadow: var(--focus); }
.opt-text { min-width: 0; flex: 1; }
.opt-text strong { display: block; font-size: .9375rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
.opt-text span { display: block; font-size: .8125rem; color: var(--muted); line-height: 1.4; margin-top: 1px; }
.opt-price { font-size: .8438rem; font-weight: 600; color: var(--muted); white-space: nowrap; font-variant-numeric: tabular-nums; margin-top: 1px; }

.stepper { display: flex; align-items: center; gap: .35rem; }
.stepper button { width: 32px; height: 32px; border: 1.5px solid var(--line); border-radius: 8px; display: grid; place-items: center; font-size: 1.15rem; font-weight: 600; color: var(--ink); line-height: 1; }
.stepper button:hover { border-color: var(--brand); color: var(--brand-700); }
.stepper output { min-width: 24px; text-align: center; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--ink); }
.count-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem .9rem; border: 1.5px solid var(--line); border-radius: var(--r); }
.count-row > div { min-width: 0; }
.count-row strong { display: block; font-size: .9063rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
.count-row span { display: block; font-size: .8125rem; color: var(--muted); }

.quote-total { margin-top: 1.35rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.quote-total-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.quote-total-row .label { font-size: .9375rem; font-weight: 600; color: var(--ink); }
.quote-total-row .amount { font-family: var(--serif); font-size: 2.15rem; font-weight: 600; color: var(--brand-700); letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.quote-total-sub { font-size: .8125rem; color: var(--muted); margin-top: .5rem; }
.quote-recurring { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-top: .6rem; font-size: .875rem; color: var(--body); }
.quote-recurring b { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.quote-card .btn { margin-top: 1.15rem; }

.quote-disclaimer { font-size: .75rem; line-height: 1.5; color: var(--muted-2); margin-top: .85rem; }

/* 11 ─────────────────────────────────────────────────────────────── forms ── */

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-2); padding: clamp(1.4rem, 4vw, 2.25rem); }

.field { margin-bottom: 1.15rem; }
.field:last-child { margin-bottom: 0; }
.field > label, .fieldset-legend {
  display: block; font-size: .9063rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem;
}
.field .hint { display: block; font-size: .8125rem; color: var(--muted); font-weight: 400; margin-top: -.2rem; margin-bottom: .45rem; }
.req { color: var(--danger); font-weight: 600; }
.optional { color: var(--muted-2); font-weight: 400; font-size: .8125rem; }

.input, .select, .textarea {
  width: 100%; min-height: 50px; padding: .72rem .9rem;
  font-size: 1rem;                     /* 16px+ stops iOS from zooming */
  background: #fff; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.select {
  appearance: none; -webkit-appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2361748A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center; background-size: 18px;
}
.input:hover, .select:hover, .textarea:hover { border-color: var(--faint); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-100); }
.input::placeholder, .textarea::placeholder { color: var(--muted-2); }
.input[aria-invalid="true"], .select[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: var(--danger); background: var(--danger-50); }

.field-row { display: grid; gap: 1.15rem; }
@media (min-width: 560px) { .field-row-2 { grid-template-columns: 1fr 1fr; } }

.err { display: flex; align-items: center; gap: .35rem; margin-top: .35rem; font-size: .8438rem; font-weight: 500; color: var(--danger); }
.err[hidden] { display: none; }
.err .ico { width: 15px; height: 15px; flex: none; }

.choice-grid { display: grid; gap: .55rem; }
@media (min-width: 560px) { .choice-grid-2 { grid-template-columns: 1fr 1fr; } }

.consent { display: flex; align-items: flex-start; gap: .65rem; font-size: .875rem; line-height: 1.55; color: var(--muted); }
.consent input[type="checkbox"] { width: 20px; height: 20px; flex: none; margin-top: 2px; accent-color: var(--brand); }
.consent a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 2px; }

/* honeypot — visually and semantically gone, but present in the DOM */
.hp { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }

.alert { display: flex; gap: .7rem; padding: 1rem 1.1rem; border-radius: var(--r-sm); font-size: .9375rem; margin-bottom: 1.5rem; }
.alert .ico { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.alert-error { background: var(--danger-50); border: 1px solid #F0CFCC; color: #8C231C; }
.alert-error .ico { color: var(--danger); }
.alert-ok { background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand-700); }
.alert-ok .ico { color: var(--brand); }

/* multi-step */
.steps-bar { display: flex; gap: .35rem; margin-bottom: 1.6rem; }
.steps-bar .seg { flex: 1; height: 4px; border-radius: 2px; background: var(--line); transition: background-color .25s ease; }
.steps-bar .seg.is-done { background: var(--brand); }
.step-label { font-size: .8125rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-600); margin-bottom: .5rem; }
.fstep[hidden] { display: none; }
.fstep h2 { font-family: var(--sans); font-size: 1.3rem; margin-bottom: .35rem; }
.fstep > p.sub { font-size: .9375rem; color: var(--muted); margin-bottom: 1.4rem; }
.fstep-nav { display: flex; gap: .65rem; margin-top: 1.75rem; }
.fstep-nav .btn { flex: 1; }
@media (min-width: 560px) { .fstep-nav .btn-back { flex: 0 0 auto; } }

/* 12 ─────────────────────────────────────────────────────────────── prose ── */

.prose { font-size: 1.0625rem; line-height: 1.72; color: var(--body); }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 {
  font-size: clamp(1.4rem, 3.2vw, 1.85rem); margin-top: 2.75rem; margin-bottom: -.1rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line-soft);
}
.prose > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: 1.1875rem; margin-top: 2rem; margin-bottom: -.2rem; }
.prose h4 { font-size: 1.0313rem; margin-top: 1.6rem; margin-bottom: -.35rem; color: var(--ink-2); }
.prose p { text-wrap: pretty; }
.prose a { color: var(--brand-600); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; text-decoration-color: var(--underline); }
.prose a:hover { text-decoration-color: var(--brand); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul, .prose ol { padding-left: 1.35rem; display: grid; gap: .55rem; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul > li { position: relative; padding-left: 1.4rem; }
.prose ul > li::before { content: ""; position: absolute; left: .3rem; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-200); }
.prose ol { list-style: decimal; }
.prose ol > li::marker { color: var(--brand-600); font-weight: 600; }
.prose li > ul, .prose li > ol { margin-top: .5rem; }
.prose blockquote { margin-block: 1.75rem; padding: .25rem 0 .25rem 1.25rem; border-left: 3px solid var(--brand-200); color: var(--ink-2); font-size: 1.0938rem; }
.prose hr { margin-block: 2.5rem; border: 0; border-top: 1px solid var(--line); }
.prose dl { display: grid; gap: .8rem; }
.prose dt { font-weight: 600; color: var(--ink); }
.prose dd { margin-left: 0; padding-left: 1rem; border-left: 2px solid var(--line); color: var(--muted); }
.prose .table-wrap { margin-block: 1.75rem; }
/* Safety net: a table added later without its .table-wrap must still fit a phone. */
@media (max-width: 620px) {
  .prose > table.tbl { table-layout: fixed; width: 100%; min-width: 0; }
  .prose > table.tbl th, .prose > table.tbl td { overflow-wrap: anywhere; padding-inline: .6rem; }
}
.prose h2 + .table-wrap, .prose h3 + .table-wrap { margin-top: 1.25rem; }
.prose .callout + h2 { margin-top: 2.75rem; }

/* article layout with sticky contents */
/* Grid children default to min-width:auto, which lets a wide table (or any
   min-width'd child) push the whole column past the viewport. Zero it so the
   scroll happens inside .table-wrap, where it belongs. */
.grid > *, .split > *, .doc > *, .price-grid > *, .steps > *, .compare > * { min-width: 0; }

.doc { display: grid; gap: 2.5rem; }
@media (min-width: 1000px) { .doc { grid-template-columns: minmax(0, 1fr) 250px; gap: 3.5rem; align-items: start; } .doc > .doc-aside { order: 2; } }

.toc { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.15rem 1.25rem; background: var(--surface); }
@media (min-width: 1000px) { .toc { position: sticky; top: calc(var(--header-h) + 20px); background: #fff; } }
.toc h2, .toc .toc-title { font-family: var(--sans); font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin: 0 0 .75rem; padding: 0; border: 0; }
.toc ol { list-style: none; padding: 0; display: grid; gap: .1rem; counter-reset: toc; }
.toc a { display: block; padding: .35rem 0; font-size: .875rem; line-height: 1.4; color: var(--body); text-decoration: none; border-left: 2px solid transparent; padding-left: .7rem; margin-left: -.7rem; }
.toc a:hover { color: var(--brand-700); }
.toc a.is-current { color: var(--brand-700); font-weight: 600; border-left-color: var(--brand); }

.doc-meta { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; padding: .9rem 1.1rem; margin-bottom: 2rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); font-size: .8438rem; color: var(--muted); }
/* Hanging icon rather than inline-flex: a sentence-length item must wrap, and a
   flex item containing a long text run will not. */
.doc-meta span { display: block; position: relative; padding-left: 1.4rem; max-width: 100%; min-width: 0; }
.doc-meta .ico { position: absolute; left: 0; top: .15em; width: 15px; height: 15px; color: var(--brand); }

.legal-nav { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 2rem; }
.legal-nav a { padding: .4rem .8rem; border: 1px solid var(--line); border-radius: var(--r-pill); font-size: .8438rem; font-weight: 500; color: var(--body); text-decoration: none; background: #fff; }
.legal-nav a:hover { border-color: var(--brand-200); color: var(--brand-700); }
.legal-nav a[aria-current="page"] { background: var(--ink); border-color: var(--ink); color: #fff; }

/* 13 ────────────────────────────────────────────────────────────── footer ── */

.site-footer { background: var(--ink); color: #93A9BE; padding-block: clamp(2.75rem, 6vw, 4rem) 2rem; font-size: .9063rem; }
.footer-top { display: grid; gap: 2.25rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.10); }
@media (min-width: 700px)  { .footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1000px) { .footer-top { grid-template-columns: minmax(0, 1fr) minmax(0, 2.15fr); gap: 3.5rem; } .footer-nav { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; } }

.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: #6E8299; }
.footer-about { margin-top: 1rem; font-size: .875rem; line-height: 1.65; max-width: 42ch; }
.footer-contact { margin-top: 1.35rem; display: grid; gap: .6rem; }
.footer-contact a, .footer-contact span { display: flex; align-items: flex-start; gap: .55rem; min-width: 0; color: #DCE6EF; text-decoration: none; font-size: .9063rem; }
.footer-contact a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-contact .ico { width: 17px; height: 17px; color: var(--brand-200); flex: none; margin-top: 2px; }

.footer-col h3 { font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #fff; margin-bottom: .9rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a { font-size: .875rem; color: #93A9BE; text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.footer-legal { padding-top: 1.75rem; display: grid; gap: 1.15rem; font-size: .8125rem; line-height: 1.65; color: #7C90A6; }
.footer-legal strong { color: #B9C9D8; font-weight: 600; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; align-items: center; justify-content: space-between; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.10); font-size: .8125rem; }
.footer-bottom a { color: #93A9BE; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* 14 ─────────────────────────────────────────────────────────── utilities ── */

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.75rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.nowrap { white-space: nowrap; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.ico { width: 20px; height: 20px; flex: none; }

/* 15 ────────────────────────────────────────────────── motion & printing ── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .btn:hover, a.card:hover, .card-hover:hover { transform: none; }
}

@media (forced-colors: active) {
  .btn, .card, .price-card, .opt, .input, .select, .textarea { border: 1px solid ButtonBorder; }
  .opt input:checked + .opt-box { forced-color-adjust: none; background: Highlight; }
}

@media print {
  .site-header, .topbar, .actionbar, .cta-band, .site-footer, .nav-panel, .toc, .btn, .quote-card { display: none !important; }
  body { font-size: 11pt; color: #000; padding: 0; }
  .wrap { max-width: none; padding: 0; }
  .prose a::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; word-break: break-all; }
  h1, h2, h3 { break-after: avoid; }
  .table-wrap, .callout { break-inside: avoid; }
}
