:root {
  --navy: #0c1e3d;
  --navy-2: #163056;
  --teal: #0c1e3d;
  --teal-dark: #8c6d3f;
  --sand: #f7f5f0;
  --sand-2: #efebe3;
  --ink: #1a1a1a;
  --ink-soft: #3d3d3d;
  --muted: #6b6b6b;
  --line: #e5e0d6;
  --card: #ffffff;
  --white: #ffffff;
  --gold: #b08d57;
  --gold-deep: #8c6d3f;
  --danger: #b42318;
  --shadow: 0 14px 40px rgba(12, 30, 61, 0.07);
  --shadow-lg: 0 24px 60px rgba(12, 30, 61, 0.11);
  --font: "Outfit", system-ui, -apple-system, sans-serif;
  --sans: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--sand);
  color: var(--ink);
  font-size: 19px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font);
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-weight: 650;
}
a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--navy); }
.wrap { width: min(1080px, calc(100% - 2.5rem)); margin-inline: auto; }

.skip-link {
  position: absolute; left: 1rem; top: -100px;
  background: var(--navy); color: var(--white);
  padding: .85rem 1.15rem; z-index: 200; border-radius: 10px; font-weight: 700;
}
.skip-link:focus, .skip-link:focus-visible { top: 1rem; outline: 3px solid var(--teal); outline-offset: 3px; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 108px;
  gap: 1rem 1.25rem;
}
.logo {
  display: inline-flex; align-items: center; text-decoration: none; color: var(--ink);
  max-width: min(560px, 100%);
  justify-self: start;
}
.logo:hover { opacity: .92; color: var(--ink); }
.logo-svg {
  display: block; height: 96px; width: auto; max-width: min(520px, 42vw);
  filter: none;
}
.header-phone {
  justify-self: center;
  font-family: var(--font);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 750;
  letter-spacing: -.01em;
  color: var(--navy);
  text-decoration: none;
  min-height: 48px;
  padding: .55rem 1.15rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
  box-shadow: 0 6px 18px rgba(12, 30, 61, 0.06);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.header-phone:hover {
  color: var(--gold-deep);
  border-color: rgba(176, 141, 87, 0.45);
  text-decoration: none;
}
.header-actions {
  display: flex; align-items: center; gap: 1.1rem;
  justify-self: end;
}
.phone-link {
  font-size: 1.08rem; font-weight: 650; color: var(--ink-soft); text-decoration: none;
  min-height: 44px; display: inline-flex; align-items: center;
}
.phone-link:hover { color: var(--navy); }
.nav-ghost {
  font-family: var(--font);
  font-size: 1.12rem; letter-spacing: .06em; text-transform: uppercase;
  font-weight: 750; color: var(--navy); text-decoration: none;
  min-height: 44px; display: inline-flex; align-items: center;
}
.nav-ghost:hover { color: var(--gold-deep); }
.itin-brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--navy);
  min-height: 48px;
  padding: .2rem 0;
}
.itin-brand:hover { color: var(--gold-deep); text-decoration: none; opacity: .94; }
.itin-mark {
  display: block;
  height: 52px;
  width: auto;
  flex-shrink: 0;
}
.itin-wordmark {
  font-family: var(--font);
  font-size: clamp(1.45rem, 2.1vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
  color: inherit;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; font-family: var(--sans); cursor: pointer; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  min-height: 48px;
}
.btn:hover { text-decoration: none; }
.btn-solid {
  background: var(--teal);
  color: #fff !important;
  padding: .9rem 1.5rem;
  font-size: .95rem; font-weight: 700; letter-spacing: .04em;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(12, 30, 61, 0.22);
}
.btn-solid:hover { background: var(--teal-dark); color: #fff !important; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--navy) !important;
  border: 1.5px solid var(--navy);
  padding: .85rem 1.35rem;
  font-size: .95rem; font-weight: 700; letter-spacing: .04em;
  border-radius: 999px;
}
.btn-ghost:hover { background: var(--navy); color: var(--white) !important; }
.btn-block { width: 100%; }
.btn-sm { padding: .55rem 1.05rem; font-size: .75rem; min-height: 44px; }

/* Hero — one centered column, even stack */
.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(176, 141, 87, 0.10), transparent 55%),
    radial-gradient(ellipse 45% 40% at 95% 80%, rgba(12, 30, 61, 0.06), transparent 50%),
    linear-gradient(180deg, #faf9f6 0%, var(--sand) 55%, #ffffff 100%);
  text-align: center;
}
.hero .wrap {
  display: block;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.hero-copy {
  width: 100%;
  max-width: 38rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  margin: 0 0 1.85rem;
  padding: .9rem 1.75rem .9rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f0 100%);
  border: 1.5px solid rgba(176, 141, 87, 0.42);
  font-family: var(--font);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  box-shadow:
    0 12px 32px rgba(12, 30, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.hero-kicker::before {
  content: "";
  width: .72rem;
  height: .72rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold) 0%, var(--gold-deep) 100%);
  box-shadow: 0 0 0 5px rgba(176, 141, 87, 0.2);
  flex-shrink: 0;
}
.hero h1 {
  margin: 0 0 1.25rem;
  width: 100%;
  font-family: var(--font);
  font-size: clamp(2.55rem, 5.4vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--navy);
  background: none;
  -webkit-text-fill-color: unset;
  text-wrap: balance;
}
.hero h1 .h1-rest {
  display: block;
}
.hero-statement {
  margin: 0 0 1.35rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  font-family: var(--font);
  color: var(--ink-soft);
}
.hero-statement .became {
  display: block;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 550;
  letter-spacing: -.01em;
  line-height: 1.35;
  color: var(--ink-soft);
}
.hero-statement .brand {
  display: block;
  font-size: clamp(1.85rem, 3.6vw, 2.45rem);
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--gold-deep);
  white-space: nowrap;
  background: none;
  -webkit-text-fill-color: unset;
}
.hero-lead {
  margin: 0 0 1.75rem;
  width: 100%;
  max-width: 34rem;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--muted);
  text-wrap: pretty;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; justify-content: center;
  width: 100%;
  margin: 0 0 2.15rem;
}
.hero-meta {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .75rem;
  width: 100%;
}
.hero-meta li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem .55rem;
  font-size: .78rem; letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted); font-weight: 650;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 5.25rem;
}
.hero-meta strong {
  display: block; margin-bottom: .3rem;
  font-family: var(--font);
  font-size: clamp(1.25rem, 2.4vw, 1.5rem); letter-spacing: -.02em; text-transform: none;
  color: var(--navy); font-weight: 700;
  background: none; -webkit-text-fill-color: unset;
}
.legacy-note {
  margin: 1.5rem 0 0;
  width: 100%;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}
