/* ============================================================================
   QuickBooks File Repair — bespoke premium theme
   A service of E-Tech. Hand-authored (no utility framework) for full control.
   Design language: authoritative ink navy, recovery-emerald accent, restrained
   gold highlight, generous whitespace, Fraunces display serif + Inter body.
   ========================================================================== */

/* ---- Fonts ---------------------------------------------------------------- */
@font-face { font-family: 'Inter'; font-style: normal; font-display: swap; }

:root {
  /* palette */
  --ink:        #0b1d33;   /* primary text / headings */
  --ink-2:      #38485a;   /* body text */
  --muted:      #6a7889;   /* secondary text */
  --line:       #e4eae7;   /* hairline borders */
  --line-2:     #d6deef;   /* deeper hairline */
  --bg:         #ffffff;
  --bg-soft:    #f5f8f6;   /* cool off-white sections */
  --bg-mist:    #eef3f1;
  --brand:      #0f9d6e;   /* recovery emerald */
  --brand-700:  #0a7d57;
  --brand-900:  #075138;
  --brand-tint: #e7f5ef;
  --gold:       #c79a3e;   /* premium highlight, used sparingly */
  --gold-tint:  #f7efdc;
  --danger:     #c2410c;

  /* type */
  --serif: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* spacing / shape */
  --radius:   14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --maxw:   1180px;
  --gut:    clamp(1.1rem, 4vw, 2.2rem);

  /* elevation */
  --sh-1: 0 1px 2px rgba(11,29,51,.06), 0 1px 1px rgba(11,29,51,.04);
  --sh-2: 0 6px 18px -8px rgba(11,29,51,.18), 0 2px 6px -2px rgba(11,29,51,.08);
  --sh-3: 0 24px 60px -22px rgba(11,29,51,.32), 0 8px 22px -12px rgba(11,29,51,.18);
  --ring: 0 0 0 4px rgba(15,157,110,.18);
}

