/* ============================================================
   Results Over Resumes — Design System
   Brand: navy #1C2448 · gold #FFDB15 · ink near-black
   External stylesheet (cacheable). Critical above-the-fold +
   responsive + print rules are inlined per-page in <head>.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --gold: #ffdb15;
  --gold-600: #e6c200;
  --gold-700: #c9a800;
  --navy: #1c2448;
  --navy-800: #161d3a;
  --navy-900: #10162b;
  --ink: #0e1018;
  --text: #1d2231;
  --muted: #5b6275;
  --line: #e6e8ef;
  --bg: #ffffff;
  --bg-soft: #f5f6fb;
  --bg-soft-2: #eef0f8;
  --white: #ffffff;

  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(16, 22, 43, 0.06), 0 2px 6px rgba(16, 22, 43, 0.05);
  --shadow-md: 0 8px 24px rgba(16, 22, 43, 0.1);
  --shadow-lg: 0 24px 60px rgba(16, 22, 43, 0.18);

  --font-display: "Anton", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
h4, h5, h6 { font-family: var(--font-body); font-weight: 700; color: var(--ink); line-height: 1.25; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: var(--ink); }
.text-gold { color: var(--gold-700); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-sm { padding: 44px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #d7dbe8; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--ink { background: var(--ink); color: #c9cdda; }
.section--ink h2, .section--ink h3 { color: #fff; }

.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { color: var(--muted); font-size: 1.075rem; }
.section--navy .section-head p, .section--ink .section-head p { color: #aab0c4; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 14px;
}
.section--navy .eyebrow, .section--ink .eyebrow { color: var(--gold); }
.eyebrow::before { content: ""; display: inline-block; width: 26px; height: 3px; background: var(--gold); vertical-align: middle; margin-right: 10px; border-radius: 2px; }

.lead { font-size: 1.2rem; color: var(--muted); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--gold); color: var(--ink); font-weight: 700;
  padding: 10px 18px; border-radius: 8px; z-index: 2000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Focus visibility ---------- */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  line-height: 1; text-align: center;
  padding: 16px 28px; min-height: 52px;
  border: 2px solid transparent; border-radius: var(--radius-pill);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 24px rgba(255, 219, 21, 0.35); }
