@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #005CE6;
  --primary-dark: #004BB8;
  --deep: #1A202C;
  --primary-light: #EAF2FF;
  --ink: #1A202C;
  --muted: #566273;
  --line: #DCE3EC;
  --soft: #F4F7FB;
  --accent: #0066FF;
  --accent-soft: #EAF2FF;
  /* Non-interactive data/label colour. Deliberately NOT --primary so
     informational blue text is never mistaken for a link. */
  --data: #243B53;
  --data-soft: #EDF1F7;
  --white: #ffffff;
  --max: 1240px;
  --shadow: 0 14px 40px rgba(26, 32, 44, 0.10);
  --shadow-strong: 0 22px 60px rgba(26, 32, 44, 0.16);
  --radius: 5px;
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--max), 92%); margin: 0 auto; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 9px 14px;
  color: #fff;
  background: var(--deep);
  border-radius: 3px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.utility-bar {
  color: rgba(255,255,255,.92);
  background: var(--deep);
  font-size: 12px;
  letter-spacing: .03em;
}
.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.utility-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.utility-data { display: flex; align-items: center; gap: 22px; }
.utility-data span { white-space: nowrap; }
.utility-data strong { color: #9DC8FF; font-weight: 700; }

.site-header {
  min-height: var(--header-height);
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(23,63,59,.09);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 330px; height: auto; }
.menu { display: flex; align-items: center; gap: 6px; }
.menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 9px 13px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.menu a:not(.cta)::after {
  position: absolute;
  right: 13px;
  bottom: 4px;
  left: 13px;
  height: 2px;
  content: "";
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}
.menu a:hover,
.menu a.active,
.menu a[aria-current="page"] { color: var(--primary); }
.menu a:hover::after,
.menu a.active::after,
.menu a[aria-current="page"]::after { transform: scaleX(1); }
.menu .cta {
  min-height: 44px;
  margin-left: 12px;
  padding: 11px 22px;
  color: #fff;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 28px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.menu .cta:hover { color: var(--primary); background: #fff; transform: translateY(-1px); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 170ms ease, opacity 170ms ease;
}
.menu-toggle-lines { position: relative; }
.menu-toggle-lines::before,
.menu-toggle-lines::after { position: absolute; left: 0; }
.menu-toggle-lines::before { top: -7px; }
.menu-toggle-lines::after { top: 7px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: var(--soft);
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 35%, rgba(255,255,255,.33) 62%, rgba(26,32,44,.08) 100%),
    url('../assets/photos/hero-clinician.jpg');
  background-position: center right;
  background-size: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 74px;
  background: linear-gradient(transparent, rgba(255,255,255,.58));
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 590px;
  display: flex;
  align-items: center;
}
.hero-copy { max-width: 690px; padding: 74px 0; }
.eyebrow,
.section-label,
.content .label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--data);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 670px;
  margin: 0 0 18px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.hero h1 span { display: block; }