/* ---- Reset / base --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-700); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brand-900); }
strong, b { color: var(--ink); font-weight: 650; }
h1,h2,h3,h4 { font-family: var(--serif); color: var(--ink); line-height: 1.12;
  font-weight: 560; letter-spacing: -.01em; }
::selection { background: var(--brand-tint); color: var(--brand-900); }

/* ---- Layout --------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.container.narrow { max-width: 920px; }
.section { padding-block: clamp(3.2rem, 7vw, 6rem); }
.section.tight { padding-block: clamp(2.2rem, 5vw, 3.6rem); }
.bg-soft { background: var(--bg-soft); }
.bg-mist { background: var(--bg-mist); }
.bg-ink  { background:
  radial-gradient(1100px 500px at 12% -10%, #12325a 0%, transparent 55%),
  radial-gradient(900px 520px at 100% 0%, #0c6a4c 0%, transparent 50%),
  #081726; color: #dbe6f1; }
.bg-ink h1,.bg-ink h2,.bg-ink h3 { color: #fff; }

/* eyebrow / kicker */
.kicker { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--sans);
  font-size: .76rem; font-weight: 680; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-700); }
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--brand); border-radius: 2px; }
.bg-ink .kicker { color: #6ee7b7; }
.bg-ink .kicker::before { background: #6ee7b7; }

.lede { font-size: clamp(1.08rem, 1.6vw, 1.24rem); color: var(--ink-2); max-width: 56ch; }
.bg-ink .lede { color: #b9c8d8; }

/* ---- Buttons -------------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 620; font-size: .98rem; line-height: 1;
  padding: .92em 1.5em; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease; white-space: nowrap; }
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: linear-gradient(180deg, var(--brand) 0%, var(--brand-700) 100%);
  color: #fff; box-shadow: var(--sh-2); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--sh-3); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--sh-1); }
.btn-ghost:hover { color: var(--ink); border-color: #c6d3cc; transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.24); }
.btn-light:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-lg { font-size: 1.05rem; padding: 1.05em 1.8em; }
.btn:focus-visible { outline: none; box-shadow: var(--ring); }

/* ---- Header --------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line); }
.site-header .bar { display: flex; align-items: center; gap: 1.2rem; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--serif);
  font-weight: 600; font-size: 1.2rem; color: var(--ink); letter-spacing: -.01em; }
.brand:hover { color: var(--ink); }
.brand .mark { width: 34px; height: 34px; flex: none; }
/* Stack the wordmark over the tagline; nowrap so "File Repair" never breaks to a 2nd line. */
.brand > span { display: inline-flex; flex-direction: column; justify-content: center;
  line-height: 1.05; white-space: nowrap; }
.brand b { color: var(--brand-700); font-weight: 700; margin-left: .22em; }
.brand small { font-family: var(--sans); font-size: .56rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 3px; }
.nav { margin-left: auto; display: flex; align-items: center; gap: .35rem; }
.navlink { font-family: var(--sans); font-size: .95rem; font-weight: 540; color: var(--ink-2);
  padding: .5rem .8rem; border-radius: 8px; }
.navlink:hover { color: var(--ink); background: var(--bg-soft); }
.navlink.active { color: var(--brand-700); }
.nav .btn { margin-left: .5rem; }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; border-radius: 10px; color: var(--ink); align-items: center; justify-content: center; }
.menu-toggle svg { width: 22px; height: 22px; }
.mobile-nav { display: none; border-bottom: 1px solid var(--line); background: #fff; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: .85rem 0; border-top: 1px solid var(--line); color: var(--ink);
  font-weight: 540; }
.mobile-nav a:first-child { border-top: none; }

@media (max-width: 880px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ---- Hero ----------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; padding-block: clamp(3.4rem, 7vw, 6.2rem); }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); letter-spacing: -.02em; }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero p.lede { margin-top: 1.25rem; }
.hero-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.hero-note { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 1.1rem; color: var(--muted);
  font-size: .9rem; }
.hero-note span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-note svg { width: 16px; height: 16px; color: var(--brand); }
.hero-orbs::before, .hero-orbs::after { content: ""; position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .5; z-index: 0; }
.hero-orbs::before { width: 460px; height: 460px; background: var(--brand-tint); top: -120px; right: -80px; }
.hero-orbs::after { width: 360px; height: 360px; background: var(--gold-tint); bottom: -140px; left: -60px; opacity: .4; }

/* the “recovery card” next to the hero */
.recovery-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--sh-3); padding: 1.6rem; position: relative; }
.recovery-card .rc-top { display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.rc-badge { display: inline-flex; align-items: center; gap: .45rem; background: var(--brand-tint);
  color: var(--brand-900); font-size: .78rem; font-weight: 650; padding: .35rem .7rem; border-radius: 999px; }
.rc-badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); display: inline-block;
  box-shadow: 0 0 0 4px rgba(15,157,110,.18); }
.rc-row { display: flex; align-items: center; gap: .8rem; padding: .8rem 0; border-bottom: 1px dashed var(--line); }
.rc-row:last-child { border-bottom: none; }
.rc-row .ic { width: 38px; height: 38px; flex: none; border-radius: 10px; background: var(--bg-soft);
  display: grid; place-items: center; color: var(--brand-700); }
.rc-row .ic svg { width: 20px; height: 20px; }
.rc-row .t { font-weight: 600; color: var(--ink); font-size: .96rem; }
.rc-row .s { font-size: .85rem; color: var(--muted); }
.rc-row .amt { margin-left: auto; font-family: var(--serif); font-size: 1.15rem; color: var(--ink); }

/* ---- Trust strip ---------------------------------------------------------- */
.trust { border-block: 1px solid var(--line); background: var(--bg-soft); }
.trust .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: 1.8rem; }
.trust .stat { text-align: center; }
.trust .stat b { display: block; font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--ink); font-weight: 560; }
.trust .stat span { font-size: .84rem; color: var(--muted); letter-spacing: .02em; }
@media (max-width: 720px){ .trust .container { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; } }