.btn-gold:hover { background: var(--gold-600); box-shadow: 0 14px 30px rgba(255, 219, 21, 0.45); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-800); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.btn-outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-lg { padding: 18px 36px; min-height: 58px; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 44px; width: auto; }
.nav-links { display: none; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 600; font-size: 0.97rem; color: var(--text);
  padding: 10px 14px; border-radius: 10px; min-height: 44px; display: inline-flex; align-items: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { background: var(--bg-soft); color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after { content: ""; display: block; }
.nav-cta { display: none; }
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
}
.nav-toggle span { display: block; width: 22px; height: 2.5px; background: var(--ink); margin: 0 auto; border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 10px 20px 22px; border-bottom: 1px solid var(--line); background: #fff;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 12px; font-weight: 600; border-radius: 10px; min-height: 44px; display: flex; align-items: center; }
.mobile-menu a:hover { background: var(--bg-soft); }
.mobile-menu .btn { margin-top: 10px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy) 60%, #232c54 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 85% 15%, rgba(255, 219, 21, 0.16), transparent 40%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; gap: 36px; padding: 60px 0 70px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 .hl { color: var(--gold); }
.hero p { color: #c2c8db; font-size: 1.2rem; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 26px; color: #aab0c4; font-size: 0.92rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--gold); flex-shrink: 0; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -18px; left: -10px; background: var(--gold); color: var(--ink);
  padding: 16px 20px; border-radius: var(--radius); box-shadow: var(--shadow-md); max-width: 220px;
}
.hero-badge strong { font-family: var(--font-display); font-size: 1.7rem; display: block; line-height: 1; }
.hero-badge span { font-size: 0.82rem; font-weight: 600; }

/* ---------- Stats band ---------- */
.stats { display: grid; gap: 24px; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--gold); line-height: 1; }
.section:not(.section--navy):not(.section--ink) .stat .num { color: var(--navy); }
.stat .label { font-weight: 600; color: var(--muted); margin-top: 6px; font-size: 0.95rem; }
.section--navy .stat .label, .section--ink .stat .label { color: #aab0c4; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 54px; height: 54px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 219, 21, 0.16); color: var(--navy); margin-bottom: 18px;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.18rem; text-transform: none; letter-spacing: 0; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 22px; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px 28px; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); line-height: 1; display: block; margin-bottom: 12px;
}
.step h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.16rem; text-transform: none; letter-spacing: 0; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Feature split ---------- */
.split { display: grid; gap: 40px; align-items: center; }
.split h2 { margin-bottom: 20px; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.checklist { display: grid; gap: 14px; margin-top: 18px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .tick {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; color: var(--ink); margin-top: 2px;
}
.checklist .tick svg { width: 15px; height: 15px; }
.checklist b { display: block; color: var(--ink); }
.checklist span { color: var(--muted); font-size: 0.97rem; }

/* ---------- Testimonials ---------- */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column; height: 100%;
}
.quote .mark { font-family: var(--font-display); font-size: 3.4rem; color: var(--gold); line-height: 0.6; height: 28px; }
.quote blockquote { font-size: 1.05rem; color: var(--text); margin: 8px 0 22px; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 14px; }
.quote .avatar { width: 58px; height: 58px; border-radius: 50%; background: var(--navy); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; flex-shrink: 0; }
.quote img.avatar { object-fit: cover; object-position: center top; }

/* ---------- Team cards ---------- */
.team-grid { display: grid; gap: 28px; }
.team-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.18s ease, box-shadow 0.2s ease; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card .photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 18%; background: var(--bg-soft); }
.team-card .body { padding: 26px 28px 30px; }
.team-card h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.3rem; text-transform: none; letter-spacing: 0; margin-bottom: 3px; }
.team-card .role { display: block; color: var(--gold-700); font-weight: 700; font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 14px; }
.team-card p { color: var(--muted); font-size: 0.98rem; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* Horizontal variant — used when a single member is shown (photo left, bio right) */
@media (min-width: 640px) {
  .team-card.horizontal { flex-direction: row; align-items: stretch; }
  .team-card.horizontal picture { display: block; width: 320px; flex-shrink: 0; }
  .team-card.horizontal .photo { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
  .team-card.horizontal .body { display: flex; flex-direction: column; justify-content: center; padding: 34px 36px; }
}
.quote .who b { display: block; color: var(--ink); }
.quote .who span { color: var(--muted); font-size: 0.9rem; }
.stars { color: var(--gold); margin-bottom: 4px; letter-spacing: 2px; }

/* ---------- Resource cards ---------- */
.resource { display: flex; gap: 16px; align-items: flex-start; }
.resource .ricon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--navy); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; }
.resource h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.08rem; text-transform: none; letter-spacing: 0; margin-bottom: 4px; }
.resource p { color: var(--muted); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-900), var(--navy) 70%, #2a3360);
  color: #fff; border-radius: var(--radius-lg); padding: 50px 36px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(255, 219, 21, 0.2), transparent 70%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: #c2c8db; max-width: 560px; margin: 12px auto 26px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md); }
