/* ============================================================
   MOFAS — see docs/site-guide.md for the source of every token.
   Palette correction (2026-07-27): the brand is NAVY + GOLD, taken
   from the logo crest and the live site's gold-on-navy navigation.
   The sky blue previously treated as "primary" is Astra/Elementor
   theme default leaking into borders — demoted to a minor tint.
   ============================================================ */
:root {
  --font-display: "Roboto Slab", Georgia, serif;
  --font-body: "Source Sans Pro", system-ui, sans-serif;

  --navy-deep: #0E2A3D;   /* dark bands, nav, footer */
  --navy: #365574;        /* brand navy — primary buttons */
  --navy-hover: #094366;  /* real hover shade from the live site */
  --gold: #C4A44A;        /* rules, numerals, marks on light */
  --gold-light: #F2E49B;  /* the live site's real nav gold — text on dark */
  --ink: #2A3138;         /* body text */
  --ink-soft: #5C6672;
  --bone: #F7F5F0;        /* warm neutral, biased toward the gold accent */
  --bone-deep: #EFEBE2;
  --line: #E4E0D6;
  --line-dark: rgba(242, 228, 155, 0.22);
  --white: #ffffff;

  --container: 1280px;
  --wide: 1440px;
  --space-x: clamp(1rem, 2vw + 0.25rem, 3rem);
  --space-y: clamp(3.5rem, 6vw, 8.75rem);

  --r-btn: 30px;
  --r-card: 16px;
  --r-img: 12px;

  --shadow: 0 4px 20px rgb(14 42 61 / 0.08);
  --shadow-lg: 0 18px 50px rgb(14 42 61 / 0.14);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-reveal: 600ms var(--ease);
  --t-hover: 300ms ease-out;
  --t-btn: 200ms ease-out;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.35vw + 0.92rem, 1.1875rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: fixed; z-index: 999; top: .5rem; left: .5rem;
  transform: translateY(-250%);
  padding: .75rem 1.25rem; background: var(--gold-light); color: var(--navy-deep);
  border-radius: 8px; font-weight: 700;
}
.skip-link:focus { transform: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-x); }
section { padding-block: var(--space-y); }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--font-display); margin: 0; color: var(--navy-deep); text-wrap: balance; }
h1 { font-size: clamp(2.375rem, 3.4vw + 1.2rem, 4.25rem); font-weight: 700; line-height: 1.06; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.75rem, 2.3vw + 0.9rem, 3.125rem); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.0625rem, 0.5vw + 0.95rem, 1.3125rem); font-weight: 600; line-height: 1.3; }
p { margin: 0; }

.eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-body); font-size: .75rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 1.125rem;
}
.eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--gold); opacity: .5; max-width: 4rem; }
.eyebrow--gold { color: var(--gold-light); }
.eyebrow--gold::after { background: var(--gold-light); opacity: .45; }

.sec-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center .eyebrow::after { display: none; }
.sec-sub { margin-top: 1.125rem; color: var(--ink-soft); max-width: 40rem; }
.sec-sub--center { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 15px 34px;
  border: 2px solid transparent; border-radius: var(--r-btn);
  font-family: var(--font-body); font-weight: 700; font-size: 1.0625rem;
  line-height: 1.25; text-align: center; cursor: pointer;
  transition: background var(--t-btn), color var(--t-btn), transform var(--t-btn), border-color var(--t-btn);
}
.btn--primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--primary:hover { background: var(--navy-hover); border-color: var(--navy-hover); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: #fff; color: var(--navy-deep); border-color: #fff; }
.btn--gold { background: var(--gold-light); color: var(--navy-deep); border-color: var(--gold-light); }
.btn--gold:hover { background: #fff; border-color: #fff; transform: translateY(-1px); }
.btn--sm { padding: 10px 22px; font-size: .9375rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: sticky; top: 0; z-index: 100; background: var(--navy-deep); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 86px; }
.nav__logo img { width: clamp(150px, 16vw, 208px); height: auto; }

.nav__links-wrap { display: none; }
.nav__links { display: flex; align-items: center; gap: 1.5rem; }
.nav__links a, .nav__dropdown-toggle {
  display: inline-flex; align-items: center; gap: .3rem;
  min-height: 44px; /* WCAG 2.2 AA touch target */
  padding: .5rem 0; background: none; border: none; cursor: pointer;
  font-size: .9375rem; font-weight: 600; color: rgba(255,255,255,.86);
  transition: color var(--t-btn);
}
.nav__links a:hover, .nav__dropdown-toggle:hover,
.nav__links a:focus-visible, .nav__dropdown-toggle:focus-visible { color: var(--gold-light); }
.nav__chevron { font-size: .7em; }

.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute; top: calc(100% + .35rem); left: 50%; translate: -50% 0;
  min-width: 258px; padding: .5rem;
  background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--t-hover), transform var(--t-hover), visibility var(--t-hover);
}
.nav__dropdown-menu a { display: block; padding: .6rem .8rem; border-radius: 8px; color: var(--ink); font-weight: 600; }
.nav__dropdown-menu a:hover { background: var(--bone); color: var(--navy); }
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.nav__utility { display: none; align-items: center; gap: 1rem; }
.nav__badge {
  font-size: .6875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid var(--line-dark);
  padding: 6px 12px; border-radius: 100px; white-space: nowrap;
}
.nav__phone { font-weight: 700; font-size: .9375rem; color: #fff; white-space: nowrap; }
.nav__phone:hover { color: var(--gold-light); }

.nav__toggle {
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--gold-light); border-radius: 2px; transition: transform var(--t-btn), opacity var(--t-btn); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { display: none; flex-direction: column; gap: 1rem; padding: 1.25rem var(--space-x) 2rem; border-top: 1px solid var(--line-dark); }
.nav__mobile.is-open { display: flex; }
.nav__mobile ul { display: flex; flex-direction: column; list-style: none; margin: 0; padding: 0; }
.nav__mobile ul a { display: block; padding: .85rem 0; font-weight: 600; color: #fff; border-bottom: 1px solid var(--line-dark); }
.nav__phone--mobile { color: var(--gold-light); font-weight: 700; }

@media (min-width: 1080px) {
  .nav__links-wrap { display: block; }
  .nav__utility { display: flex; }
  .nav__toggle { display: none; }
}

/* ============================================================
   HERO — split composition
   ============================================================ */
.hero { padding: 0; background: var(--navy-deep); }
.hero__grid { display: grid; grid-template-columns: 1fr; }
.hero__content {
  position: relative;
  padding: clamp(3rem, 7vw, 6.5rem) var(--space-x) clamp(3rem, 6vw, 5.5rem);
  background:
    radial-gradient(120% 90% at 8% 0%, #16405B 0%, transparent 60%),
    var(--navy-deep);
}
.hero__content-inner { max-width: 40rem; margin-left: auto; margin-right: auto; }
.hero h1 { color: #fff; }
.hero__subhead { margin-top: 1.5rem; color: rgba(255,255,255,.82); font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.25rem); max-width: 34rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .875rem; margin-top: 2.25rem; }
.hero__footnote { margin-top: 2rem; font-size: .9375rem; }
.hero__footnote a { color: var(--gold-light); border-bottom: 1px solid rgba(242,228,155,.35); padding-bottom: 2px; }
.hero__footnote a:hover { border-bottom-color: var(--gold-light); }

.hero__figure {
  position: relative; display: grid; place-items: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(160deg, var(--bone) 0%, var(--bone-deep) 100%);
}
.hero__figure img { width: 100%; max-width: 620px; mix-blend-mode: multiply; }
.hero__figure-cap {
  position: absolute; left: clamp(1.25rem, 3vw, 2.5rem); bottom: clamp(1.25rem, 3vw, 2.25rem);
  font-size: .8125rem; color: var(--ink-soft); max-width: 22rem;
}
.hero__figure-cap span {
  display: block; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  font-size: .6875rem; color: var(--navy); margin-bottom: .25rem;
}

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.08fr 0.92fr; min-height: 82vh; }
  .hero__content { display: flex; align-items: center; padding-inline: clamp(2rem, 5vw, 5rem); }
  .hero__content-inner { margin: 0; }
}

/* ---------- trust band ---------- */
.trustband { padding-block: 0; background: var(--navy); }
.trustband__list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--line-dark);
}
.trustband__list li {
  display: flex; flex-direction: column; gap: .1rem;
  padding: 1.5rem clamp(1rem, 2vw, 2rem);
  border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
}
.trustband__list strong {
  font-family: var(--font-display); font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  font-weight: 700; color: var(--gold-light); line-height: 1;
}
.trustband__list span { font-size: .875rem; color: rgba(255,255,255,.8); }
@media (min-width: 760px) {
  .trustband__list { grid-template-columns: repeat(4, 1fr); }
  .trustband__list li { border-bottom: none; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem) 1.5rem; }