/* ---- Section heads -------------------------------------------------------- */
.sec-head { max-width: 62ch; margin-bottom: 2.4rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-top: .7rem; }
.sec-head p { margin-top: .9rem; color: var(--ink-2); }

/* ---- Card grids ----------------------------------------------------------- */
.grid { display: grid; gap: 1.1rem; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px){ .grid.cols-3,.grid.cols-4 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 600px){ .grid.cols-2,.grid.cols-3,.grid.cols-4 { grid-template-columns: 1fr; } }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--sh-1); transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: #cfded6; }
.card .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand-tint); color: var(--brand-700); margin-bottom: 1rem; }
.card .ic svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.18rem; }
.card p { margin-top: .5rem; font-size: .95rem; color: var(--ink-2); }
.card .more { margin-top: auto; padding-top: 1rem; font-weight: 600; font-size: .92rem;
  display: inline-flex; align-items: center; gap: .35rem; }
.card .more svg { width: 15px; height: 15px; transition: transform .15s ease; }
.card:hover .more svg { transform: translateX(3px); }
.card.feature { border-color: var(--brand); box-shadow: var(--sh-2); }

/* ---- Steps / process ------------------------------------------------------ */
.steps { counter-reset: step; display: grid; gap: 1.1rem; grid-template-columns: repeat(4,1fr); }
@media (max-width: 920px){ .steps { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 520px){ .steps { grid-template-columns: 1fr;} }
.step { position: relative; padding: 1.5rem 1.3rem 1.3rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); }
.step::before { counter-increment: step; content: counter(step,decimal-leading-zero);
  font-family: var(--serif); font-size: 1rem; color: var(--brand-700); font-weight: 600;
  background: var(--brand-tint); width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  margin-bottom: .9rem; }
.step h3 { font-size: 1.05rem; }
.step p { font-size: .9rem; margin-top: .4rem; color: var(--ink-2); }

/* ---- Pricing -------------------------------------------------------------- */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; max-width: 880px; margin-inline: auto; }
@media (max-width: 720px){ .pricing { grid-template-columns: 1fr; } }
.price-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--sh-2); display: flex; flex-direction: column; }
.price-card.best { border: 1.5px solid var(--brand); box-shadow: var(--sh-3); }
.price-card .tag { position: absolute; top: -13px; left: 2rem; background: var(--brand); color: #fff;
  font-size: .72rem; font-weight: 680; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 999px; }
.price-card h3 { font-size: 1.3rem; }
.price-card .turn { color: var(--muted); font-size: .92rem; margin-top: .25rem; }
.price-card .amt { font-family: var(--serif); font-size: 3rem; color: var(--ink); margin: 1.1rem 0 .2rem;
  font-weight: 560; letter-spacing: -.02em; }
.price-card .amt sup { font-size: 1.1rem; top: -1.1rem; color: var(--muted); }
.price-card .amt small { font-size: .95rem; color: var(--muted); font-family: var(--sans); }
.price-card ul { list-style: none; padding: 0; margin: 1.1rem 0 1.6rem; display: grid; gap: .65rem; }
.price-card li { display: flex; gap: .6rem; font-size: .95rem; color: var(--ink-2); }
.price-card li svg { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: .15rem; }
.price-card .btn { margin-top: auto; width: 100%; }
.price-foot { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 1.6rem; }

/* ---- Guarantee band ------------------------------------------------------- */
.band { border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3rem); display: grid;
  grid-template-columns: auto 1fr auto; gap: 1.6rem; align-items: center; }