.hero-aside { display: none; }

.industry-hero .hero-kicker { margin-bottom: 1.1rem; }
.industry-hero .hero-lead { margin: 0 0 1.5rem; max-width: 34rem; text-align: left; }
.industry-hero .hero-cta { justify-content: flex-start; margin-bottom: 0; }

.section { padding: 4.25rem 0; }
.section.alt { background: var(--sand-2); }
.section-head { max-width: 38rem; margin: 0 auto 2.35rem; text-align: center; }
.section-head .kicker, .kicker {
  display: inline-block; margin-bottom: .75rem;
  font-size: .75rem; font-weight: 750; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal-dark) !important;
}
.section-head h2 {
  margin: 0 0 .75rem;
  font-family: var(--font);
  font-size: clamp(2.15rem, 4vw, 2.95rem);
  font-weight: 650; letter-spacing: -.02em; color: var(--navy);
  line-height: 1.15;
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.2rem; }

.bridge-line {
  text-align: center; margin-bottom: 2rem;
  font-size: .9rem; color: var(--muted);
}
.bridge-line span { color: var(--teal); font-weight: 700; }

.card-grid { display: grid; gap: 1rem; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.info-card, .quote-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.info-card h3 {
  margin: 0 0 .55rem;
  font-family: var(--font);
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy) !important;
  letter-spacing: -.01em; text-transform: none;
}
.info-card p { margin: 0; color: var(--ink-soft); font-size: 1.12rem; }
.info-card-link { display: block; text-decoration: none; color: inherit; }
.info-card-link:hover { text-decoration: none; color: inherit; }

.check-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem;
}
.check-grid li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.1rem 1.1rem 1.35rem;
  color: var(--ink-soft); font-size: 1.05rem;
  display: flex; gap: .85rem; align-items: center;
  box-shadow: var(--shadow);
}
.check-grid li::before {
  content: "";
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal);
  box-shadow: none;
}