.svc { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.125rem; }
.svc__img {
  display: block; width: clamp(104px, 14vw, 150px); aspect-ratio: 1;
  border-radius: 50%; overflow: hidden; background: var(--bone);
  box-shadow: 0 0 0 1px var(--line), 0 0 0 7px var(--white), 0 0 0 8px var(--bone-deep);
  transition: box-shadow var(--t-hover), transform var(--t-hover);
}
.svc__img img { width: 100%; height: 100%; object-fit: cover; }
.svc:hover .svc__img { transform: translateY(-4px); box-shadow: 0 0 0 1px var(--gold), 0 0 0 7px var(--white), 0 0 0 8px var(--gold); }
.svc h3 { font-size: clamp(.9375rem, .4vw + .85rem, 1.0625rem); color: var(--navy-deep); }
@media (min-width: 700px)  { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(5, 1fr); } }

/* ============================================================
   PROBLEM — dark contrast band
   ============================================================ */
.problem { position: relative; overflow: hidden; background: var(--navy-deep); isolation: isolate; }
.problem__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .16; filter: grayscale(35%);
}
.problem::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, var(--navy-deep) 12%, rgba(14,42,61,.82) 55%, rgba(14,42,61,.55) 100%);
}
.problem__inner { max-width: 44rem; }
.problem h2 { color: #fff; }
.problem__body { margin-top: 1.5rem; color: rgba(255,255,255,.8); font-size: clamp(1.0625rem, .5vw + .95rem, 1.25rem); }
.problem__body--accent {
  padding-left: 1.5rem; border-left: 2px solid var(--gold);
  color: #fff;
}

/* ============================================================
   SOLUTION
   ============================================================ */
.solution { background: var(--bone); }
.solution__top { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }

.steps { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2.5rem; }
.steps li { display: flex; gap: 1.25rem; align-items: flex-start; }
.steps__num {
  flex-shrink: 0; font-family: var(--font-display); font-weight: 700;
  font-size: 1.5rem; color: var(--gold); line-height: 1;
  width: 2.75rem; padding-top: .1rem;
  border-top: 2px solid var(--gold);
}
.steps h3 { margin-bottom: .35rem; }
.steps p { color: var(--ink-soft); font-size: 1rem; }

.solution__figure { margin: 0; background: var(--white); border-radius: var(--r-card); padding: clamp(1.25rem, 2.5vw, 2rem); box-shadow: var(--shadow); }
.solution__figure img { width: 100%; border-radius: var(--r-img); mix-blend-mode: multiply; }
.solution__figure figcaption { margin-top: 1rem; font-size: .875rem; color: var(--ink-soft); }
.solution__figure em { color: var(--navy); font-style: italic; font-weight: 600; }

@media (min-width: 940px) {
  .solution__top { grid-template-columns: 1.05fr .95fr; }
  .solution__figure { position: sticky; top: 118px; }
}

/* comparison */
.compare { margin-top: clamp(3rem, 6vw, 5rem); }
.compare__title { margin-bottom: 1.25rem; font-size: clamp(1.125rem, .6vw + 1rem, 1.4375rem); }
.table-wrap { overflow-x: auto; background: var(--white); border-radius: var(--r-card); box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.compare-table th, .compare-table td { padding: 1.125rem clamp(1rem, 2vw, 1.75rem); text-align: left; border-bottom: 1px solid var(--line); }
.compare-table thead th {
  font-family: var(--font-display); font-size: 1rem; color: var(--navy-deep);
  vertical-align: bottom; border-bottom: 2px solid var(--line);
}
.compare-table thead th.is-ours { color: var(--navy); box-shadow: inset 0 3px 0 var(--gold); background: rgba(196,164,74,.06); }
.compare-table tbody th { font-weight: 700; color: var(--ink-soft); font-size: .9375rem; width: 10rem; }
.compare-table td.is-ours { font-weight: 700; color: var(--navy-deep); background: rgba(196,164,74,.06); }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: none; }
.table-note { display: block; margin-top: .3rem; font-family: var(--font-body); font-weight: 400; font-size: .75rem; color: var(--ink-soft); }
.compare .btn { margin-top: 1.75rem; }

/* ============================================================
   CLINICAL GUIDE + FAQ — two-column, sticky aside
   ============================================================ */
.clinical { background: var(--white); }
.clinical__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.clinical__aside { max-width: 34rem; }
@media (min-width: 940px) {
  .clinical__grid { grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 6vw, 6rem); }
  .clinical__aside { position: sticky; top: 118px; }
}