.band .seal { width: 88px; height: 88px; flex: none; }
.band h2 { font-size: clamp(1.4rem,2.6vw,1.9rem); }
.band p { margin-top: .5rem; color: inherit; opacity: .9; }
@media (max-width: 760px){ .band { grid-template-columns: 1fr; text-align: center; }
  .band .seal { margin-inline: auto; } }

/* ---- Breadcrumbs ---------------------------------------------------------- */
.crumbs { font-size: .85rem; color: var(--muted); padding-block: 1rem 0; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand-700); }
.crumbs span { color: var(--ink-2); }

/* ---- Prose (reskinned legacy content) ------------------------------------- */
.content { padding-block: clamp(1.6rem, 3vw, 2.6rem) clamp(3rem, 6vw, 5rem); }
.prose { font-size: 1.04rem; color: var(--ink-2); }
.prose > *:first-child { margin-top: 0; }
.prose h1 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin: 0 0 1rem; }
.prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); margin: 2.4rem 0 .9rem; padding-top: .3rem; }
.prose h3 { font-size: 1.25rem; margin: 1.8rem 0 .6rem; }
.prose h4 { font-size: 1.06rem; margin: 1.4rem 0 .5rem; font-family: var(--sans); font-weight: 680; color: var(--ink); }
.prose p { margin: 0 0 1.05rem; }
.prose ul, .prose ol { margin: 0 0 1.2rem; padding-left: 1.3rem; }
.prose li { margin: .4rem 0; padding-left: .25rem; }
.prose ul li::marker { color: var(--brand); }
.prose a { font-weight: 540; text-decoration: underline; text-decoration-color: rgba(15,157,110,.32);
  text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--brand); }
.prose img { border-radius: var(--radius-sm); border: 1px solid var(--line); margin: 1.4rem 0; }
.prose blockquote { margin: 1.5rem 0; padding: .4rem 0 .4rem 1.3rem; border-left: 3px solid var(--brand);
  color: var(--ink); font-style: italic; }
.prose code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em;
  background: var(--bg-mist); padding: .15em .4em; border-radius: 5px; color: var(--brand-900); }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 2.2rem 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: .95rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: .65rem .8rem; text-align: left; vertical-align: top; }
