/* === RTS — Option 2 · Tonal Blue palette ===
   Same layout/components as the original; only the neutral tokens below
   change (paper + ink/navy + rules + tag fill) so everything shares the
   brand's blue hue. Swap this file out for styles-original.css to revert. */
:root {
  --ink: #0a1d43;
  --ink-2: #16306a;
  --ink-3: #45598a;
  --ink-4: #8893bd;
  --rule: #dee8f8;
  --rule-soft: #edf3fd;
  --paper: #f1f7ff;
  --paper-2: #f9fcff;
  --white: #ffffff;
  --brand: #0057ff;       /* RTS electric blue — from brand mark */
  --brand-ink: #0047d6;    /* darker brand blue for hover/active */
  --accent: var(--brand);  /* brand blue, threaded through as the single accent */
  --tag-bg: #e2ecfc;
  --ok: #2f6e4a;
  --shadow: 0 1px 0 rgba(12,27,42,0.04), 0 8px 30px -12px rgba(12,27,42,0.12);
  --radius: 4px;
  --font-sans: "Inter Tight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: #c9d3df;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 32px; max-width: 1240px; margin: 0 auto;
}
.topbar-left { display: flex; gap: 24px; }
.topbar-right { display: flex; gap: 24px; }
.topbar a:hover { color: var(--white); }
.topbar .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #6cc28b; margin-right: 8px; vertical-align: 1px; }

/* ---------- Header / Nav ---------- */
.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 50;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 32px;
  max-width: 1240px; margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.brand-text { min-width: 0; }
.brand-sub { white-space: nowrap; }
.brand-logo {
  height: 96px; width: auto;
  display: block;
  flex-shrink: 0;
}
/* Sized by width: the white SVG's tagline is a thin face — larger render keeps it clean. */
.footer .brand .brand-logo { width: 300px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-weight: 600; letter-spacing: -0.01em; font-size: 17px; white-space: nowrap; }
.brand-sub { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }

.nav-links { display: flex; gap: 24px; align-items: center; flex-shrink: 1; min-width: 0; }
.nav-links a {
  font-size: 14.5px; color: var(--ink-2); font-weight: 500;
  position: relative; padding: 6px 0;
}
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -23px;
  height: 2px; background: var(--brand);
}
.nav-cta {
  background: var(--brand); color: var(--white);
  padding: 11px 18px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500; border: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--brand-ink); }

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: end;
}
.hero-eyebrow {
  font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--brand);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow .line { flex: 0 0 36px; height: 1px; background: var(--brand); }
.hero h1 {
  font-size: 88px;
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0 0 32px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--ink-3);
  font-weight: 400;
}
.hero p.lede {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 0 36px;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 15px; font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.15s;
}
.btn-primary { background: var(--brand); color: var(--white); }
.btn-primary:hover { background: var(--brand-ink); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--white); }
.btn svg { width: 14px; height: 14px; }

.hero-side {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 28px;
  border-radius: var(--radius);
}
.hero-side h3 {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-3);
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.refer-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.refer-row:last-child { border-bottom: none; padding-bottom: 4px; }
.refer-row .label { font-size: 15px; font-weight: 500; }
.refer-row .meta { font-family: var(--font-mono); font-size: 11px; color: var(--ink-4); margin-top: 3px; }
.refer-row .arrow {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  transition: all 0.15s;
}
.refer-row:hover .arrow { background: var(--brand); border-color: var(--brand); color: var(--white); }

/* Hero side strip with "ECG-like" line graphic - very subtle */
.hero-meter {
  margin-top: 64px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.meter-item .num {
  font-size: 38px; font-weight: 500; letter-spacing: -0.02em;
  line-height: 1;
}
.meter-item .lbl {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 8px;
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; border-bottom: 1px solid var(--rule); }
.section-head {
  display: grid; grid-template-columns: 1fr 2fr; gap: 64px;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--brand);
}
.section-head h2 {
  font-size: 48px; letter-spacing: -0.025em;
  font-weight: 500; margin: 16px 0 0; line-height: 1.05;
  text-wrap: balance;
}
.section-head .desc {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 540px;
  align-self: end;
}

/* ---------- Tests grid ---------- */
.tests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}
.test-card {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  background: var(--paper);
  transition: background 0.2s;
}
.test-card:nth-child(3n) { border-right: none; }
.test-card:hover { background: var(--paper-2); }
.test-card .code {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-4); letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.test-card h3 {
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.test-card p {
  color: var(--ink-3); font-size: 14.5px; line-height: 1.55;
  margin: 0 0 28px;
}
.test-card .duration {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em;
  display: flex; gap: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--rule);
}