.accordion__item { border-top: 1px solid var(--line); }
.accordion__item:last-child { border-bottom: 1px solid var(--line); }
.accordion__heading { margin: 0; }
.accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.0625rem, .5vw + .95rem, 1.25rem); color: var(--navy-deep);
  transition: color var(--t-btn);
}
.accordion__trigger:hover { color: var(--navy); }
.accordion__chevron {
  flex-shrink: 0; display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--navy);
  font-size: 1.125rem; font-family: var(--font-body); line-height: 1;
  transition: transform var(--t-hover), background var(--t-hover), color var(--t-hover), border-color var(--t-hover);
}
.accordion__trigger[aria-expanded="true"] .accordion__chevron {
  transform: rotate(45deg); background: var(--navy); border-color: var(--navy); color: #fff;
}
.accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 380ms var(--ease); }
.accordion__panel.is-open { grid-template-rows: 1fr; }
.accordion__panel > .accordion__panel-inner { overflow: hidden; }
.accordion__panel-inner > * { margin-bottom: 1rem; }
.accordion__panel-inner > *:first-child { margin-top: 0; }
.accordion__panel-inner > *:last-child { margin-bottom: 1.75rem; }
.accordion__panel-inner p, .accordion__panel-inner li { color: var(--ink-soft); font-size: 1rem; }
.accordion__panel-inner ul { padding-left: 1.15rem; display: flex; flex-direction: column; gap: .6rem; }
.accordion__panel-inner strong { color: var(--ink); }
.callout {
  padding: 1rem 1.25rem; background: var(--bone);
  border-left: 2px solid var(--gold); border-radius: 0 8px 8px 0;
}
.accordion__cta-row { display: flex; flex-wrap: wrap; gap: .6rem; }

/* ============================================================
   PROOF
   ============================================================ */
.proof { background: var(--bone); }
.awards {
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}
.awards img { height: clamp(76px, 8vw, 104px); width: auto; border-radius: 6px; }
.awards__text { display: flex; flex-direction: column; gap: .3rem; font-size: .9375rem; color: var(--ink-soft); }
.awards__text strong { color: var(--navy-deep); }

.quotes { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.quote {
  position: relative; padding: clamp(1.75rem, 2.5vw, 2.5rem);
  background: var(--white); border-radius: var(--r-card); box-shadow: var(--shadow);
  transition: transform var(--t-hover), box-shadow var(--t-hover);
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quote::before {
  content: "\201C"; position: absolute; top: .35rem; left: 1.25rem;
  font-family: var(--font-display); font-size: 4rem; line-height: 1; color: var(--gold); opacity: .45;
}
.quote p { position: relative; color: var(--ink); font-size: 1rem; }
.quote footer { margin-top: 1.125rem; font-size: .8125rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); }
@media (min-width: 820px) { .quotes { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   TRAVEL BAND
   ============================================================ */
.travel { position: relative; overflow: hidden; isolation: isolate; background: var(--navy-deep); }
.travel__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.travel::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(14,42,61,.94) 0%, rgba(14,42,61,.86) 45%, rgba(14,42,61,.55) 100%);
}
.travel__inner { max-width: 40rem; }
.travel h2 { color: #fff; }
.travel__inner p { margin-top: 1.25rem; color: rgba(255,255,255,.82); }
.travel .btn { margin-top: 2rem; }

/* ============================================================
   WHY WE'RE DIFFERENT
   ============================================================ */
.different { background: var(--navy); }
.different h2 { color: #fff; }
.stats { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line-dark); }
.stats li { padding: clamp(1.75rem, 3vw, 2.5rem) 0; border-bottom: 1px solid var(--line-dark); text-align: center; }
.stats__num {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 5vw + 1rem, 5rem); line-height: 1;
  color: var(--gold-light); margin-bottom: .5rem;
}
.stats p { color: rgba(255,255,255,.82); max-width: 18rem; margin-inline: auto; }
.different__foot { margin-top: 2.5rem; text-align: center; color: rgba(255,255,255,.7); max-width: 40rem; margin-inline: auto; }
@media (min-width: 760px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stats li { border-bottom: none; border-right: 1px solid var(--line-dark); }
  .stats li:last-child { border-right: none; }
}

/* ============================================================
   FUNNEL — A / B / C are the client's own path labels
   ============================================================ */
.funnel { background: var(--white); }
.paths { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.path {
  position: relative; display: flex; flex-direction: column; gap: 1rem;
  padding: clamp(1.75rem, 2.5vw, 2.5rem);
  background: var(--bone); border-radius: var(--r-card);
  border-top: 3px solid var(--gold);
  transition: transform var(--t-hover), box-shadow var(--t-hover);
}
.path:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.path__mark {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; background: var(--navy-deep); color: var(--gold-light);
  font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem;
}
.path h3 { color: var(--navy-deep); }
.path p { flex: 1; color: var(--ink-soft); font-size: 1rem; }
.path .btn { align-self: stretch; }
@media (min-width: 860px) { .paths { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bone); }
.faq .accordion__item { border-color: var(--bone-deep); }
.faq .accordion__chevron { border-color: var(--bone-deep); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { background: var(--navy-deep); text-align: center; }
.final__inner { max-width: 42rem; margin-inline: auto; }
.final h2 { color: #fff; }
.final__inner > p { margin-top: 1.25rem; color: rgba(255,255,255,.78); }
.final__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: .875rem; margin-top: 2.25rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0A2030; color: rgba(255,255,255,.66); padding-top: clamp(3.5rem, 6vw, 6rem); }
.footer__inner {
  display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 4vw, 4rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem); border-bottom: 1px solid var(--line-dark);
}
.footer__brand { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
.footer__brand img { width: 220px; }
.footer__brand address { font-style: normal; font-size: .9375rem; line-height: 1.8; }
.footer__brand address a:hover { color: var(--gold-light); }
.footer__fax { color: rgba(255,255,255,.45); }
.footer__portal { font-weight: 700; color: var(--gold-light); font-size: .9375rem; }

.footer__nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.footer__col h3 {
  font-family: var(--font-body); font-size: .6875rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .7rem; list-style: none; margin: 0; padding: 0; }
.footer__col a { font-size: .9375rem; }
.footer__col a:hover { color: #fff; }

.footer__bottom { padding-block: 1.5rem; }
.footer__bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; font-size: .8125rem; color: rgba(255,255,255,.45); }

@media (min-width: 780px) {
  .footer__inner { grid-template-columns: 1fr 1.35fr; }
  .footer__nav { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   REVEAL — see docs/site-guide.md §6
   ============================================================ */
/* Scoped to .js so content is never hidden when JavaScript is unavailable. */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity var(--t-reveal), transform var(--t-reveal); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   MOBILITY-FIRST REDESIGN — "THE RETURN"
   The visual system follows a person from limitation to movement.
   Gold becomes a path, navy becomes a frame, and people—not
   equipment—carry the emotional weight.
   ============================================================ */

:root {
  --ink-deep: #102331;
  --navy-wash: #dfe8ed;
  --gold-path: #d4b65f;
  --bone-deep: #ece7dc;
  --shadow-editorial: 0 24px 70px rgba(14, 42, 61, .16);
  --deep-navy: var(--navy-deep);
  --soft-ink: var(--ink-soft);
}

body {
  background: var(--bone);
  background-image:
    radial-gradient(circle at 8% 4%, rgba(196, 164, 74, .09), transparent 28rem),
    linear-gradient(90deg, rgba(14, 42, 61, .025) 1px, transparent 1px);
  background-size: auto, 96px 100%;
}

.container { position: relative; }

.nav {
  background: rgba(14, 42, 61, .94);
  border-bottom: 1px solid rgba(242, 228, 155, .24);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.nav__inner { min-height: 92px; }
.nav__logo {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}
.nav__logo img {
  width: 78px;
  height: auto;
}
.nav__links a,
.nav__dropdown-toggle { letter-spacing: .03em; }
.nav__badge {
  border: 1px solid rgba(242, 228, 155, .42);
  background: transparent;
  color: var(--gold-light);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--gold);
}

.eyebrow--gold::before { background: var(--gold-light); }

.sec-head h2,
.clinical__aside h2,
.solution__copy h2 {
  max-width: 18ch;
  text-wrap: balance;
}

.sec-head--center h2 { margin-inline: auto; }

/* Hero: a single cinematic field with copy embedded in the landscape. */
.hero {
  min-height: 760px;
  background: var(--deep-navy);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--gold) 0 36%, transparent 36% 38%, var(--gold-light) 38% 100%);
}

.hero__grid {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  position: relative;
}

.hero__figure {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--deep-navy);
}

.hero__figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 42, 61, .98) 0%, rgba(14, 42, 61, .91) 34%, rgba(14, 42, 61, .26) 67%, rgba(14, 42, 61, .05) 100%),
    linear-gradient(0deg, rgba(14, 42, 61, .58), transparent 38%);
}

.hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.88) contrast(1.02);
}

.hero__figure-cap {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 4vw, 4rem);
  bottom: 2.25rem;
  max-width: 24rem;
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid var(--gold-light);
  color: rgba(255, 255, 255, .84);
  font-size: .875rem;
}

.hero__figure-cap span {
  display: block;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  width: min(1440px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1rem, 2vw + .25rem, 3rem);
  padding-block: clamp(5rem, 9vw, 8rem);
  background: none;
}

.hero__content-inner { max-width: 700px; }
.hero h1 {
  max-width: 12ch;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(9, 27, 40, .28);
}

.hero__subhead {
  max-width: 61ch;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.05rem, .5vw + .95rem, 1.3rem);
}

.hero__ctas { align-items: center; }
.hero .btn--primary {
  background: var(--gold-light);
  color: var(--deep-navy);
  box-shadow: 0 14px 34px rgba(9, 27, 40, .28);
}
.hero .btn--primary:hover { background: #fff3b7; color: var(--deep-navy); }
.hero__footnote a { color: var(--gold-light); }

.trustband {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--deep-navy);
  border-top: 1px solid rgba(242, 228, 155, .18);
}

.trustband__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trustband__list::before {
  content: "THE MOBILITY INDEX";
  position: absolute;
  top: -1.8rem;
  left: 0;
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.trustband__list li {
  min-height: 130px;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.trustband__list li:last-child { border-right: 1px solid rgba(255, 255, 255, .12); }
.trustband__list strong { color: var(--gold-light); }

/* Five services remain bubbles, but no longer behave like five stock-photo ads. */
.services {
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(247, 245, 240, .97), rgba(247, 245, 240, .84)),
    url("assets/mobility-generations.webp") center 42% / cover no-repeat;
}

.services::before {
  content: "MOVE";
  position: absolute;
  right: -1rem;
  margin-top: -5rem;
  color: rgba(14, 42, 61, .045);
  font-family: var(--font-display);
  font-size: clamp(7rem, 19vw, 18rem);
  font-weight: 700;
  line-height: 1;
}

.svc-grid {
  position: relative;
  z-index: 1;
  align-items: start;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.svc {
  position: relative;
  padding-top: 1.5rem;
  text-align: left;
  border-top: 1px solid rgba(14, 42, 61, .24);
}

.svc::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 34px;
  height: 5px;
  border-radius: 99px;
  background: var(--gold);
}

.svc__img {
  width: clamp(92px, 9vw, 128px);
  height: clamp(92px, 9vw, 128px);
  margin: 0 0 1.25rem;
  border: 6px solid rgba(255, 255, 255, .82);
  box-shadow: 0 12px 34px rgba(14, 42, 61, .14);
  filter: saturate(.7);
}

.svc h3 { color: var(--deep-navy); }

/* Problem becomes a decisive editorial interlude. */
.problem {
  min-height: 650px;
  display: grid;
  align-items: end;
  background: var(--ink-deep);
}

.problem__bg {
  opacity: .22;
  filter: grayscale(1) contrast(1.2);
  object-position: center;
}

.problem::after {
  background:
    linear-gradient(90deg, var(--ink-deep) 0 20%, rgba(16, 35, 49, .75) 58%, var(--ink-deep) 100%),
    linear-gradient(0deg, var(--ink-deep), transparent 65%);
}

.problem__inner {
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.problem h2 {
  max-width: 18ch;
  font-size: clamp(2.75rem, 5vw, 5.75rem);
  text-wrap: balance;
}

.problem__body {
  margin-left: min(28vw, 26rem);
  max-width: 50rem;
}

/* Solution is a field guide: mechanism on one side, real device as evidence. */
.solution { background: #fff; }
.solution__top {
  align-items: stretch;
  gap: clamp(3rem, 7vw, 7rem);
}

.solution__copy {
  padding-top: 2rem;
  border-top: 8px solid var(--deep-navy);
}

.steps {
  position: relative;
  margin-top: 3.5rem;
}

.steps::before {
  content: "";
  position: absolute;
  left: 1.3rem;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(196, 164, 74, .12));
}

.steps li { position: relative; }
.steps__num {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--deep-navy);
  border: 1px solid var(--gold);
}

.solution__figure {
  min-height: 610px;
  display: grid;
  grid-template-rows: 1fr auto;
  box-shadow: var(--shadow-editorial);
  border-radius: 180px 16px 16px 16px;
  overflow: hidden;
  background: var(--bone);
}

.solution__figure img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: 64% center;
  mix-blend-mode: multiply;
}

.solution__figure figcaption {
  padding: 1.5rem;
  border-top: 1px solid rgba(14, 42, 61, .12);
}

.compare {
  margin-top: clamp(4rem, 8vw, 8rem);
  background: var(--deep-navy);
  color: #fff;
  border-radius: 0 80px 0 0;
  box-shadow: var(--shadow-editorial);
}