.quote-card p {
  margin: 0 0 1.1rem;
  font-family: var(--font);
  font-size: 1.15rem; line-height: 1.45; color: var(--ink);
}
.quote-card footer { display: grid; gap: .2rem; }
.quote-card strong { color: var(--teal-dark) !important; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; }
.quote-card span { color: var(--muted); font-size: .9rem; }

.form-section, .section.form-like { background: var(--sand); }
.form-wrap { width: min(600px, calc(100% - 2.5rem)); margin-inline: auto; }
.form-intro { text-align: center; margin-bottom: 1.75rem; }
.form-intro h2 {
  margin: 0 0 .5rem;
  font-family: var(--font);
  font-size: clamp(2.1rem, 4vw, 2.75rem);
  font-weight: 650; color: var(--navy);
}
.form-intro p { margin: 0; color: var(--muted); }
.assessment-form, .form-success {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}
.form-success h3 { margin-top: 0; font-family: var(--font); color: var(--navy); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label {
  display: block; margin-bottom: .4rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-soft);
}
.optional { font-weight: 500; text-transform: none; color: var(--muted); letter-spacing: 0; }
.field input, .field select, .field textarea {
  width: 100%;
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: .85rem 1rem;
  font: inherit; font-size: 1.15rem;
}
.field input:focus, .field select:focus, .field textarea:focus,
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 3px solid rgba(13, 148, 136, 0.35);
  border-color: var(--teal);
}
.checkbox-label {
  display: flex; gap: .75rem; align-items: flex-start;
  font-size: .98rem; color: var(--ink-soft); cursor: pointer; min-height: 44px;
}
.checkbox-label input { margin-top: .2rem; width: 1.15rem; height: 1.15rem; accent-color: var(--teal); }
.form-error { color: var(--danger); font-weight: 700; margin: 0 0 1rem; }
.form-fineprint { margin: 1rem 0 0; text-align: center; font-size: .82rem; color: var(--muted); }