.hero .subhead {
  max-width: 620px;
  margin: 0 0 13px;
  font-size: 20px;
  font-weight: 700;
}
.hero p {
  max-width: 615px;
  margin: 0;
  color: #314845;
  font-size: 18px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { color: #fff; background: var(--primary); border-color: var(--primary); }
.button.primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.button.secondary { color: var(--primary); background: #fff; border-color: var(--primary); }
.button.secondary:hover { color: #fff; background: var(--primary); }
.button.light { color: var(--primary); background: #fff; border-color: #fff; }
.button.light:hover { color: #fff; background: transparent; }
.button.outline-light { color: #fff; background: transparent; border-color: rgba(255,255,255,.62); }
.button.outline-light:hover { color: var(--primary); background: #fff; border-color: #fff; }
.hero-stamp {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 4%;
  transform: translateY(-45%);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  text-shadow: 0 2px 18px rgba(0,0,0,.42);
}
.hero-stamp .rule { width: 110px; height: 1px; margin: 18px auto; background: rgba(255,255,255,.72); }

.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.three-up article {
  min-height: 190px;
  padding: 38px 48px;
  border-right: 1px solid var(--line);
}
.three-up article:last-child { border-right: 0; }
.feature-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 50%;
}
.feature-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.three-up h3 { margin: 0 0 5px; font-size: 23px; }
.three-up p { margin: 0; color: var(--muted); }
.learn { display: inline-block; margin-top: 12px; color: var(--primary); font-size: 14px; font-weight: 700; }
.learn:hover { text-decoration: underline; }

.split-image { display: grid; grid-template-columns: 1fr 1fr; }
.split-image .photo { min-height: 430px; background-size: cover; background-position: center; }
.photo.mission { background-image: url('../assets/photos/mission-airway.jpg'); }
.split-image .content {
  min-height: 430px;
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content h2,
.section h2,
.products h2 {
  margin: 0 0 15px;
  font-size: clamp(34px, 4vw, 51px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.content p { max-width: 590px; margin: 0; color: var(--muted); font-size: 17px; }
.content .button { align-self: flex-start; margin-top: 25px; }

.why {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.why-inner { position: relative; z-index: 1; padding: 68px 0; }
.why h2 { max-width: 680px; margin: 0 0 12px; font-size: clamp(34px, 4vw, 50px); line-height: 1.06; }
.why > .container p,
.why-inner > p { max-width: 720px; margin: 0; color: #d8e9e5; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 42px; }
.why-item { padding: 0 25px; text-align: center; border-right: 1px solid rgba(255,255,255,.3); }
.why-item:first-child { padding-left: 0; }
.why-item:last-child { padding-right: 0; border-right: 0; }
.why-item .symbol {
  width: 46px;
  height: 46px;
  margin: 0 auto 9px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  font-size: 21px;
}
.why-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 11px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
}
.why-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-item strong { display: block; font-size: 15px; }
.why-item span { display: block; margin-top: 3px; color: #c7dad6; font-size: 13px; }

.products { padding: 76px 0; }
.products-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.products-head p { max-width: 650px; margin: 8px 0 0; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  display: block;
  padding-bottom: 14px;
  background: #fff;
  border-bottom: 2px solid transparent;
  transition: transform 160ms ease, border-color 160ms ease;
}
.product-card:hover { transform: translateY(-3px); border-color: var(--primary); }
.product-card img { width: 100%; aspect-ratio: 1.65 / 1; object-fit: cover; border-radius: var(--radius); }
.product-card h3 { margin: 12px 0 3px; font-size: 17px; }
.product-card p { margin: 0; color: var(--muted); font-size: 14px; }

.cta-band { padding: 58px 0; color: #fff; background: var(--primary); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta-band h2 { margin: 0 0 8px; font-size: clamp(30px, 4vw, 43px); line-height: 1.08; }
.cta-band p { max-width: 710px; margin: 0; color: #d8e9e5; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; flex: 0 0 auto; }

.breadcrumb {
  color: var(--muted);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.breadcrumb ol {
  min-height: 46px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  list-style: none;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  font-size: 13px;
}
.breadcrumb ol::-webkit-scrollbar { display: none; }
.breadcrumb li { display: inline-flex; align-items: center; }
.breadcrumb li + li::before {
  margin: 0 10px;
  color: #9aa9a5;
  content: "/";
}
.breadcrumb a { color: var(--primary); font-weight: 700; }
.breadcrumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb [aria-current="page"] { color: var(--muted); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 82px;
  background: linear-gradient(135deg, var(--primary-light), #fff);
}
.page-hero::after {
  position: absolute;
  width: 340px;
  height: 340px;
  right: -110px;
  top: -170px;
  content: "";
  border: 70px solid rgba(0,92,230,.06);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 940px; margin: 0 0 12px; font-size: clamp(46px, 6vw, 72px); line-height: 1.04; letter-spacing: -.045em; }
.page-hero p { max-width: 790px; margin: 0; color: var(--muted); font-size: 19px; }

.section { padding: 76px 0; }
.soft { background: var(--soft); }
.section-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 55px; align-items: start; }
.section p { color: var(--muted); }
.lead { font-size: 18px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill { padding: 8px 14px; color: var(--data); background: var(--data-soft); border: 1px solid var(--line); border-radius: 4px; font-size: 13px; font-weight: 600; letter-spacing: .01em; }
.card-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.info-card { min-height: 160px; padding: 24px; background: #fff; border: 1px solid var(--line); }
.info-card h3 { margin: 0 0 7px; font-size: 19px; }
.info-card p { margin: 0; color: var(--muted); }
.status { display: inline-block; margin-top: 15px; padding: 5px 10px; color: var(--data); background: var(--data-soft); border: 1px solid var(--line); border-radius: 4px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.callout { padding: 30px; background: #F2F6FC; border-left: 4px solid var(--accent); }
.callout strong { display: block; margin-bottom: 6px; }
.callout span { color: var(--muted); }

.identifier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); gap: 16px; margin-top: 28px; }
.identifier-card { padding: 21px 22px; background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 22px rgba(8,67,62,.05); }
.identifier-card span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.identifier-card strong { display: block; margin-top: 4px; color: var(--data); font-size: 16px; font-weight: 700; letter-spacing: -.01em; overflow-wrap: anywhere; font-variant-numeric: tabular-nums; }

.table-wrap { overflow: auto; border: 1px solid var(--line); }
.data-table { width: 100%; border-collapse: collapse; background: #fff; }
.data-table th, .data-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: top; }
.data-table tr:last-child th, .data-table tr:last-child td { border-bottom: 0; }
.data-table th { width: 28%; color: var(--data); background: var(--data-soft); font-size: 12px; letter-spacing: .09em; text-transform: uppercase; }
.pending { color: #3D6BAF; font-weight: 700; }

.product-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product-detail-card { overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 34px rgba(8,67,62,.07); }
.product-detail-card img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
.product-detail-body { padding: 24px; }
.product-detail-body h2 { margin: 0 0 9px; font-size: 28px; line-height: 1.15; letter-spacing: -.025em; }
.product-detail-body p { margin: 0; color: var(--muted); }
.product-detail-body ul { margin: 14px 0 0; padding-left: 20px; color: var(--muted); }

.team {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 58px;
  align-items: start;
}
.leadership-visual {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  background: var(--deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}
.leadership-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(6,47,43,.88) 100%);
  pointer-events: none;
}
.leadership-visual img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: 43% center;
}
.leadership-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.team-copy h2 { margin: 0 0 8px; }
.team-copy .title { margin-bottom: 18px; color: var(--data); font-weight: 700; }
.team-copy ul { padding-left: 20px; color: var(--muted); }
.team-copy a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; }
.contact-card { padding: 30px; background: #fff; border: 1px solid var(--line); }
.contact-card h2 { margin: 0 0 14px; }
.contact-item { margin: 20px 0; }
.contact-item strong { display: block; }
.contact-item span, .contact-item a { color: var(--muted); }
.contact-item a:hover { color: var(--primary); text-decoration: underline; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfdad7;
  border-radius: 3px;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); outline: 2px solid rgba(0,92,230,.18); outline-offset: 1px; }
.field textarea { min-height: 150px; resize: vertical; }
.notice { margin-top: 12px; color: var(--muted); font-size: 12px; }
.form-status { margin-top: 16px; padding: 13px 14px; border-radius: 3px; }
.form-status[hidden] { display: none; }
.form-status.success { color: #184f31; background: #e6f4ea; border: 1px solid #bfe3c8; }
.form-status.ready { color: var(--deep); background: var(--accent-soft); border: 1px solid #B3CFFF; }
.form-status.ready a { color: var(--primary); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.form-status.error { color: #8a1f1a; background: #fdecea; border: 1px solid #f2c1bd; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.legal-body {
  width: min(860px, 100%);
  margin: 0 auto;
}
.legal-body h1 {
  margin: 0 0 10px;
  font-size: clamp(42px, 6vw, 62px);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.legal-body h2 {
  margin: 38px 0 10px;
  color: var(--data);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.18;
}
.legal-body h3 { margin: 30px 0 8px; font-size: 21px; }
.legal-body p,
.legal-body li { color: var(--muted); font-size: 17px; }
.legal-body p { margin: 0 0 18px; }
.legal-body ul,
.legal-body ol { padding-left: 24px; }
.legal-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.legal-body .updated { margin-bottom: 32px; color: #71807c; font-size: 14px; }
.legal-body .updated strong { color: var(--ink); }

.error-page {
  min-height: 570px;
  padding: 92px 0;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 75% 25%, rgba(0,102,255,.12), transparent 28%),
    linear-gradient(135deg, var(--primary-light), #fff 62%);
}
.error-page .container { max-width: 790px; text-align: center; }
.error-page h1 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(94px, 15vw, 150px);
  line-height: .86;
  letter-spacing: -.075em;
}
.error-page h2 { margin: 24px 0 10px; font-size: clamp(34px, 5vw, 52px); line-height: 1.08; }
.error-page p { max-width: 620px; margin: 0 auto; color: var(--muted); font-size: 18px; }
.error-actions { margin-top: 30px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.thank-you-section {
  min-height: 570px;
  padding: 82px 0;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 24% 18%, rgba(0,102,255,.10), transparent 26%),
    var(--soft);
}
.thank-you-card {
  width: min(650px, 100%);
  margin: 0 auto;
  padding: 54px 48px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}
.check-icon { width: 76px; height: 76px; margin: 0 auto 22px; color: var(--primary); }
.thank-you-card h1 { margin: 0 0 12px; font-size: clamp(38px, 6vw, 55px); line-height: 1.08; letter-spacing: -.04em; }
.thank-you-card p { max-width: 500px; margin: 0 auto; color: var(--muted); font-size: 18px; }
.thank-you-card .button { margin-top: 28px; }

.footer { padding: 58px 0 22px; color: #DCE5F1; background: var(--deep); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(270px, 1.35fr) minmax(135px, .62fr) minmax(145px, .68fr) minmax(205px, .88fr);
  gap: 38px;
  align-items: start;
}
.footer-logo { width: 270px; margin-bottom: 15px; }
.footer h4 { margin: 0 0 10px; color: #fff; }
.footer p { margin: 0; color: #AEBAC9; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer-legal {
  margin-top: 18px;
  color: rgba(210,226,223,.68);
  font-size: 12px;
  line-height: 1.9;
}
.footer-legal a {
  padding: 4px 1px;
  color: rgba(255,255,255,.78);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.35);
  text-underline-offset: 3px;
}
.footer-legal a:hover { color: #fff; text-decoration-color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; margin-top: 35px; padding-top: 18px; color: #9EABBC; border-top: 1px solid rgba(255,255,255,.15); font-size: 12px; }

@media (max-width: 1100px) {
  .hero-stamp { right: 2.5%; }
  .menu a { padding-inline: 10px; }
  .menu a:not(.cta)::after { left: 10px; right: 10px; }
  .menu .cta { margin-left: 5px; }
}

@media (max-width: 1030px) {
  .menu-toggle { display: inline-flex; }
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 32px rgba(26,32,44,.12);
  }
  .menu.open { display: flex; }
  .menu a { justify-content: flex-start; border-radius: 3px; }
  .menu a:not(.cta)::after { display: none; }
  .menu .cta { justify-content: center; margin-left: 0; }
  .hero-stamp { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .why-item:nth-child(2) { border-right: 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .section-grid, .team, .contact { grid-template-columns: 1fr; }
  .leadership-visual { max-width: 720px; min-height: 350px; }
  .leadership-visual img { height: 350px; object-position: center; }
  .split-image { grid-template-columns: 1fr; }
  .split-image .photo { min-height: 330px; }
  .split-image .content { min-height: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .three-up article { padding: 30px; }
  .identifier-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --header-height: 76px; }
  .container { width: min(92%, 680px); }
  .utility-label { display: none; }
  .utility-inner { justify-content: center; }
  .utility-data { width: 100%; justify-content: space-between; gap: 10px; }
  .brand img { width: 270px; }
  .hero { min-height: 680px; }
  .hero-inner { min-height: 680px; align-items: flex-start; }
  .hero-copy { padding: 70px 0; }
  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.96) 47%, rgba(255,255,255,.30) 80%),
      url('../assets/photos/hero-clinician.jpg');
    background-position: 62% center;
  }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .three-up { grid-template-columns: 1fr; }
  .three-up article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .three-up article:last-child { border-bottom: 0; }
  .split-image .content { padding: 55px 7%; }
  
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item { padding-inline: 12px; }
  .why-item:nth-child(2), .why-item:nth-child(4) { border-right: 0; }
  .products-head { display: block; }
  .products-head .button { margin-top: 18px; }
  .product-detail-grid, .card-list, .form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 6px; }
  .identifier-grid { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 68px 0 62px; }
  .legal-body { margin: 0; }
  .error-page, .thank-you-section { min-height: 500px; padding: 70px 0; }
  .thank-you-card { padding: 44px 30px; }
}


@media (max-width: 480px) {
  .utility-data span:last-child { display: none; }
  .utility-data { justify-content: center; }
  .brand img { width: 235px; }
  .hero-actions, .cta-actions { display: grid; width: 100%; }
  .button { width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 22px; }
  .why-item, .why-item:nth-child(2), .why-item:nth-child(4) { padding: 0; border-right: 0; }
  .leadership-visual { min-height: 300px; }
  .leadership-visual img { height: 300px; }
  .contact-card { padding: 23px; }
  .data-table th { width: 36%; }
  .breadcrumb ol { min-height: 42px; font-size: 12px; }
  .error-actions { display: grid; }
  .error-actions .button { width: 100%; }
  .thank-you-card { padding: 38px 22px; }
  .check-icon { width: 66px; height: 66px; }
}


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

body { color:#1A202C; }


/* Refreshed leadership presentation */
.leadership-grid { display:grid; gap:42px; }
.leader-profile { display:grid; grid-template-columns:minmax(280px, 38%) 1fr; gap:42px; align-items:start; padding:34px; background:#fff; border:1px solid var(--line); border-radius:8px; box-shadow:0 18px 45px rgba(26,32,44,.07); }
.leader-photo { margin:0; overflow:hidden; border-radius:6px; background:var(--primary-light); aspect-ratio:4/5; }
.leader-photo img { display:block; width:100%; height:100%; object-fit:cover; object-position:center 20%; }
.leader-photo.kim img { object-position:center 18%; }
.leader-copy h2 { margin:5px 0 4px; font-size:clamp(32px,4vw,46px); line-height:1.05; letter-spacing:-.025em; }
.leader-copy .title { margin-bottom:20px; color:var(--primary); font-weight:800; }
.leader-copy p { color:var(--muted); font-size:16px; line-height:1.7; }
.leader-copy .lead { color:var(--ink); font-size:18px; font-weight:650; }
.leader-contact { margin-top:22px; }
.leader-contact a, .leader-copy a { color:var(--primary); font-weight:750; text-decoration:none; }
.leader-contact a:hover, .leader-copy a:hover { text-decoration:underline; }

/* Federal credentials library */
.credentials-section { background:linear-gradient(180deg,#fff 0%,var(--primary-light) 100%); }
.credentials-head { display:flex; align-items:end; justify-content:space-between; gap:30px; margin-bottom:28px; }
.credentials-head > div { max-width:760px; }
.credentials-head h2 { margin:6px 0 10px; }
.credentials-head p { margin:0; color:var(--muted); }
.credential-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.credential-card { display:flex; gap:18px; min-height:220px; padding:26px; background:#fff; border:1px solid #DCE7F7; border-radius:7px; box-shadow:0 12px 30px rgba(26,32,44,.06); }
.credential-icon { flex:0 0 44px; width:44px; height:44px; display:grid; place-items:center; border-radius:50%; background:var(--primary); color:#fff; font-size:12px; font-weight:900; letter-spacing:.08em; }
.credential-card h3 { margin:2px 0 10px; font-size:20px; }
.credential-card p { margin:0 0 18px; color:var(--muted); font-size:15px; line-height:1.6; }
.credential-card .status { display:inline-block; padding:7px 10px; border-radius:999px; color:#174A8B; background:#EAF2FF; font-size:12px; font-weight:800; }
.credential-note { margin:22px 0 0; color:var(--muted); font-size:13px; }
.credential-note a { color:var(--primary); font-weight:750; }
@media(max-width:900px){.credential-grid{grid-template-columns:1fr}.credentials-head{align-items:flex-start;flex-direction:column}.credentials-head .button{width:auto}.leader-profile{grid-template-columns:minmax(230px,34%) 1fr;gap:28px;padding:26px}}
@media(max-width:760px){.leader-profile{grid-template-columns:1fr}.leader-photo{max-width:420px;width:100%}.credentials-head .button{width:100%}}


/* ---- Feedback v6 additions ---- */

/* Anchored headings must clear the sticky header when linked to directly. */
[id] { scroll-margin-top: calc(var(--header-height) + 58px); }

/* Combined contact hero: details live with the intro, not in a separate card. */
.contact-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: start; }
.contact-hero-grid > div:first-child { min-width: 0; }
.contact-details { padding: 26px 28px; background: #fff; border: 1px solid var(--line); border-radius: 6px; box-shadow: var(--shadow); }
.contact-details h2 { margin: 0 0 4px; font-size: 21px; letter-spacing: -.01em; }
.contact-details > p { margin: 0 0 6px; color: var(--muted); font-size: 15px; }
.contact-details .contact-item { margin: 16px 0 0; }
.contact-details .contact-item strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; color: var(--data); }
.contact-details .contact-item span { color: var(--ink); }
.contact-details .contact-item a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.contact-ids { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; color: var(--data); font-variant-numeric: tabular-nums; }
.contact-ids strong { display: block; margin-bottom: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); font-weight: 600; }

/* Quote form is now the page's single focused card. */
.quote-panel { width: min(960px, 100%); margin: 0 auto; padding: 34px 36px; background: #fff; border: 1px solid var(--line); border-radius: 6px; box-shadow: var(--shadow); }
.quote-panel > h2 { margin: 0 0 4px; font-size: clamp(30px, 4vw, 40px); line-height: 1.1; letter-spacing: -.03em; }
.quote-panel > .quote-intro { margin: 0 0 22px; color: var(--muted); }

@media (max-width: 980px) {
  .contact-hero-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  .quote-panel { padding: 26px 20px; }
  .contact-details { padding: 22px; }
}