.compare__title { color: var(--gold-light); }
.compare-table { color: rgba(255, 255, 255, .86); }
.compare-table th,
.compare-table td { border-color: rgba(255, 255, 255, .14); }
.compare-table thead th { color: #fff; }
.compare-table .is-ours { background: rgba(242, 228, 155, .08); color: #fff; }
.compare .btn--outline { color: var(--gold-light); border-color: var(--gold-light); }

/* Clinical guide: interaction is the visual centerpiece. */
.clinical {
  background:
    radial-gradient(circle at 15% 20%, rgba(196, 164, 74, .12), transparent 22rem),
    var(--bone);
}

.clinical__grid { gap: clamp(3rem, 8vw, 8rem); }
.clinical__aside {
  top: 9rem;
  padding-top: 2rem;
  border-top: 8px solid var(--gold);
}

.clinical__aside::after {
  content: "01  ·  02  ·  03  ·  04";
  display: block;
  margin-top: 3rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .14em;
}

.accordion {
  counter-reset: gate;
  border-top: 1px solid rgba(14, 42, 61, .24);
}

.accordion__item { counter-increment: gate; }
.accordion__trigger {
  min-height: 104px;
  padding-left: 4.5rem;
  position: relative;
}

.accordion__trigger::before {
  content: counter(gate, decimal-leading-zero);
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: var(--font-display);
}

.accordion__trigger[aria-expanded="true"] {
  color: var(--deep-navy);
  background: rgba(255, 255, 255, .62);
}

.accordion__panel-inner {
  padding-left: 4.5rem;
  background: rgba(255, 255, 255, .62);
}

.callout {
  border-left-color: var(--gold);
  background: rgba(242, 228, 155, .22);
}

/* Proof becomes a human editorial spread rather than a badge shelf. */
.proof { background: var(--deep-navy); color: #fff; overflow: hidden; }
.proof::before {
  content: "PROOF OF MOVEMENT";
  position: absolute;
  right: -1rem;
  color: rgba(242, 228, 155, .06);
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 12rem);
  font-weight: 700;
  white-space: nowrap;
}
.proof .sec-head { position: relative; z-index: 1; }
.proof .sec-head h2 { color: #fff; }
.proof .eyebrow { color: var(--gold-light); }

.proof__editorial {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}

.proof__people {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: 16px 140px 16px 16px;
  margin: 0;
}

.proof__people::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 42, 61, .88), transparent 50%);
}

.proof__people img { width: 100%; height: 100%; object-fit: cover; }
.proof__people figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  max-width: 21ch;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
}

.awards {
  align-content: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.awards__text { color: rgba(255, 255, 255, .72); }
.awards__text strong { color: var(--gold-light); }
.quotes { border-top: 1px solid rgba(255, 255, 255, .14); }
.quote {
  background: transparent;
  border-color: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .7);
  box-shadow: none;
}

/* Travel is a geographic reveal, not another generic section. */
.travel { min-height: 720px; display: grid; align-items: end; }
.travel::after {
  background:
    linear-gradient(90deg, rgba(14, 42, 61, .97) 0 38%, rgba(14, 42, 61, .28) 72%),
    linear-gradient(0deg, rgba(14, 42, 61, .9), transparent 64%);
}
.travel__inner { padding-bottom: clamp(4rem, 8vw, 8rem); }
.travel h2 { max-width: 15ch; font-size: clamp(2.5rem, 5vw, 5.25rem); }

/* National differentiation reads like a measured investment thesis. */
.different {
  background: var(--bone);
  color: var(--deep-navy);
}
.different .sec-head h2 { color: var(--deep-navy); }
.different .eyebrow { color: var(--navy); }
.stats {
  position: relative;
  gap: 0;
  border-top: 1px solid rgba(14, 42, 61, .18);
  border-bottom: 1px solid rgba(14, 42, 61, .18);
}
.stats li {
  position: relative;
  min-height: 290px;
  display: grid;
  align-content: center;
  border-right: 1px solid rgba(14, 42, 61, .18);
}
.stats li:last-child { border-right: 0; }
.stats__num { color: var(--deep-navy); }
.stats li::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 38%;
  height: 7px;
  background: var(--gold);
}
.different__foot { color: var(--soft-ink); }