/* ---------- Locations ---------- */
.loc-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.loc-grid > * {
  border-right: 1px solid var(--rule);
  border-bottom: 12px solid var(--rule);
}
.loc-grid > *:nth-child(3n) { border-right: 1px solid var(--rule); }
.loc-card {
  background: var(--paper);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  gap: 12px;
  min-height: 200px;
  transition: background 0.15s;
  cursor: pointer;
}
.loc-card:hover { background: var(--white); }
.loc-card .loc-head { display: flex; justify-content: space-between; align-items: flex-start; }
.loc-card h3 { margin: 0; font-size: 19px; font-weight: 500; letter-spacing: -0.01em; }
.loc-card .loc-tag {
  font-family: var(--font-mono); font-size: 10px;
  background: var(--tag-bg); color: var(--ink-2);
  padding: 4px 8px; border-radius: 2px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.loc-card .loc-tag.head { background: var(--ink); color: var(--white); }
.loc-card .loc-addr { color: var(--ink-3); font-size: 14px; line-height: 1.5; flex: 1; }
.loc-card .loc-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
  padding-top: 12px; border-top: 1px solid var(--rule);
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.loc-card .loc-foot svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ---------- Process strip ---------- */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step .num {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-4); letter-spacing: 0.12em;
}
.process-step h4 {
  font-size: 22px; font-weight: 500; letter-spacing: -0.015em;
  margin: 16px 0 12px;
}
.process-step p { color: var(--ink-3); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* ---------- Referral pathways ---------- */
.path-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.path-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  min-height: 320px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.path-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}
.path-card .icon-stack {
  width: 48px; height: 48px; border: 1.5px solid var(--ink);
  border-radius: 50%; display: grid; place-items: center;
  margin-bottom: 28px;
}
.path-card .role {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.path-card h3 { font-size: 24px; font-weight: 500; letter-spacing: -0.02em; margin: 0 0 12px; }
.path-card p { color: var(--ink-3); font-size: 14.5px; line-height: 1.55; margin: 0 0 24px; flex: 1; }
.path-card .path-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink);
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.path-card .path-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #b8c2d0;
  padding: 80px 0 32px;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer h4 {
  font-family: var(--font-mono); font-size: 11px;
  color: #6c7c8f; text-transform: uppercase; letter-spacing: 0.12em;
  margin: 0 0 20px; font-weight: 400;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer a:hover { color: var(--white); }
.footer .footer-brand .brand-name { color: var(--white); }
.footer .footer-brand .brand-sub { color: #6c7c8f; }
.footer .blurb { color: #b8c2d0; font-size: 14px; line-height: 1.55; max-width: 320px; margin-top: 24px; }
.footer-bottom {
  margin-top: 64px; padding-top: 24px;
  border-top: 1px solid #1d3046;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; color: #6c7c8f;
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ---------- Page-specific: Locations finder ---------- */
.page-hero {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--rule);
}
.crumb {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--brand); text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: 64px; font-weight: 500; letter-spacing: -0.03em;
  line-height: 1; margin: 0 0 20px; max-width: 800px;
}
.page-hero .lede { font-size: 17px; color: var(--ink-2); max-width: 640px; margin: 0; }

.loc-toolbar {
  display: flex; gap: 16px; align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
}
.loc-search {
  flex: 1; max-width: 360px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.loc-search input {
  border: none; outline: none; font-family: inherit; font-size: 14px;
  flex: 1; background: transparent;
}
.loc-toolbar .pills { display: flex; gap: 8px; }
.pill {
  padding: 8px 14px; border: 1px solid var(--rule);
  border-radius: 999px; font-size: 13px;
  background: var(--white);
  cursor: pointer; transition: all 0.15s;
}
.pill.active { background: var(--brand); color: var(--white); border-color: var(--brand); }
.loc-toolbar .count { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); margin-left: auto; }

/* Map placeholder */
.map-block {
  background: #e9eef0;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  height: 380px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(73,95,114,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73,95,114,0.06) 1px, transparent 1px),
    linear-gradient(135deg, #dde3e6 0%, #eef3f5 100%);
  background-size: 30px 30px, 30px 30px, 100% 100%;
}
.map-block .map-pin {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.map-block .map-pin::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--white);
  transform: rotate(45deg);
}
.map-block .map-pin.active { background: var(--accent); }
.map-label {
  position: absolute; top: 16px; left: 16px;
  background: var(--white); padding: 8px 12px; border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  border: 1px solid var(--rule);
}

.locs-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 32px;
}
.locs-detail-grid .loc-card { min-height: 220px; padding: 32px; }

/* ---------- Single location ---------- */
.single-loc {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  padding: 56px 0;
}
.single-loc .map-block { height: 100%; min-height: 480px; }
.loc-meta {
  display: grid; grid-template-columns: 140px 1fr;
  border-top: 1px solid var(--rule);
}
.loc-meta dt, .loc-meta dd {
  padding: 18px 0; margin: 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
}
.loc-meta dt {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.1em;
  padding-top: 22px;
}

/* ---------- Forms ---------- */
.form-shell {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 64px;
  padding: 56px 0 96px;
}
.form-side { position: sticky; top: 96px; align-self: start; }
.form-side h3 {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.12em;
  margin: 0 0 16px;
}
.form-side .progress { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.form-side .progress-step {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 14px;
  color: var(--ink-3);
}
.form-side .progress-step.active { color: var(--ink); font-weight: 500; }
.form-side .progress-step .dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1px solid var(--rule); flex: 0 0 18px;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 9px; color: var(--ink-3);
}
.form-side .progress-step.active .dot { background: var(--brand); border-color: var(--brand); color: var(--white); }
.form-side .progress-step.done .dot { background: var(--ok); border-color: var(--ok); color: var(--white); }

.form-body { max-width: 720px; }
.form-section {
  border-top: 1px solid var(--rule);
  padding: 32px 0;
}
.form-section:first-child { border-top: none; padding-top: 0; }
.form-section h3 {
  font-size: 22px; font-weight: 500; letter-spacing: -0.015em;
  margin: 0 0 4px;
}
.form-section .help { font-size: 14px; color: var(--ink-3); margin: 0 0 24px; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  display: flex; gap: 4px;
}
.field label .req { color: var(--accent); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="date"], .field select, .field textarea {
  font-family: inherit; font-size: 15px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--ink);
  outline: none;
  transition: border 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,87,255,0.12); }