.form-grid { display: grid; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.col-2 { grid-column: span 1; }
.field label { font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.field label .req { color: #d12f2f; }
.field .hint { font-size: 0.82rem; color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--text);
  padding: 13px 15px; min-height: 50px; border: 1.5px solid var(--line); border-radius: 12px; background: #fcfcfe;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255, 219, 21, 0.25); }
.field input[type="file"] { padding: 11px 14px; background: #fcfcfe; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d12f2f; }
.field .error-text { color: #d12f2f; font-size: 0.82rem; display: none; }
.field.invalid .error-text { display: block; }

.consent { display: flex; gap: 12px; align-items: flex-start; }
.consent input { width: 22px; height: 22px; min-height: 22px; flex-shrink: 0; margin-top: 2px; accent-color: var(--navy); }
.consent label { font-weight: 500; font-size: 0.92rem; color: var(--muted); }
.consent a { color: var(--navy); font-weight: 700; text-decoration: underline; }

/* honeypot — visually hidden but not display:none (so bots fill it) */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-alert { border-radius: 12px; padding: 14px 18px; font-weight: 600; margin-bottom: 20px; display: none; }
.form-alert.show { display: block; }
.form-alert.success { background: #e7f6ef; color: #1c6b4b; border: 1px solid #b6e3cd; }
.form-alert.error { background: #fdecec; color: #a52121; border: 1px solid #f3c2c2; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; padding: 20px 22px; min-height: 44px;
  font-weight: 700; font-size: 1.05rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { flex-shrink: 0; transition: transform 0.25s ease; color: var(--gold-700); }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--muted); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(135deg, var(--navy-900), var(--navy)); color: #fff; padding: 54px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 10%, rgba(255, 219, 21, 0.14), transparent 45%); }
.page-hero h1 { color: #fff; position: relative; }
.page-hero p { color: #c2c8db; max-width: 640px; margin-top: 12px; position: relative; }
.breadcrumb { position: relative; font-size: 0.86rem; color: #9aa1b8; margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: #6e7693; margin: 0 6px; }

/* ---------- Legal / long-form content ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-family: var(--font-body); font-weight: 800; font-size: 1.5rem; text-transform: none; letter-spacing: 0; margin: 34px 0 12px; color: var(--ink); }
.prose h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; text-transform: none; letter-spacing: 0; margin: 22px 0 8px; }
.prose p, .prose li { color: var(--text); }
.prose ul { list-style: disc; padding-left: 22px; margin: 0 0 1rem; display: grid; gap: 6px; }
.prose a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.updated { color: var(--muted); font-style: italic; font-size: 0.95rem; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 90px 0; }
.notfound .code { font-family: var(--font-display); font-size: clamp(6rem, 22vw, 12rem); color: var(--gold); line-height: 0.9; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #9aa1b8; padding: 60px 0 28px; }
.footer-grid { display: grid; gap: 36px; margin-bottom: 40px; }
.footer-brand img { height: 46px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: #8990a6; font-size: 0.95rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; letter-spacing: 0.5px; margin-bottom: 16px; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: #9aa1b8; font-size: 0.95rem; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; margin-bottom: 10px; }
.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.social { display: flex; gap: 12px; margin-top: 18px; }
.social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); display: inline-flex; align-items: center; justify-content: center; color: #cfd3e0; transition: background 0.15s ease, color 0.15s ease; }
.social a:hover { background: var(--gold); color: var(--ink); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 22px; display: flex; flex-direction: column; gap: 12px; font-size: 0.86rem; color: #7a8199; }
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; width: 50px; height: 50px; border-radius: 50%;
  background: var(--gold); color: var(--ink); border: none; box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s; z-index: 900;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold-600); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   Responsive — mobile-first (min-width breakpoints)
   ============================================================ */
@media (min-width: 480px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .form-grid.two { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .section { padding: 84px 0; }
  .grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .hero-inner { padding: 80px 0 90px; }
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .steps.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; }
  .hero p { font-size: 1.28rem; }
}
@media (min-width: 1200px) {
  .container { padding: 0 24px; }
}

/* ============================================================
   Print
   ============================================================ */
@media print {
  .site-header, .nav-toggle, .mobile-menu, .to-top, .site-footer .social,
  .hero-actions, .cta-band, .form-card, .nav-cta { display: none !important; }
  body { color: #000; background: #fff; font-size: 12pt; }
  .hero, .page-hero, .section--navy, .section--ink { background: #fff !important; color: #000 !important; }
  .hero h1, .page-hero h1, h1, h2, h3 { color: #000 !important; }
  a { color: #000 !important; text-decoration: underline; }
  .container { max-width: 100%; }
  .card, .step, .quote { box-shadow: none; border: 1px solid #ccc; }
}