/* Equal-path funnel becomes one connected choice surface. */
.funnel {
  background:
    linear-gradient(rgba(255, 255, 255, .92), rgba(255, 255, 255, .92)),
    url("assets/mobility-hero.webp") center / cover no-repeat;
}
.paths {
  position: relative;
  gap: 0;
  border: 1px solid rgba(14, 42, 61, .16);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-editorial);
}
.paths::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 4.45rem;
  height: 2px;
  background: var(--gold);
}
.path {
  min-height: 440px;
  border: 0;
  border-right: 1px solid rgba(14, 42, 61, .14);
  border-radius: 0;
  box-shadow: none;
  background: rgba(247, 245, 240, .93);
}
.path:last-child { border-right: 0; }
.path:hover { transform: none; background: #fff; }
.path__mark {
  position: relative;
  z-index: 1;
  background: var(--bone);
  border: 2px solid var(--gold);
  color: var(--deep-navy);
}
.path .btn { margin-top: auto; width: 100%; }

.faq { background: #fff; }
.faq .clinical__aside { border-top-color: var(--deep-navy); }
.faq .clinical__aside::after { content: "ASK OPENLY"; }

.final {
  min-height: 640px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(14, 42, 61, .98) 0 46%, rgba(14, 42, 61, .4) 78%),
    url("assets/mobility-generations.webp") center / cover no-repeat;
}
.final::before {
  content: "";
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(242, 228, 155, .34);
  pointer-events: none;
}
.final__inner { text-align: left; margin-left: 0; max-width: 760px; }
.final h2 { max-width: 12ch; font-size: clamp(3rem, 6vw, 6rem); }
.final p { margin-left: 0; }
.final__ctas { justify-content: flex-start; }

.footer { border-top: 8px solid var(--gold); }

@media (max-width: 1100px) {
  .hero__figure img { object-position: 58% center; }
  .hero__figure::before {
    background:
      linear-gradient(90deg, rgba(14, 42, 61, .97), rgba(14, 42, 61, .72) 53%, rgba(14, 42, 61, .18)),
      linear-gradient(0deg, rgba(14, 42, 61, .72), transparent 40%);
  }
  .proof__editorial { grid-template-columns: 1fr; }
  .awards { grid-template-columns: 110px 110px 1fr; }
}

@media (max-width: 779px) {
  body { background-size: auto, 48px 100%; }
  .hero, .hero__grid { min-height: 780px; }
  .hero__figure img { object-position: 62% center; }
  .hero__figure::before {
    background:
      linear-gradient(0deg, rgba(14, 42, 61, .98) 4%, rgba(14, 42, 61, .92) 48%, rgba(14, 42, 61, .12) 92%),
      linear-gradient(90deg, rgba(14, 42, 61, .45), transparent);
  }
  .hero__content { align-items: end; padding-bottom: 6.5rem; }
  .hero__content-inner { max-width: none; }
  .hero__figure-cap { display: none; }
  .trustband__list { grid-template-columns: repeat(2, 1fr); }
  .trustband__list li { min-height: 110px; }
  .problem { min-height: 720px; }
  .problem__body { margin-left: 0; }
  .solution__figure { min-height: 430px; border-radius: 100px 16px 16px 16px; }
  .solution__figure img { min-height: 330px; }
  .compare { border-radius: 0 48px 0 0; }
  .accordion__trigger,
  .accordion__panel-inner { padding-left: 3.5rem; }
  .proof__people { min-height: 500px; border-radius: 16px 80px 16px 16px; }
  .awards { grid-template-columns: 88px 88px; }
  .awards__text { grid-column: 1 / -1; }
  .travel { min-height: 680px; }
  .stats { border-bottom: 0; }
  .stats li { min-height: 220px; border-right: 0; border-bottom: 1px solid rgba(14, 42, 61, .18); }
  .paths { border-radius: 12px; }
  .paths::before { display: none; }
  .path { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(14, 42, 61, .14); }
  .final {
    min-height: 720px;
    align-items: end;
    background:
      linear-gradient(0deg, rgba(14, 42, 61, .98) 8%, rgba(14, 42, 61, .82) 56%, rgba(14, 42, 61, .14) 92%),
      url("assets/mobility-generations.webp") 48% center / cover no-repeat;
  }
  .final__inner { padding-bottom: 5rem; }
}

@media (max-width: 480px) {
  .hero, .hero__grid { min-height: 820px; }
  .hero__content { padding-bottom: 4.5rem; }
  .hero__ctas .btn { width: 100%; }
  .trustband__list strong { font-size: 2rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc:last-child { grid-column: 1 / -1; max-width: 50%; }
  .proof__people { min-height: 420px; }
  .proof__people figcaption { max-width: 16ch; }
}

/* ============================================================
   REVIEW PASS — clarity, viewport discipline, and contrast
   ============================================================ */

/* Headings may breathe horizontally; deliberate narrow measures are local. */
.sec-head h2,
.sec-head--center h2,
.clinical__aside h2,
.solution__copy h2 {
  max-width: 25ch;
}

/* 1. The hero photograph is a true full-section image field. */
.hero,
.hero__grid,
.hero__figure {
  width: 100%;
  max-width: none;
}

.hero { min-height: min(760px, calc(100vh - 92px)); }
.hero__grid { min-height: min(760px, calc(100vh - 92px)); }
.hero__figure { padding: 0; }
.hero__figure img {
  max-width: none;
  mix-blend-mode: normal;
}

/* 2. Authority bar: unambiguous dark ground and readable white type. */
.trustband {
  background: var(--navy-deep);
  color: #fff;
}
.trustband__list::before { display: none; }
.trustband__list strong { color: var(--gold-light); }
.trustband__list span { color: rgba(255, 255, 255, .86); }

/* 3. Services: quiet, compact, and clearly secondary. */
.services {
  position: relative;
  padding-block: clamp(3rem, 5vw, 4.5rem);
  background: #fff;
}
.services::before { display: none; }
.services .sec-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.services .sec-head h2 { max-width: none; }
.svc-grid {
  gap: clamp(.65rem, 1vw, .9rem);
  align-items: stretch;
}
.svc {
  min-height: 104px;
  padding: 1.25rem 1rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px 8px 22px 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0e2a3d, #15384b);
  box-shadow: 0 10px 24px rgba(14, 42, 61, .12);
  overflow: hidden;
}
.svc:nth-child(2) { background: linear-gradient(135deg, #15384b, #1b4255); }
.svc:nth-child(3) { background: linear-gradient(135deg, #1b4255, #254f64); }
.svc:nth-child(4) { background: linear-gradient(135deg, #254f64, #305e72); }
.svc:nth-child(5) { background: linear-gradient(135deg, #305e72, #3d6b7d); }
.svc::before { display: none; }
.svc::after { display: none; }
.svc h3 {
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(.95rem, .35vw + .86rem, 1.08rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: .01em;
}

@media (max-width: 999px) {
  .svc { min-height: 98px; }
}

@media (max-width: 699px) {
  .svc {
    min-height: 92px;
    padding: 1rem .75rem;
    border-radius: 7px 7px 17px 7px;
  }
  .svc:last-child {
    width: 100%;
    justify-self: center;
  }
}

/* 4. Problem: one compact editorial spread, not separated text fragments. */
.problem {
  min-height: 0;
  padding-block: clamp(4rem, 7vw, 6.5rem);
  align-items: center;
}
.problem__inner {
  width: 100%;
  max-width: var(--container);
  padding-bottom: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  grid-template-rows: auto auto auto;
  column-gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.problem .eyebrow { grid-column: 1 / -1; }
.problem h2 {
  grid-column: 1;
  grid-row: 2 / 4;
  max-width: 15ch;
  font-size: clamp(2.5rem, 4.2vw, 4.5rem);
}
.problem__body {
  grid-column: 2;
  margin: 0 0 1.5rem;
  max-width: 42rem;
}
.problem__body--accent {
  padding: 1.25rem 0 1.25rem 1.5rem;
  margin-bottom: 0;
}

/* 5. Comparison: a legible clinical matrix with restrained emphasis. */
.compare {
  margin-top: clamp(3.5rem, 6vw, 5.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--bone);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(14, 42, 61, .1);
}
.compare__title {
  max-width: none;
  margin-bottom: 1.25rem;
  color: var(--navy-deep);
  font-size: clamp(1.35rem, 1.2vw + 1rem, 2rem);
}
.compare .table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: none;
}
.compare-table { color: var(--ink); }
.compare-table th,
.compare-table td {
  padding: 1rem clamp(.9rem, 2vw, 1.5rem);
  border-color: var(--line);
}
.compare-table thead th { color: var(--navy-deep); }
.compare-table thead th.is-ours,
.compare-table td.is-ours {
  color: var(--navy-deep);
  background: rgba(196, 164, 74, .12);
}
.compare .btn--outline {
  color: var(--navy);
  border-color: var(--navy);
}

/* 6. Expanded accordion content gets an actual reading gutter. */
.accordion__trigger {
  padding-right: clamp(1rem, 2vw, 1.5rem);
}
.accordion__panel-inner {
  padding: 1.5rem clamp(1.25rem, 3vw, 2.5rem) .5rem 4.5rem;
}

/* 7. Proof: remove watermark, restore contrast, fit the main story in view. */
.proof {
  padding-block: clamp(3.5rem, 4.5vw, 4.5rem);
  background: var(--bone);
  color: var(--ink);
}
.proof::before { display: none; }
.proof .sec-head { margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.proof .sec-head h2 {
  max-width: 22ch;
  color: var(--navy-deep);
}
.proof .eyebrow { color: var(--navy); }
.proof__editorial {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.proof__people {
  min-height: 0;
  height: clamp(310px, 31vw, 390px);
  border-radius: 16px 90px 16px 16px;
}
.awards {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: #fff;
  border-color: var(--line);
}
.awards__text { color: var(--ink-soft); }
.awards__text strong { color: var(--navy-deep); }
.quotes {
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  padding-top: 0;
  border-top: 0;
}
.quote {
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.quote p { color: var(--ink-soft); }

/* 8. Travel: one screen-height beat with a readable headline measure. */
.travel {
  min-height: 0;
  height: clamp(460px, 64vh, 620px);
  padding-block: 0;
  align-items: center;
}
.travel__inner {
  max-width: 68rem;
  padding-bottom: 0;
}
.travel h2 {
  max-width: 22ch;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
}
.travel__inner p { max-width: 48rem; }

/* 9. Differentiation: wide headline and compact evidence row. */
.different { padding-block: clamp(4rem, 6vw, 6rem); }
.different .sec-head { margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.different .sec-head h2 {
  max-width: 26ch;
  font-size: clamp(2.2rem, 3.6vw, 4rem);
}
.stats li {
  min-height: 180px;
  padding: 1.5rem;
}
.stats__num { font-size: clamp(3.25rem, 5vw, 5.25rem); }
.different__foot { margin-top: 1.75rem; }

@media (max-width: 939px) {
  .problem__inner { grid-template-columns: 1fr; }
  .problem h2,
  .problem__body {
    grid-column: 1;
    grid-row: auto;
  }
  .problem h2 { max-width: 18ch; margin-bottom: 2rem; }
  .accordion__panel-inner {
    padding-left: clamp(1.25rem, 4vw, 2rem);
  }
  .proof__editorial { grid-template-columns: 1fr; }
  .awards { min-height: 0; }
}

@media (max-width: 779px) {
  .hero,
  .hero__grid { min-height: 760px; }
  .services { padding-block: 3rem; }
  .problem { padding-block: 4rem; }
  .problem h2 { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .compare { padding: 1rem; }
  .accordion__trigger { padding-left: 3.25rem; }
  .proof__people { height: 390px; }
  .travel {
    height: auto;
    min-height: 560px;
    padding-block: 4rem;
  }
  .travel h2 {
    max-width: 18ch;
    font-size: clamp(2.25rem, 9vw, 3.5rem);
  }
  .different .sec-head h2 { max-width: 20ch; }
  .stats li { min-height: 160px; }
}

/* ============================================================
   DESKTOP COMPLETION PASS — laptop/desktop review priorities
   ============================================================ */

/* 1. Navigation belongs to document flow. */
.nav { position: static; }

/* 3. Authority bar: four compact facts plus a right-aligned promise. */
.trustband__list {
  grid-template-columns: repeat(4, minmax(112px, .72fr)) minmax(270px, 1.4fr);
}
.trustband__list li {
  min-height: 112px;
  padding: 1.25rem clamp(.75rem, 1.4vw, 1.25rem);
}
.trustband__statement {
  align-items: flex-end;
  text-align: right;
  justify-content: center;
  padding-left: clamp(1.5rem, 3vw, 3rem) !important;
}
.trustband__statement strong {
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.trustband__statement span {
  max-width: 28ch;
  font-size: 1rem;
}

/* 6. Keep the device centered in its supporting evidence frame. */
.solution__figure img { object-position: center center; }

/* 7. Collapsed accordions should contribute no empty white blocks. */
.accordion__trigger[aria-expanded="true"] { background: transparent; }
.accordion__panel-inner {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
}
.accordion__panel.is-open .accordion__panel-inner {
  padding-top: 1.25rem;
  padding-bottom: .5rem;
}
.clinical__aside::after { display: none; }
.gate-index {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .08em;
}
.gate-index span {
  color: var(--gold);
  transition: color var(--t-btn), transform var(--t-btn);
}
.gate-index span.is-active {
  color: var(--navy-deep);
  transform: translateY(-2px);
}

/* 8. Proof cards: equal top row, readable overlay, comfortable quotes. */
.proof__editorial { align-items: stretch; }
.proof__people,
.proof .awards { height: 390px; }
.proof__people figcaption {
  max-width: 31ch;
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 600;
}
.proof .awards {
  align-content: center;
  margin: 0;
  padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
  border-bottom: 1px solid var(--line);
}
.proof .quotes { margin-top: 2rem; gap: 1.5rem; }
.proof .quote { padding: 1.5rem; }
.proof .quote::before {
  top: .9rem;
  left: auto;
  right: 1.1rem;
  font-size: 3rem;
}
.proof .quote p {
  padding-top: 1.5rem;
  padding-right: 1.25rem;
  line-height: 1.55;
}

/* 9. Keep travel content away from the lower edge. */
.travel__inner { padding-block: 4rem 5rem; }

/* 10. Compact, readable evidence instead of oversized stat cards. */
.different .stats li {
  min-height: 138px;
  padding: 1.15rem 1.5rem;
}
.different .stats__num {
  font-size: clamp(2.75rem, 4vw, 4rem);
}
.different .stats li p {
  color: var(--ink-soft);
  font-size: .95rem;
}

/* 11. CTA cards follow their descriptions without artificial empty space. */
.path { min-height: 0; }
.path .btn {
  width: 100%;
  margin-top: 1.25rem;
}

/* 12. FAQ is a compact reference, not another tall feature. */
.faq .clinical__aside::after { display: none; }
.faq .accordion__trigger {
  min-height: 72px;
  padding-top: .9rem;
  padding-bottom: .9rem;
}
.faq .accordion__panel.is-open .accordion__panel-inner {
  padding-top: .75rem;
  padding-bottom: .25rem;
}

/* 14. The complete lockup becomes the footer's primary brand anchor. */
.footer__brand img {
  width: min(660px, 100%);
  max-width: none;
}

@media (min-width: 940px) {
  /* 2. Desktop headings use the available canvas and stop at three lines. */
  .hero__content-inner { max-width: 810px; }
  .hero h1 {
    max-width: 15ch;
    font-size: clamp(3.5rem, 4.6vw, 4.9rem);
  }
  .hero__subhead { max-width: 42rem; }

  /* 4. This secondary services heading is intentionally one line. */
  .services h2 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(2.3rem, 3vw, 3.35rem);
  }

  /* 5. Balanced problem columns with a three-line maximum headline. */
  .problem__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    grid-template-rows: auto auto;
    align-items: center;
  }
  .problem .eyebrow { grid-row: 1; }
  .problem h2 {
    grid-row: 2;
    max-width: none;
    padding-right: 2rem;
    font-size: clamp(2.65rem, 3.7vw, 4.15rem);
  }
  .problem__body {
    grid-row: 2;
    align-self: center;
    margin: 0;
    min-height: 100%;
    display: flex;
    align-items: center;
  }

  /* 10. The explicit procedure name may use up to three lines. */
  .different .sec-head h2 {
    max-width: 30ch;
    font-size: clamp(2.35rem, 3.1vw, 3.65rem);
  }

  /* 13. Two-line final statement. */
  .final__inner { max-width: 900px; }
  .final h2 {
    max-width: 16ch;
    font-size: clamp(3.25rem, 4.7vw, 4.75rem);
  }

  .footer__inner { grid-template-columns: 1.2fr 1fr; }

  /* Travel content defines the section height; the CTA keeps a full lower gutter. */
  .travel {
    height: auto;
    min-height: 620px;
    padding-block: 5rem;
    align-items: center;
  }
  .travel__inner { padding-block: 0; }

  /* Compact asymmetric specialization story. */
  .different {
    padding-block: clamp(3.75rem, 5vw, 5rem);
    overflow: hidden;
  }
  .different .container {
    display: grid;
    grid-template-columns: minmax(310px, .78fr) minmax(0, 1.22fr);
    grid-template-rows: auto auto;
    gap: 1.5rem clamp(3rem, 6vw, 6rem);
    align-items: center;
  }
  .different .sec-head {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    text-align: left;
  }
  .different .sec-head h2 {
    max-width: 20ch;
    margin: 0;
    font-size: clamp(2.25rem, 3vw, 3.35rem);
  }
  .different .eyebrow {
    justify-content: flex-start;
  }
  .different .stats {
    grid-column: 2;
    grid-row: 1 / 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 1rem;
    border: 0;
    border-radius: 16px;
    background: var(--navy-deep);
    box-shadow: var(--shadow-editorial);
  }
  .different .stats li {
    min-height: 164px;
    padding: 1.25rem;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .15);
  }
  .different .stats li:last-child { border-right: 0; }
  .different .stats li::after {
    top: 0;
    left: 1.25rem;
    width: 42px;
    height: 4px;
  }
  .different .stats__num {
    color: var(--gold-light);
    font-size: clamp(2.5rem, 3.5vw, 3.6rem);
  }
  .different .stats li p {
    color: rgba(255, 255, 255, .82);
    font-size: .9rem;
    line-height: 1.45;
  }
  .different__foot {
    grid-column: 1;
    grid-row: 2;
    max-width: 36ch;
    margin: 0;
    text-align: left;
  }
}

@media (max-width: 939px) {
  .trustband__list { grid-template-columns: repeat(2, 1fr); }
  .trustband__statement {
    grid-column: 1 / -1;
    align-items: flex-start;
    text-align: left;
  }
  .proof__people,
  .proof .awards { height: auto; min-height: 360px; }
  .gate-index { margin-top: 1.75rem; }
}

/* ============================================================
   DESKTOP REFINEMENT — notice, authority hierarchy, static guide
   ============================================================ */

/* Accepting status belongs to the hero context, not the navigation. */
.hero__notice {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  min-height: 40px;
  display: grid;
  place-items: center;
  padding: .55rem var(--space-x);
  background: rgba(242, 228, 155, .3);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14, 42, 61, .18);
}

.trustband__statement strong {
  font-size: 1.15rem;
  letter-spacing: .08em;
}
.trustband__statement span { font-size: .9rem; }

/* The photograph follows the same distinctive card silhouette. */
.solution__figure {
  padding: 0;
}
.solution__figure img {
  border-radius: 180px 0 0 0;
}

/* Clinical guide: four visible cards, normal document flow, no sticky rail. */
.clinical .clinical__aside {
  position: static;
  top: auto;
}
.clinical__cards {
  display: grid;
  gap: 1.25rem;
  border-top: 0;
  counter-reset: gate;
}
.clinical__cards .accordion__item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 28px rgba(14, 42, 61, .07);
}
.clinical__cards .accordion__item:last-child {
  border-bottom: 1px solid var(--line);
}
.clinical__cards .accordion__trigger {
  min-height: 0;
  padding: 1.5rem 1.75rem 1rem 4.4rem;
  cursor: default;
  color: var(--navy-deep);
  background: transparent;
  font-size: clamp(1.35rem, .8vw + 1.1rem, 1.7rem);
  line-height: 1.2;
}
.clinical__cards .accordion__trigger::before {
  left: 1.5rem;
  top: 1.65rem;
  font-size: 1rem;
  line-height: 1;
}
.clinical__cards .accordion__panel,
.clinical__cards .accordion__panel.is-open {
  grid-template-rows: 1fr;
  transition: none;
}
.clinical__cards .accordion__panel-inner,
.clinical__cards .accordion__panel.is-open .accordion__panel-inner {
  padding: 0 1.75rem 1.5rem 4.4rem;
  background: transparent;
}
.clinical__cards .accordion__panel-inner > *:last-child {
  margin-bottom: 0;
}
.clinical__cards .accordion__cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .35rem;
  margin: .5rem 0 0;
  padding: 0;
}
.clinical__cards .accordion__cta-row li {
  position: relative;
  padding-left: 1.15rem;
}
.clinical__cards .accordion__cta-row li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.clinical__cards .accordion__cta-row a {
  display: inline-block;
  min-height: 44px;
  padding-block: .45rem;
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: .3rem;
}
.clinical__cards .accordion__cta-row a:hover {
  color: var(--navy-deep);
  text-decoration-color: var(--navy-deep);
}

@media (min-width: 940px) {
  .clinical .clinical__aside {
    position: sticky;
    top: 2rem;
  }
}

/* ============================================================
   FOOTER REBALANCE — centered identity, intuitive utilities
   ============================================================ */
@media (min-width: 780px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.footer__brand {
  width: 100%;
  align-items: center;
  text-align: center;
}

.footer__brand img {
  width: min(420px, 72vw);
  margin-inline: auto;
}

.footer__brand address {
  margin-top: .5rem;
  color: rgba(255, 255, 255, .78);
}

.footer__portal {
  display: inline-block;
  margin-top: .25rem;
}

.footer__nav {
  width: min(1100px, 100%);
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(242, 228, 155, .2);
}

.footer__col {
  text-align: center;
}

.footer__col ul {
  align-items: center;
}

.footer__contact address {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-style: normal;
  font-size: .9375rem;
  line-height: 1.8;
}

.footer__contact .footer__portal {
  margin-top: .75rem;
}

@media (max-width: 899px) {
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 579px) {
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 779px) {
  .solution__figure img { border-radius: 100px 0 0 0; }
  .clinical__cards .accordion__trigger,
  .clinical__cards .accordion__panel-inner,
  .clinical__cards .accordion__panel.is-open .accordion__panel-inner {
    padding-left: 3.25rem;
  }
}