.field textarea { min-height: 100px; resize: vertical; font-family: inherit; }
.field .hint { font-family: var(--font-mono); font-size: 11px; color: var(--ink-4); }

.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 4px; }
.check {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--rule); background: var(--white);
  border-radius: var(--radius);
  cursor: pointer; transition: all 0.15s;
  font-size: 14px;
}
.check:hover { border-color: var(--ink-3); }
.check.checked { border-color: var(--brand); background: var(--brand); color: var(--white); }
.check input { display: none; }
.check .box {
  width: 16px; height: 16px; border: 1.5px solid currentColor;
  border-radius: 2px; flex: 0 0 16px;
  display: grid; place-items: center;
}
.check.checked .box::after { content: "✓"; font-size: 11px; }

.upload-zone {
  border: 1.5px dashed var(--rule);
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.upload-zone .ico {
  width: 36px; height: 36px; border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
}
.upload-zone p { margin: 0; font-size: 14px; color: var(--ink-2); }
.upload-zone .hint { font-family: var(--font-mono); font-size: 11px; color: var(--ink-4); }

.form-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  margin-top: 32px;
}
.form-foot .save { font-size: 14px; color: var(--ink-3); }

.toggle-row {
  display: flex; gap: 24px; padding: 14px 16px;
  background: var(--paper-2); border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.toggle-row .toggle {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; cursor: pointer;
}
.toggle-row .toggle .sw {
  width: 32px; height: 18px; border-radius: 999px;
  background: var(--rule); position: relative; transition: background 0.15s;
}
.toggle-row .toggle .sw::after {
  content: ""; position: absolute;
  width: 14px; height: 14px; border-radius: 50%; background: var(--white);
  top: 2px; left: 2px; transition: left 0.15s;
}
.toggle-row .toggle.on .sw { background: var(--brand); }
.toggle-row .toggle.on .sw::after { left: 16px; }

/* ---------- Tests page ---------- */
.tests-list {
  border-top: 1px solid var(--rule);
}
.test-row {
  display: grid; grid-template-columns: 100px 1fr 280px 140px;
  gap: 32px; align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
}
.test-row .code {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-4); letter-spacing: 0.08em; padding-top: 4px;
}
.test-row h3 {
  font-size: 28px; font-weight: 500; letter-spacing: -0.02em;
  margin: 0 0 8px; line-height: 1.1;
}
.test-row p { font-size: 15px; color: var(--ink-3); margin: 0; line-height: 1.55; max-width: 540px; }
.test-row .specs {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em;
  padding-top: 6px;
}
.test-row .specs .row { display: flex; justify-content: space-between; }
.test-row .specs .row .v { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid; grid-template-columns: 1fr 2fr; gap: 64px;
  padding: 64px 0;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 24px; }
.faq-q h4 { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; margin: 0; }
.faq-q .toggle-ico {
  width: 24px; height: 24px; border: 1px solid var(--rule);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 14px; color: var(--ink-3); flex: 0 0 24px;
}
.faq-a { color: var(--ink-3); font-size: 15px; line-height: 1.6; margin: 14px 0 0; max-width: 640px; }
.faq-cats {
  position: sticky; top: 96px; align-self: start;
  display: flex; flex-direction: column; gap: 4px;
}
.faq-cats .cat {
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 14px; color: var(--ink-3);
  display: flex; justify-content: space-between;
  cursor: pointer;
}
.faq-cats .cat.active { color: var(--ink); font-weight: 500; }
.faq-cats .cat .n { font-family: var(--font-mono); font-size: 11px; color: var(--ink-4); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  padding: 64px 0 96px;
}
.contact-card {
  border: 1px solid var(--rule);
  background: var(--white);
  padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
}
.contact-line {
  display: flex; flex-direction: column; gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule-soft);
}
.contact-line:last-child { border-bottom: none; padding-bottom: 0; }
.contact-line .lbl {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.1em;
}
.contact-line .v { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.contact-line .sub { font-size: 13px; color: var(--ink-3); }

/* ---------- Misc ---------- */
.placeholder-img {
  background:
    repeating-linear-gradient(
      45deg, #e8ecef 0 8px, #eef2f4 8px 16px
    );
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.1em;
  border-radius: var(--radius);
}

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-3);
  padding: 4px 8px; background: var(--tag-bg); border-radius: 2px;
}