.prose thead th { background: var(--bg-soft); color: var(--ink); font-weight: 650; }
.prose tbody tr:nth-child(even) { background: #fbfdfc; }

/* article shell: content + sticky aside */
.article { display: grid; grid-template-columns: minmax(0,1fr) 304px; gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start; }
@media (max-width: 960px){ .article { grid-template-columns: 1fr; } }
.aside { position: sticky; top: 92px; display: grid; gap: 1.1rem; }
@media (max-width: 960px){ .aside { position: static; } }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--sh-1); }
.aside-card.brandy { background: linear-gradient(180deg, #0c2742, #0a1b2e); color: #cfe0ee; border-color: transparent; }
.aside-card.brandy h4, .aside-card.brandy .amt { color: #fff; }
.aside-card h4 { font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted); font-weight: 700; margin-bottom: .8rem; }
.aside-card.brandy h4 { color: #84e3bd; }
.aside-card .amt { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); }
.aside-card .amt small { font-family: var(--sans); font-size: .85rem; color: inherit; opacity: .7; }
.aside-card p { font-size: .9rem; margin: .5rem 0 1rem; }
.aside-card .btn { width: 100%; }
.aside-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.aside-list a { display: flex; gap: .5rem; font-size: .92rem; color: var(--ink-2); }
.aside-list a:hover { color: var(--brand-700); }
.aside-list svg { width: 16px; height: 16px; color: var(--brand); flex: none; margin-top: .15rem; }

/* legacy table reset inside prose (old site used layout tables) */
.prose table.form-noindent, .prose table[border="0"] { border: none; }
.prose table.form-noindent td, .prose table[border="0"] td { border: none; }

/* the styled Stripe pay buttons injected into the purchase page */
.pay-btn { display: inline-flex; align-items: center; gap: .55rem; background: linear-gradient(180deg, var(--brand) 0%, var(--brand-700) 100%);
  color: #fff !important; font-weight: 640; padding: .85em 1.5em; border-radius: 999px; box-shadow: var(--sh-2);
  text-decoration: none !important; transition: transform .12s ease, box-shadow .2s ease; }
.pay-btn:hover { transform: translateY(-2px); box-shadow: var(--sh-3); color: #fff !important; }
.pay-btn svg { width: 18px; height: 18px; }
.pay-secure { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; color: var(--muted); margin-top: .55rem; }
.pay-secure svg { width: 14px; height: 14px; color: var(--brand); }

/* ---- Size pricing matrix (purchase page) ---------------------------------- */
.size-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 1.2rem 0 .6rem; }
.size-row { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 1rem; align-items: center;
  padding: .85rem 1.1rem; border-top: 1px solid var(--line); }
.size-row:first-child { border-top: none; }
.size-row.size-head { background: var(--bg-soft); font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted); }
.size-row.size-head span { text-align: center; }
.size-row.size-head span:first-child { text-align: left; }
.size-row:not(.size-head):nth-child(odd) { background: #fbfdfc; }
.size-label { font-weight: 600; color: var(--ink); font-family: var(--serif); font-size: 1.05rem; }
.size-label small { display: inline-block; font-family: var(--sans); font-size: .72rem; font-weight: 700;
  color: var(--brand-700); background: var(--brand-tint); padding: .1rem .45rem; border-radius: 999px; margin-left: .35rem; vertical-align: middle; }
.pay-btn.pay-sm { width: 100%; justify-content: center; padding: .62em 1em; font-size: .92rem; }
.pay-btn.pay-sm svg { width: 15px; height: 15px; }
.pay-btn .svc-tag { display: none; }   /* desktop: column headers convey service */
.size-note { font-size: .88rem; color: var(--muted); }
@media (max-width: 640px) {
  .size-row { grid-template-columns: 1fr; gap: .55rem; text-align: center; padding: 1rem; }
  .size-row.size-head { display: none; }
  .size-label { font-size: 1.1rem; }
  .pay-btn .svc-tag { display: inline; }  /* mobile: label each button */
}

/* ---- FAQ ------------------------------------------------------------------ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .3rem 1.3rem;
  box-shadow: var(--sh-1); }
.faq summary { cursor: pointer; list-style: none; padding: 1rem 0; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; gap: 1rem; align-items: center; font-size: 1.02rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--serif); font-size: 1.4rem; color: var(--brand); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 1.1rem; color: var(--ink-2); font-size: .96rem; }

/* ---- Footer --------------------------------------------------------------- */
.site-footer { background: #081726; color: #9fb2c4; padding-block: clamp(3rem,6vw,4.5rem) 2rem; margin-top: 0; }
.site-footer .brand { color: #fff; }
.site-footer .brand b { color: #6ee7b7; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-grid .blurb { margin-top: .9rem; font-size: .9rem; color: #8095a8; max-width: 34ch; }
.footer-grid h4 { color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-grid a { color: #9fb2c4; font-size: .92rem; }
.footer-grid a:hover { color: #fff; }
.footer-base { padding-top: 1.8rem; font-size: .82rem; color: #6f8497; line-height: 1.7; }
.footer-base a { color: #9fb2c4; }
.pay-row { display: flex; align-items: center; gap: .6rem; margin-top: 1rem; color: #6f8497; font-size: .8rem; }
.pay-row svg { height: 22px; width: auto; opacity: .85; }

/* ---- misc / a11y ---------------------------------------------------------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; } .mt-1 { margin-top: 1rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2rem; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: .6rem 1rem; border-radius: 8px; z-index: 100; box-shadow: var(--sh-2); }
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }

/* reveal-on-scroll (progressive; no-JS shows everything) */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.no-js .reveal { opacity: 1; transform: none; }