.cta-strip {
  padding: 4.5rem 0 4.25rem;
  text-align: center;
  background: var(--navy);
  color: rgba(255,255,255,.88);
}
.cta-strip .wrap {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-strip h2 {
  margin: 0 0 1.6rem;
  width: 100%;
  max-width: 14ch;
  font-family: var(--font);
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--white);
  background: none;
  -webkit-text-fill-color: unset;
  text-wrap: balance;
}
.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1.25rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.cta-strip .btn-solid {
  background: #f7f5f0;
  color: var(--navy) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.cta-strip .btn-solid:hover {
  background: var(--gold);
  color: var(--navy) !important;
}
.cta-strip .phone-link {
  color: #e8d5b0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.01em;
  min-height: 48px;
}
.cta-strip .phone-link:hover { color: #fff; }
.cta-strip .btn-ghost {
  border-color: #e8d5b0;
  color: #e8d5b0 !important;
}
.cta-strip .btn-ghost:hover {
  background: #e8d5b0;
  color: var(--navy) !important;
}

.site-footer {
  background: #081428;
  color: #a8a29a;
  padding: 2.75rem 0 2.25rem;
  font-size: .95rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}
.footer-brand {
  text-align: left;
}
.footer-contact {
  text-align: right;
  display: grid;
  gap: .45rem;
  justify-items: end;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  text-decoration: none;
}
.footer-contact a:hover { text-decoration: underline; }
.footer-social { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .6rem; }
.footer-contact .footer-social a {
  width: 44px; height: 44px; min-height: 44px; justify-content: center;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.14);
  color: #e8e4dc; transition: color .2s, border-color .2s, background .2s;
}
.footer-contact .footer-social a:hover,
.footer-contact .footer-social a:focus-visible { color: var(--navy); background: var(--gold); border-color: var(--gold); text-decoration: none; }
.site-footer strong {
  display: block;
  margin-bottom: .45rem;
  color: #f7f5f0;
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.01em;
  text-transform: none;
}
.site-footer p { margin: 0; line-height: 1.55; }
.site-footer a { color: #e8e4dc; }
.site-footer a:hover { color: var(--gold); }
.copyright {
  grid-column: 1 / -1;
  margin: .35rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
  color: #78716c;
  text-align: left;
  line-height: 1.5;
}

/* Industry pages */
.industry-hero {
  padding: 3.25rem 0 2.35rem;
  background:
    radial-gradient(ellipse 60% 50% at 90% 0%, rgba(13,148,136,.1), transparent 55%),
    linear-gradient(180deg, #f7fafc 0%, var(--sand) 100%);
  text-align: left;
}
.industry-hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.25rem; align-items: center;
}
.industry-title {
  font-family: var(--font);
  margin: 0 0 1rem;
  font-size: clamp(2.35rem, 4.8vw, 3.25rem);
  font-weight: 650; letter-spacing: -.025em; line-height: 1.1;
  color: var(--navy);
  background: none; -webkit-text-fill-color: unset;
}
.industry-aside { margin: 1.25rem 0 0; color: var(--muted); font-size: 1.15rem; max-width: 36rem; }
.industry-figure {
  margin: 0; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.industry-figure img { display: block; width: 100%; height: auto; }
.industry-nav {
  display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center;
  margin: 2.25rem 0 1.25rem;
}
.industry-nav a {
  padding: .55rem 1rem; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--card);
  color: var(--ink-soft); font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  min-height: 44px; display: inline-flex; align-items: center;
}
.industry-nav a:hover, .industry-nav a.active {
  border-color: var(--teal); color: var(--teal-dark); background: #f0fdfa;
  text-decoration: none;
}
.industry-cta-row {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center;
}
.narrow-prose { width: min(760px, calc(100% - 2.5rem)); margin-inline: auto; }
.wrap-prose { width: min(760px, 100%); margin: 2.25rem auto 0; }
.prose-block h3 {
  font-family: var(--font);
  margin: 0 0 1rem; font-size: 1.5rem; font-weight: 650;
  color: var(--navy) !important; letter-spacing: -.01em;
}
.prose-block p { margin: 0; color: var(--ink-soft); font-size: 1.2rem; line-height: 1.7; }
.plain-list { margin: 0; padding: 0; list-style: none; display: grid; gap: .75rem; }
.plain-list li {
  position: relative;
  padding: 1rem 1rem 1rem 1.25rem;
  border-radius: 14px; border: 1px solid var(--line);
  background: var(--card); color: var(--ink-soft); font-size: 1.15rem;
  box-shadow: var(--shadow);
}
.plain-list li::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  border-radius: 14px 0 0 14px; background: var(--teal);
}

.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;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 900px) {
  .industry-hero-grid, .card-grid.four, .card-grid.two,
  .check-grid, .field-row, .hero-meta {
    grid-template-columns: 1fr 1fr;
  }
  .industry-hero-grid { grid-template-columns: 1fr; }
  .industry-figure { order: -1; }
  .header-phone {
    font-size: .95rem;
    padding: .45rem .9rem;
  }
  .logo-svg { height: 64px; }
  .itin-mark { height: 38px; }
  .itin-wordmark { font-size: 1.2rem; }
  .itin-brand { gap: .4rem; }
  .header-inner { min-height: 84px; }
  .industry-hero .hero-cta { justify-content: flex-start; }
  .industry-hero .hero-kicker { margin-left: 0; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-brand,
  .footer-contact {
    text-align: center;
    justify-items: center;
  }
  .footer-social { justify-content: center; }
  .copyright {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas: "logo itin" "phone cta";
    row-gap: .55rem;
    min-height: auto;
    padding: .65rem 0 .75rem;
  }
  .logo { grid-area: logo; }
  .header-phone {
    grid-area: phone;
    justify-self: center;
    width: fit-content;
  }
  .header-actions { display: contents; }
  .header-actions .itin-brand { grid-area: itin; justify-self: end; }
  .header-actions .btn-sm { grid-area: cta; justify-self: end; }
  .header-phone { justify-self: start; }
  .cta-strip { padding: 3.5rem 0 3.25rem; }
  .cta-strip h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 8.5vw, 2.55rem);
  }
  .cta-strip-actions {
    flex-direction: column;
    align-items: stretch;
    gap: .85rem;
    max-width: 22rem;
  }
  .cta-strip .btn-solid,
  .cta-strip .phone-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    max-width: 22rem;
  }
  .hero-cta .btn { width: 100%; }
  .logo-svg { height: 52px; max-width: min(240px, 46vw); }
  .itin-wordmark { font-size: 1.05rem; }
  .itin-mark { height: 34px; }
  .btn-sm { font-size: .7rem; padding: .5rem .85rem; }
}

@media (max-width: 560px) {
  .hero-meta, .card-grid.four, .card-grid.two, .field-row, .check-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 { font-size: clamp(2.15rem, 9vw, 2.75rem); }
  .hero-statement .brand { white-space: normal; }
}
