﻿:root {
  --page: #f3f8f8;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --ink: #16202c;
  --muted: #536170;
  --line: #d8e4e6;
  --primary: #0a6f72;
  --primary-dark: #07585b;
  --primary-soft: #e6f5f4;
  --shadow: 0 22px 60px rgba(13, 61, 67, 0.16);
  --shadow-soft: 0 10px 30px rgba(13, 61, 67, 0.11);
  --radius: 8px;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(9, 111, 114, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fbfb 0%, var(--page) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin: 18px auto 0;
  padding: 14px 20px;
  border: 1px solid rgba(216, 228, 230, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 28px rgba(15, 63, 70, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.primary-nav,
.header-cta,
.btn,
.trust-row span,
.path-card {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.brand-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.primary-nav {
  justify-content: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 650;
}

.primary-nav a {
  text-decoration: none;
  color: #263342;
}

.primary-nav a:hover {
  color: var(--primary);
}

.header-cta {
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 5px;
  background: var(--primary);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(10, 111, 114, 0.22);
}

.header-cta svg,
.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  width: min(calc(100% - 48px), var(--max));
  min-height: 610px;
  margin: -1px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 0 10px 10px;
  background: linear-gradient(90deg, #ffffff 0%, #f7fbfb 53%, #edf5f5 100%);
  box-shadow: var(--shadow);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 44%, rgba(255, 255, 255, 0.25) 70%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 72% 41%, rgba(7, 88, 91, 0.10), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(230, 245, 244, 0.46));
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px 390px;
  gap: 34px;
  align-items: center;
  min-height: inherit;
  padding: 58px 40px 44px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #101827;
  font-size: clamp(46px, 5vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--primary);
  font-style: normal;
}

.hero-lede {
  max-width: 560px;
  margin: 22px 0 26px;
  color: #3b4b58;
  font-size: 16px;
  font-weight: 550;
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) minmax(180px, 1fr) minmax(190px, 1fr);
  gap: 12px;
  max-width: 690px;
}

.btn {
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(10, 111, 114, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: #172331;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  gap: 16px;
  max-width: 700px;
  margin-top: 34px;
}

.trust-row span {
  gap: 10px;
  color: #263342;
  font-size: 12px;
  font-weight: 800;
}

.trust-row svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.path-panel {
  position: relative;
  z-index: 2;
  padding: 24px;
  border: 1px solid rgba(216, 228, 230, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.path-panel h2 {
  margin: 0 0 18px;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.path-card {
  position: relative;
  width: 100%;
  gap: 14px;
  min-height: 76px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  text-decoration: none;
}

.path-card + .path-card {
  margin-top: 12px;
}

.path-card:hover {
  border-color: rgba(10, 111, 114, 0.4);
  box-shadow: 0 10px 26px rgba(13, 61, 67, 0.1);
  transform: translateY(-1px);
}

.path-icon {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
}

.path-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.path-card strong {
  display: block;
  color: #1b2935;
  font-size: 14px;
}

.path-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.chevron {
  width: 20px;
  height: 20px;
  margin-left: auto;
  color: #7b8995;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.machine-visual {
  position: absolute;
  right: -30px;
  bottom: -8px;
  width: min(46vw, 620px);
  height: 560px;
  pointer-events: none;
}

.scanner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.scanner-ring {
  position: absolute;
  right: 34px;
  bottom: 100px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 47%, #f9fcfc 0 28%, transparent 29%),
    radial-gradient(circle at 48% 47%, #d9e2e5 0 37%, #f8fbfb 38% 62%, #cfd9de 63% 64%, #ffffff 66%);
  box-shadow:
    inset -18px -22px 35px rgba(32, 56, 68, 0.10),
    inset 18px 18px 46px rgba(255, 255, 255, 0.94),
    0 30px 60px rgba(35, 66, 76, 0.12);
}

.scanner-ring::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 50%;
  width: 72px;
  height: 38px;
  border: 1px solid #d6e0e4;
  border-radius: 6px;
  background: linear-gradient(180deg, #ecf5f6, #ffffff);
  transform: translateX(-50%);
}

.scanner-ring::after {
  content: "";
  position: absolute;
  top: 70px;
  right: 50px;
  width: 14px;
  height: 118px;
  border-radius: 999px;
  background: linear-gradient(#8f9ba3, #e6eef0 20%, #d4dde1);
  box-shadow:
    -4px 34px 0 #d8e1e5,
    9px 80px 0 #eef3f4;
}

.scanner-hole {
  position: absolute;
  inset: 137px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 47%, rgba(255, 255, 255, 0.1), rgba(128, 146, 154, 0.34)),
    linear-gradient(135deg, #cad6da, #ffffff 62%, #bfcbd0);
  box-shadow: inset 16px 18px 42px rgba(24, 54, 62, 0.24);
}

.scanner-label {
  position: absolute;
  top: 88px;
  left: 50%;
  color: #6b7b84;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  transform: translateX(-50%);
}

.scanner-bed {
  position: absolute;
  right: 72px;
  bottom: 68px;
  width: 430px;
  height: 82px;
  border-radius: 44px 0 0 44px;
  background:
    linear-gradient(180deg, #ffffff 0%, #eef4f5 48%, #cbd7db 100%);
  box-shadow: 0 26px 44px rgba(34, 68, 77, 0.16);
}

.scanner-bed::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 90px;
  width: 250px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f7fbfc, #dce7ea);
}

.scanner-bed span {
  position: absolute;
  top: 30px;
  left: 0;
  width: 270px;
  height: 16px;
  border-radius: 999px;
  background: #d7e1e5;
}

.mockup-spacer {
  display: grid;
  width: min(calc(100% - 48px), var(--max));
  min-height: 170px;
  margin: 28px auto;
  place-items: center;
  border: 1px dashed #bdd1d2;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
    width: 44px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #ffffff;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 2px 0;
    border-radius: 99px;
    background: var(--ink);
  }

  .primary-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .primary-nav,
  .site-header.is-open .header-cta {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.is-open .primary-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px 24px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .header-cta {
    width: fit-content;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .machine-visual {
    opacity: 0.28;
  }
}

@media (max-width: 840px) {
  .site-header,
  .hero,
  .mockup-spacer {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 44px 24px 34px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-actions,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .machine-visual {
    display: none;
  }

  .path-panel {
    max-width: 480px;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    margin-top: 10px;
    padding: 12px;
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-lede {
    font-size: 15px;
  }
}

/* Real homepage image asset used in the hero mockup. This overrides the earlier CSS-only scanner placeholder. */
.hero-media {
  position: absolute;
  right: -30px;
  top: 0;
  bottom: 0;
  width: min(46vw, 620px);
  height: 100%;
  margin: 0;
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.32) 36%, rgba(255,255,255,0) 72%),
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(243,248,248,0.42));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.82) contrast(0.98);
}

@media (max-width: 1120px) {
  .hero-media {
    opacity: 0.28;
  }
}

@media (max-width: 840px) {
  .hero-media {
    display: none;
  }
}

/* Refined hero composition: contained image + clear start module. */
.hero {
  min-height: auto;
  background: linear-gradient(120deg, #ffffff 0%, #f7fbfb 62%, #edf6f6 100%);
}

.hero-bg {
  background:
    radial-gradient(circle at 82% 22%, rgba(10, 111, 114, 0.09), transparent 34%),
    radial-gradient(circle at 8% 8%, rgba(10, 111, 114, 0.07), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(230, 245, 244, 0.34));
}

.hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(30px, 5vw, 64px);
  min-height: 620px;
  padding: 58px clamp(32px, 4.5vw, 58px) 48px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.brand-name,
.eyebrow,
.hero h1,
.path-kicker,
.path-panel h2 {
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
}

.hero-lede {
  max-width: 570px;
}

.hero-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 660px;
}

.btn {
  min-height: 50px;
  padding: 0 14px;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.trust-row {
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 14px;
  max-width: 650px;
  margin-top: 30px;
}

.trust-row span {
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  line-height: 1.25;
}

.hero-side {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 18px;
}

.hero-media-card {
  position: relative;
  height: clamp(280px, 31vw, 360px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.hero-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(7, 88, 91, 0.12));
  pointer-events: none;
}

.hero-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(0.99);
}

.path-panel {
  position: static;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.path-kicker {
  margin: 0 0 5px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.path-panel h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.15;
}

.path-card {
  min-height: 64px;
  padding: 12px;
  background: #ffffff;
}

.path-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.path-icon svg {
  width: 23px;
  height: 23px;
}

.path-card small {
  margin-top: 2px;
  line-height: 1.25;
}

@media (max-width: 1120px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy,
  .hero-actions,
  .trust-row,
  .hero-side {
    max-width: 760px;
  }

  .hero-media-card {
    height: 330px;
  }
}

@media (max-width: 840px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 44px 24px 34px;
  }

  .hero-actions,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero-media-card {
    height: 280px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-side {
    gap: 14px;
  }

  .path-panel {
    padding: 16px;
  }
}


.hero-logo {
  display: block;
  width: 164px;
  height: 72px;
  margin: 0 0 20px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 560px) {
  .hero-logo {
    width: 136px;
    height: 60px;
    margin-bottom: 18px;
  }
}
/* Real logo + Font Awesome icon refinements. */
.brand {
  min-width: 156px;
}

.brand-logo {
  display: block;
  width: 156px;
  height: 58px;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
}

.header-cta i,
.btn i {
  flex: 0 0 auto;
  font-size: 15px;
  line-height: 1;
}

.trust-row i {
  display: inline-grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--primary);
  font-size: 23px;
  line-height: 1;
}

.path-icon i {
  color: currentColor;
  font-size: 20px;
  line-height: 1;
}

.path-card .chevron {
  display: inline-grid;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-left: auto;
  place-items: center;
  color: #7b8995;
  font-size: 15px;
  line-height: 1;
}

@media (max-width: 560px) {
  .brand {
    min-width: 128px;
  }

  .brand-logo {
    width: 128px;
    height: 50px;
  }
}



/* Full-width section architecture: keep content constrained, let bands span edge to edge. */
.site-header {
  top: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2 + 20px));
  border-width: 0 0 1px;
  border-radius: 0;
}

.hero {
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.mockup-spacer {
  width: 100%;
  margin: 0;
  border-width: 1px 0 0;
  border-radius: 0;
}

.mockup-spacer p {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 840px) {
  .site-header,
  .hero,
  .mockup-spacer {
    width: 100%;
  }

  .site-header {
    padding-inline: 14px;
  }

  .hero-inner,
  .mockup-spacer p {
    width: min(calc(100% - 28px), var(--max));
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 0;
    margin: 0;
    padding: 12px 14px;
  }
}

.section-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-band {
  padding: 78px 0 72px;
  background: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

.intro-copy h2,
.section-heading h2 {
  margin: 0;
  color: #111a28;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.05;
}

.intro-copy p,
.section-heading p {
  margin: 20px 0 0;
  color: #435161;
  font-size: 17px;
  line-height: 1.7;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.proof-card {
  min-height: 188px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcfc;
  box-shadow: 0 12px 30px rgba(13, 61, 67, 0.07);
}

.proof-card i {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 20px;
}

.proof-card h3 {
  margin: 0 0 8px;
  color: #172331;
  font-size: 18px;
  line-height: 1.25;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.services-band {
  padding: 86px 0 98px;
  background: linear-gradient(180deg, #f3f8f8 0%, #ffffff 100%);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(13, 61, 67, 0.08);
}

.service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card-body {
  padding: 22px;
}

.service-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 10px;
  color: #172331;
  font-size: 22px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 1120px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .section-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .intro-band,
  .services-band {
    padding: 62px 0;
  }

  .proof-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy p,
  .section-heading p {
    font-size: 16px;
  }
}

.why-band {
  padding: 86px 0 80px;
  background: #ffffff;
}

.why-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.why-feature {
  text-align: center;
}

.why-feature i {
  display: inline-grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(10, 111, 114, 0.16);
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 24px;
}

.why-feature h3 {
  margin: 0 0 8px;
  color: #172331;
  font-size: 16px;
  line-height: 1.25;
}

.why-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.comparison-band {
  padding: 86px 0 98px;
  background: linear-gradient(180deg, #f3f8f8 0%, #ffffff 100%);
}

.comparison-shell {
  display: grid;
  gap: 34px;
}

.comparison-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.comparison-heading h2 {
  margin: 0;
  color: #111a28;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.05;
}

.comparison-heading p {
  margin: 0;
  color: #435161;
  font-size: 17px;
  line-height: 1.7;
}

.mri-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mri-option-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(13, 61, 67, 0.09);
}

.mri-option-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.mri-option-body {
  padding: 26px;
}

.mri-option-body h3 {
  margin: 0 0 16px;
  color: #172331;
  font-size: 24px;
  line-height: 1.2;
}

.mri-option-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.mri-option-body li {
  position: relative;
  padding-left: 22px;
}

.mri-option-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

.comparison-note {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border: 1px solid rgba(10, 111, 114, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.comparison-note p {
  max-width: 760px;
  margin: 0;
  color: #435161;
  font-size: 15px;
  line-height: 1.65;
}

.comparison-note .btn {
  flex: 0 0 auto;
}

@media (max-width: 1120px) {
  .why-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .comparison-heading,
  .mri-comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-heading p {
    max-width: 760px;
  }
}

@media (max-width: 840px) {
  .why-band,
  .comparison-band {
    padding: 62px 0;
  }

  .why-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .mri-option-card img {
    height: 230px;
  }

  .comparison-note {
    display: grid;
  }

  .comparison-note .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .why-feature-grid {
    grid-template-columns: 1fr;
  }

  .mri-option-body {
    padding: 22px;
  }
}

.workflow-band {
  padding: 86px 0 44px;
  background: #ffffff;
}

.workflow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.workflow-steps::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 111, 114, 0.35), transparent);
}

.workflow-step {
  position: relative;
  text-align: center;
}

.workflow-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid rgba(10, 111, 114, 0.2);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #e9f6f5);
  color: var(--primary);
  font-size: 24px;
  box-shadow: 0 12px 26px rgba(13, 61, 67, 0.09);
}

.workflow-step h3,
.safety-item h3 {
  margin: 0 0 8px;
  color: #172331;
  font-size: 15px;
  line-height: 1.25;
}

.workflow-step p,
.safety-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.safety-band {
  padding: 0 0 98px;
  background: #ffffff;
}

.safety-panel {
  padding: 34px 32px 28px;
  border: 1px solid rgba(10, 111, 114, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, #f5fbfb 0%, #ffffff 48%, #eaf6f6 100%);
  box-shadow: 0 18px 42px rgba(13, 61, 67, 0.08);
}

.safety-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.safety-heading h2 {
  font-size: clamp(30px, 2.6vw, 42px);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.safety-item {
  position: relative;
  padding: 0 18px;
  text-align: center;
}

.safety-item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  background: rgba(10, 111, 114, 0.14);
}

.safety-item i {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary);
  font-size: 21px;
  box-shadow: inset 0 0 0 1px rgba(10, 111, 114, 0.14);
}

.safety-note {
  margin: 30px 0 0;
  color: #314251;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1120px) {
  .workflow-steps,
  .safety-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .workflow-steps::before,
  .safety-item:not(:first-child)::before {
    display: none;
  }

  .workflow-step,
  .safety-item {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
  }
}

@media (max-width: 840px) {
  .workflow-band {
    padding: 62px 0 34px;
  }

  .safety-band {
    padding-bottom: 62px;
  }

  .safety-panel {
    padding: 28px 20px 24px;
  }

  .workflow-steps,
  .safety-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .workflow-steps,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .workflow-step,
  .safety-item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: start;
    text-align: left;
  }

  .workflow-icon,
  .safety-item i {
    width: 46px;
    height: 46px;
    margin: 0;
    font-size: 19px;
  }

  .workflow-step h3,
  .safety-item h3 {
    margin-top: 2px;
  }

  .workflow-step p,
  .safety-item p {
    grid-column: 2;
  }
}
.locations-band {
  padding: 92px 0;
  background: linear-gradient(180deg, #f3f8f8 0%, #ffffff 100%);
}

.locations-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.locations-header h2,
.transport-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #111a28;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.05;
}

.locations-header p,
.transport-copy p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #435161;
  font-size: 17px;
  line-height: 1.7;
}

.location-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: 10px;
  min-width: 360px;
}

.location-stats span {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.location-stats strong {
  color: var(--primary);
  font-size: 28px;
  line-height: 1;
}

.location-finder,
.resources-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(13, 61, 67, 0.08);
}

.location-toolbar {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.location-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: min(100%, 370px);
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--primary);
}

.location-search input {
  width: 100%;
  height: 44px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.location-filter-group,
.resource-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-filter-group button,
.resource-tabs button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #263342;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.location-filter-group button.is-active,
.resource-tabs button.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  padding: 22px;
}

.locations-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.location-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.location-card[hidden],
.resource-panel[hidden] {
  display: none;
}

.location-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.location-card-body {
  padding: 18px;
}

.location-card-head {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.location-status {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-card h3 {
  margin: 0 0 7px;
  color: #172331;
  font-size: 21px;
  line-height: 1.2;
}

.location-modality,
.location-card p,
.location-card address {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.location-modality {
  margin: 0 0 10px;
  font-weight: 800;
}

.location-card address {
  margin: 0 0 10px;
  font-style: normal;
}

.location-phone {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 12px;
  color: #314251;
  font-weight: 800;
}

.location-card a:not(.btn) {
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.location-card a:not(.btn)::after {
  content: " ->";
}

.coming-location {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 160px;
}

.coming-location-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin-left: 18px;
  place-items: center;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 28px;
}

.location-map-card {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f2f9f9);
}

.map-visual {
  position: relative;
  height: 330px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(10, 111, 114, 0.08) 0 1px, transparent 1px 36px),
    linear-gradient(45deg, rgba(10, 111, 114, 0.06) 0 1px, transparent 1px 32px),
    linear-gradient(180deg, #e9f5f7 0%, #d9edf0 100%);
}

.map-visual::before {
  content: "";
  position: absolute;
  inset: 34px 102px 28px 128px;
  border-radius: 54% 46% 58% 42%;
  background: rgba(255, 255, 255, 0.78);
  transform: rotate(16deg);
}

.map-pin {
  position: absolute;
  z-index: 1;
  width: 17px;
  height: 17px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 10px 18px rgba(13, 61, 67, 0.2);
}

.map-pin.soon {
  background: #8ba4aa;
}

.pin-miami { left: 48%; bottom: 16%; }
.pin-broward { left: 52%; bottom: 23%; }
.pin-wpb { left: 58%; bottom: 33%; }
.pin-fort-myers { left: 35%; bottom: 32%; }
.pin-orlando { left: 56%; bottom: 54%; }
.pin-jacksonville { left: 63%; top: 17%; }

.location-map-card h3,
.transport-features h3 {
  margin: 0 0 8px;
  color: #172331;
  font-size: 20px;
  line-height: 1.25;
}

.location-map-card p,
.transport-features p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.location-empty {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-weight: 800;
}

.transport-band {
  padding: 86px 0;
  background: var(--primary);
  color: #ffffff;
}

.transport-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.transport-copy .section-kicker,
.transport-copy h2,
.transport-copy p {
  color: #ffffff;
}

.transport-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.transport-copy .btn-primary {
  margin-top: 28px;
  background: #ffffff;
  color: var(--primary-dark);
}

.transport-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.transport-features article {
  min-height: 166px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.transport-features i {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 20px;
}

.transport-features h3,
.transport-features p {
  color: #ffffff;
}

.transport-features p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.resources-band {
  padding: 92px 0 104px;
  background: #ffffff;
}

.resources-shell {
  padding: 0 0 28px;
}

.resource-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.resource-tabs button {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  min-height: 48px;
}

.resource-tabs button:last-child {
  border-right: 0;
}

.resource-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 28px 24px;
}

.resource-card {
  display: grid;
  gap: 12px;
  min-height: 134px;
  padding: 18px;
  place-items: center;
  border-right: 1px solid var(--line);
  color: #172331;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.resource-card:last-child {
  border-right: 0;
}

.resource-card:hover {
  color: var(--primary);
  background: #f8fcfc;
}

.resource-card i {
  color: var(--primary);
  font-size: 34px;
}

.resources-cta {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

@media (max-width: 1120px) {
  .locations-header,
  .location-layout,
  .transport-shell {
    grid-template-columns: 1fr;
  }

  .location-stats {
    min-width: 0;
  }

  .location-map-card {
    position: static;
  }

  .resource-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .resource-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 840px) {
  .locations-band,
  .transport-band,
  .resources-band {
    padding: 62px 0;
  }

  .location-toolbar {
    display: grid;
  }

  .locations-list,
  .location-stats,
  .transport-features,
  .resource-panel {
    grid-template-columns: 1fr;
  }

  .resource-tabs {
    grid-template-columns: 1fr;
  }

  .resource-tabs button,
  .resource-tabs button:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .location-layout {
    padding: 14px;
  }

  .coming-location {
    grid-template-columns: 1fr;
  }

  .coming-location-icon {
    margin: 18px 0 0 18px;
  }

  .map-visual {
    height: 260px;
  }
}
.location-control-card {
  display: grid;
  gap: 18px;
}

.location-panel-kicker {
  margin: 0;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-control-card .location-search {
  min-width: 0;
  width: 100%;
}

.location-control-card .location-filter-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.location-control-card .location-filter-group button {
  min-height: 42px;
  padding: 0 12px;
}

.location-panel-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.location-panel-stats span {
  display: grid;
  gap: 4px;
  min-height: 78px;
  place-items: center;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.location-panel-stats strong {
  color: var(--primary);
  font-size: 26px;
  line-height: 1;
}

.location-panel-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 8px;
  background: var(--primary-soft);
}

.location-panel-note i {
  color: var(--primary);
  font-size: 18px;
  line-height: 1.4;
}

.location-panel-note p {
  margin: 0;
  font-size: 13px;
}

.location-control-card .btn {
  width: 100%;
}

@media (max-width: 1120px) {
  .location-control-card {
    order: -1;
  }
}

@media (max-width: 560px) {
  .location-control-card .location-filter-group,
  .location-panel-stats {
    grid-template-columns: 1fr;
  }
}
.doctors-band {
  padding: 92px 0 100px;
  background: linear-gradient(180deg, #f3f8f8 0%, #ffffff 100%);
}

.doctors-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  margin-bottom: 34px;
}

.doctors-header h2 {
  margin: 0;
  color: #111a28;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.04;
}

.doctors-header > p {
  margin: 0;
  color: #435161;
  font-size: 17px;
  line-height: 1.7;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.doctor-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(13, 61, 67, 0.08);
}

.doctor-card img {
  display: block;
  width: 100%;
  height: 238px;
  padding: 18px;
  object-fit: contain;
  object-position: center;
}

.doctor-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 24px;
}

.doctor-role {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 0;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.doctor-card h3 {
  margin: 0 0 12px;
  color: #111a28;
  font-size: 23px;
  line-height: 1.2;
}

.doctor-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.doctor-card a {
  margin-top: auto;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.leadership-panel {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(13, 61, 67, 0.08);
}

.leadership-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  object-fit: cover;
  background: #edf6f6;
}

.leadership-panel .section-kicker {
  margin-bottom: 10px;
}

.leadership-panel h3 {
  margin: 0 0 10px;
  color: #111a28;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.15;
}

.leadership-panel p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.leadership-actions {
  display: grid;
  gap: 12px;
  min-width: 210px;
}

.leadership-actions .btn-secondary {
  background: #ffffff;
}

@media (max-width: 1120px) {
  .doctors-header {
    grid-template-columns: 1fr;
  }

  .leadership-panel {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .leadership-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .doctors-band {
    padding: 62px 0;
  }

  .doctors-header {
    gap: 18px;
  }

  .leadership-panel {
    grid-template-columns: 1fr;
  }

  .doctor-card img {
    height: 220px;
  }

  .leadership-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .doctor-card-body,
  .leadership-panel {
    padding: 18px;
  }
}



.reviews-payment-band {
  padding: 92px 0 104px;
  background: #ffffff;
}

.reviews-payment-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.reviews-panel,
.insurance-panel {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(13, 61, 67, 0.08);
}

.reviews-heading {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.reviews-heading h2,
.insurance-heading h2 {
  margin: 0;
  color: #111a28;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.08;
}

.rating-summary {
  display: grid;
  flex: 0 0 auto;
  gap: 3px;
  min-width: 132px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcfc;
  text-align: center;
}

.review-stars {
  display: inline-flex;
  gap: 2px;
  color: #f5ad1b;
  font-size: 14px;
  line-height: 1;
}

.rating-summary strong {
  color: #111a28;
  font-size: 28px;
  line-height: 1;
}

.rating-summary small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-slider {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.review-track {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 12px;
  align-items: stretch;
  min-height: 286px;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 252px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(13, 61, 67, 0.05);
  opacity: 0.72;
  transform: scale(0.94);
  transition: border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.review-card[hidden] {
  display: none;
}

.review-card.is-active {
  border-color: rgba(10, 111, 114, 0.36);
  box-shadow: 0 18px 42px rgba(13, 61, 67, 0.14);
  opacity: 1;
  transform: translateY(-5px) scale(1.02);
  z-index: 1;
}

.review-author {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.review-avatar {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #12a0a3);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.review-author strong {
  display: block;
  color: #111a28;
  font-size: 14px;
  line-height: 1.15;
}

.review-author small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.review-card p {
  margin: 14px 0 0;
  color: #26384a;
  font-size: 14px;
  line-height: 1.6;
}

.review-card.is-active p {
  color: #172331;
  font-size: 15px;
}

.review-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.review-nav,
.review-dot {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--primary);
  cursor: pointer;
}

.review-nav {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(13, 61, 67, 0.08);
}

.review-nav:hover,
.review-dot:hover,
.review-dot.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.review-dots {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.review-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  font-size: 0;
}

.review-dot.is-active {
  width: 22px;
}

.review-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.reviews-cta,
.insurance-cta {
  width: fit-content;
  margin-top: auto;
}

.insurance-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.insurance-heading p {
  margin: 16px 0 0;
  color: #435161;
  font-size: 16px;
  line-height: 1.65;
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.insurance-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcfc;
}

.insurance-item i {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 19px;
}

.insurance-item h3 {
  margin: 0 0 6px;
  color: #111a28;
  font-size: 16px;
  line-height: 1.2;
}

.insurance-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .reviews-payment-shell {
    grid-template-columns: 1fr;
  }

  .reviews-panel,
  .insurance-panel {
    min-height: 0;
  }
}

@media (max-width: 840px) {
  .reviews-payment-band {
    padding: 62px 0;
  }

  .reviews-heading {
    display: grid;
  }

  .review-track,
  .insurance-grid {
    grid-template-columns: 1fr;
  }

  .review-track {
    min-height: 0;
  }

  .review-card.is-side {
    display: none;
  }
}

@media (max-width: 560px) {
  .reviews-panel,
  .insurance-panel {
    padding: 18px;
  }

  .reviews-cta,
  .insurance-cta {
    width: 100%;
  }
}






.faq-band {
  padding: 92px 0 98px;
  background: linear-gradient(180deg, #f8fcfc 0%, #ffffff 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(13, 61, 67, 0.06);
}

.faq-item summary {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
  color: #111a28;
  font-size: 15px;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-grid;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.final-cta-band {
  padding: 46px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #ffffff;
}

.final-cta-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.final-cta-icon {
  display: inline-grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 42px;
}

.final-cta-copy .section-kicker,
.final-cta-copy h2,
.final-cta-copy p {
  color: #ffffff;
}

.final-cta-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.final-cta-copy p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.65;
}
.final-cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.final-cta-points li {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.final-cta-points i {
  color: #ffffff;
}

.final-cta-actions {
  display: grid;
  gap: 12px;
  min-width: 248px;
}

.final-cta-actions .btn-primary {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--primary-dark);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.final-cta-actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  background: transparent;
  color: #ffffff;
}

.site-footer {
  padding: 52px 0 28px;
  background: #ffffff;
  color: #172331;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) repeat(3, minmax(0, 0.8fr));
  gap: 34px;
  align-items: start;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo {
  display: block;
  width: 198px;
  height: 90px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand-block p,
.footer-column li,
.footer-column address,
.footer-bottom p,
.footer-bottom a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-brand-block p {
  max-width: 380px;
  margin: 0;
}

.footer-brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 410px;
  margin-top: 20px;
}

.footer-brand-chips span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.footer-brand-chips i {
  color: var(--primary);
}

.footer-column h2 {
  margin: 0 0 14px;
  color: #111a28;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a,
.footer-column li,
.footer-column address,
.footer-bottom a {
  text-decoration: none;
}

.footer-column a,
.footer-bottom a {
  color: #172331;
  font-weight: 800;
}

.footer-column i {
  width: 18px;
  color: var(--primary);
}

.footer-column address {
  margin: 0 0 10px;
  font-style: normal;
}

.footer-column nav {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-social {
  display: inline-flex;
  gap: 10px;
}

.footer-social a {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
}

.footer-bottom nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1120px) {
  .final-cta-shell,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .final-cta-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
  }

  .footer-brand-block p,
  .footer-brand-chips {
    max-width: 620px;
  }
}

@media (max-width: 840px) {
  .faq-band {
    padding: 62px 0;
  }

  .faq-grid,
  .final-cta-actions {
    grid-template-columns: 1fr;
  }

  .final-cta-shell {
    gap: 20px;
  }

  .footer-bottom {
    display: grid;
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .faq-item summary {
    min-height: 54px;
    padding: 0 14px;
    font-size: 14px;
  }

  .faq-item p {
    padding: 0 14px 16px;
  }

  .final-cta-icon {
    width: 68px;
    height: 68px;
    font-size: 32px;
  }

  .footer-logo {
    width: 176px;
    height: 80px;
  }

  .final-cta-points {
    display: grid;
  }

  .site-footer {
    padding-top: 42px;
  }
}




:root {
  --page: #f2f7fb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --ink: #0f1826;
  --muted: #4d6074;
  --line: #d3e3ea;
  --primary: #087b83;
  --primary-dark: #053f55;
  --primary-soft: #e5f7fa;
  --tech-navy: #071426;
  --tech-blue: #176ec6;
  --scan-blue: #2c9cff;
  --scan-cyan: #38d5ff;
  --scan-violet: #735cff;
  --glow-blue: rgba(44, 156, 255, 0.24);
  --glow-cyan: rgba(56, 213, 255, 0.22);
  --shadow: 0 24px 70px rgba(7, 26, 45, 0.15);
  --shadow-soft: 0 14px 34px rgba(7, 26, 45, 0.1);
}

body {
  background:
    radial-gradient(circle at 82% 7%, rgba(44, 156, 255, 0.12), transparent 28%),
    radial-gradient(circle at 12% 16%, rgba(56, 213, 255, 0.10), transparent 26%),
    linear-gradient(180deg, #f8fcff 0%, var(--page) 48%, #ffffff 100%);
}

.site-header {
  border-color: rgba(122, 181, 201, 0.26);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(6, 30, 52, 0.11);
}

.primary-nav a:hover,
.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--tech-blue);
}

.header-cta,
.btn-primary {
  border-color: rgba(44, 156, 255, 0.22);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 58%, #0aa1a8 100%);
  box-shadow:
    0 14px 28px rgba(5, 63, 85, 0.22),
    0 0 0 1px rgba(56, 213, 255, 0.08) inset;
}

.btn-secondary {
  border-color: rgba(107, 158, 180, 0.34);
  background: rgba(255, 255, 255, 0.82);
}

.btn:hover,
.header-cta:hover {
  box-shadow:
    0 18px 36px rgba(5, 63, 85, 0.2),
    0 0 28px var(--glow-cyan);
}

.hero {
  position: relative;
  background:
    radial-gradient(circle at 82% 25%, rgba(44, 156, 255, 0.22), transparent 32%),
    radial-gradient(circle at 64% 58%, rgba(56, 213, 255, 0.13), transparent 28%),
    linear-gradient(90deg, #ffffff 0%, #f6fbff 52%, #eaf7fb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(44, 156, 255, 0.07) 62%, transparent 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(12, 42, 70, 0.03) 100%);
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 44%, rgba(255, 255, 255, 0.30) 70%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 72% 39%, rgba(44, 156, 255, 0.16), transparent 34%),
    radial-gradient(circle at 82% 68%, rgba(56, 213, 255, 0.10), transparent 30%);
}

.hero-inner {
  z-index: 1;
}

.hero h1 {
  color: var(--ink);
}

.hero h1 em {
  background: linear-gradient(90deg, var(--primary) 0%, var(--scan-blue) 70%, var(--scan-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  color: #34495e;
}

.hero-media-card {
  border-color: rgba(44, 156, 255, 0.22);
  box-shadow:
    0 24px 60px rgba(7, 26, 45, 0.14),
    0 0 46px rgba(44, 156, 255, 0.16);
}

.hero-media-card::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(56, 213, 255, 0.11)),
    linear-gradient(180deg, rgba(7, 20, 38, 0), rgba(7, 20, 38, 0.05));
}

.path-panel,
.proof-card,
.service-card,
.mri-option-card,
.safety-panel,
.location-finder,
.resources-shell,
.doctor-card,
.leadership-panel,
.reviews-panel,
.insurance-panel,
.faq-item {
  border-color: rgba(111, 169, 191, 0.32);
  box-shadow: var(--shadow-soft);
}

.path-panel,
.proof-card,
.service-card,
.mri-option-card,
.location-finder,
.resources-shell,
.doctor-card,
.leadership-panel,
.reviews-panel,
.insurance-panel,
.faq-item,
.location-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 254, 255, 0.94) 100%);
}

.section-kicker,
.eyebrow,
.location-panel-kicker,
.doctor-role {
  color: #087985;
  letter-spacing: 0.1em;
}

.intro-band,
.why-band,
.workflow-band,
.safety-band,
.resources-band,
.reviews-payment-band,
.site-footer {
  background: linear-gradient(180deg, #ffffff 0%, #fafdff 100%);
}

.services-band,
.comparison-band,
.locations-band,
.doctors-band,
.faq-band {
  background:
    radial-gradient(circle at 78% 0%, rgba(44, 156, 255, 0.08), transparent 25%),
    linear-gradient(180deg, #f3f9fb 0%, #ffffff 100%);
}

.proof-card i,
.path-icon,
.why-feature i,
.workflow-icon,
.safety-item i,
.coming-location-icon,
.insurance-item i,
.final-cta-icon,
.faq-item summary::after,
.footer-social a {
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.92), transparent 38%),
    linear-gradient(135deg, #e7f8fb 0%, #d9f3fb 100%);
  color: var(--primary);
  box-shadow:
    inset 0 0 0 1px rgba(44, 156, 255, 0.16),
    0 10px 24px rgba(7, 26, 45, 0.08);
}

.workflow-icon {
  box-shadow:
    inset 0 0 0 1px rgba(44, 156, 255, 0.16),
    0 0 0 7px rgba(56, 213, 255, 0.06),
    0 14px 28px rgba(7, 26, 45, 0.1);
}

.workflow-steps::before {
  background: linear-gradient(90deg, transparent, rgba(44, 156, 255, 0.48), rgba(56, 213, 255, 0.28), transparent);
}

.service-card,
.mri-option-card,
.location-card,
.doctor-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.mri-option-card:hover,
.location-card:hover,
.doctor-card:hover {
  border-color: rgba(44, 156, 255, 0.34);
  box-shadow:
    0 22px 52px rgba(7, 26, 45, 0.12),
    0 0 34px rgba(44, 156, 255, 0.08);
  transform: translateY(-2px);
}

.service-card img,
.mri-option-card img,
.location-card img,
.doctor-card img,
.leadership-panel img {
  filter: saturate(1.06) contrast(1.03);
}

.service-tag,
.location-filter-group button.is-active,
.resource-tabs button.is-active {
  background: linear-gradient(135deg, var(--primary) 0%, #0996a1 100%);
}

.service-tag {
  color: #ffffff;
}

.location-modality {
  color: var(--primary-dark);
}

.comparison-note,
.safety-panel,
.location-panel-note,
.rating-summary,
.insurance-item {
  background:
    radial-gradient(circle at 95% 0%, rgba(44, 156, 255, 0.10), transparent 36%),
    linear-gradient(135deg, #ffffff 0%, #f2fbfe 100%);
}

.mri-option-body li::before {
  background: linear-gradient(135deg, var(--primary), var(--scan-blue));
  box-shadow: 0 0 14px rgba(44, 156, 255, 0.34);
}

.transport-band,
.final-cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(44, 156, 255, 0.24), transparent 30%),
    radial-gradient(circle at 18% 84%, rgba(56, 213, 255, 0.15), transparent 28%),
    linear-gradient(135deg, var(--tech-navy) 0%, #063d52 48%, #087b83 100%);
}

.transport-band::before,
.final-cta-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 213, 255, 0.72), transparent);
}

.transport-shell,
.final-cta-shell {
  position: relative;
  z-index: 1;
}

.transport-features article,
.final-cta-points li {
  border-color: rgba(121, 213, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.transport-features i {
  background: rgba(121, 213, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(121, 213, 255, 0.18);
}

.transport-copy .btn-primary,
.final-cta-actions .btn-primary {
  border-color: rgba(255, 255, 255, 0.92);
  background: #ffffff;
  color: var(--primary-dark);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.16),
    0 0 28px rgba(56, 213, 255, 0.16);
}

.final-cta-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
}

.location-panel-stats strong,
.location-stats strong,
.rating-summary strong {
  color: var(--primary);
}

.review-card {
  border-color: rgba(111, 169, 191, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.review-card.is-active {
  border-color: rgba(44, 156, 255, 0.36);
  box-shadow:
    0 20px 46px rgba(7, 26, 45, 0.15),
    0 0 34px rgba(44, 156, 255, 0.12);
}

.review-avatar {
  background: linear-gradient(135deg, var(--primary-dark), var(--scan-blue));
  box-shadow: 0 0 18px rgba(44, 156, 255, 0.18);
}

.review-nav:hover,
.review-dot:hover,
.review-dot.is-active {
  border-color: var(--scan-blue);
  background: linear-gradient(135deg, var(--primary), var(--scan-blue));
}

.footer-logo-link {
  padding: 10px 14px;
  border: 1px solid rgba(111, 169, 191, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f2fbfe 100%);
  box-shadow: 0 12px 28px rgba(7, 26, 45, 0.08);
}

.footer-logo {
  filter: drop-shadow(0 8px 14px rgba(7, 26, 45, 0.08));
}

.footer-brand-chips span {
  background: linear-gradient(135deg, #e9f8fb 0%, #def3fb 100%);
  color: var(--primary-dark);
}

@media (max-width: 840px) {
  .hero::before {
    opacity: 0.7;
  }

  .service-card:hover,
  .mri-option-card:hover,
  .location-card:hover,
  .doctor-card:hover {
    transform: none;
  }
}

:root {
  --campaign-adn-strong: #38d5ff;
  --page: #030812;
  --surface: rgba(7, 18, 34, 0.84);
  --surface-strong: #081426;
  --ink: #f7fbff;
  --muted: #a7bdd4;
  --line: rgba(104, 199, 255, 0.26);
  --primary: #2f9dff;
  --primary-dark: #06182e;
  --primary-soft: rgba(47, 157, 255, 0.14);
  --tech-navy: #020712;
  --tech-blue: #2f9dff;
  --scan-blue: #38a7ff;
  --scan-cyan: #45e7ff;
  --scan-violet: #7a5cff;
  --scan-green: #2dffba;
  --glow-blue: rgba(47, 157, 255, 0.46);
  --glow-cyan: rgba(69, 231, 255, 0.36);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --shadow-soft: 0 18px 46px rgba(0, 0, 0, 0.32);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 0%, rgba(47, 157, 255, 0.24), transparent 28%),
    radial-gradient(circle at 18% 18%, rgba(69, 231, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #020712 0%, #06111f 44%, #020712 100%);
}

.site-header {
  border-color: rgba(69, 231, 255, 0.22);
  background: rgba(2, 7, 18, 0.82);
  box-shadow:
    0 18px 56px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(47, 157, 255, 0.12);
}

.brand-logo {
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 24px rgba(69, 231, 255, 0.12);
}

.primary-nav a {
  color: rgba(247, 251, 255, 0.84);
}

.primary-nav a:hover,
.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--scan-cyan);
}

.menu-toggle {
  border-color: rgba(69, 231, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span:not(.sr-only) {
  background: #ffffff;
}

.header-cta,
.btn-primary {
  border-color: rgba(69, 231, 255, 0.48);
  background:
    linear-gradient(135deg, #114eff 0%, #0884ff 45%, #0cd2df 100%);
  color: #ffffff;
  box-shadow:
    0 18px 36px rgba(0, 92, 255, 0.28),
    0 0 30px rgba(69, 231, 255, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.btn-secondary {
  border-color: rgba(104, 199, 255, 0.34);
  background: rgba(5, 16, 31, 0.72);
  color: #f7fbff;
}

.btn:hover,
.header-cta:hover {
  box-shadow:
    0 20px 46px rgba(0, 92, 255, 0.34),
    0 0 38px rgba(69, 231, 255, 0.34);
}

.hero,
.intro-band,
.services-band,
.why-band,
.comparison-band,
.workflow-band,
.safety-band,
.locations-band,
.transport-band,
.resources-band,
.doctors-band,
.reviews-payment-band,
.faq-band,
.final-cta-band,
.site-footer {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 700px;
  background:
    linear-gradient(90deg, rgba(2, 7, 18, 0.98) 0%, rgba(3, 10, 24, 0.96) 42%, rgba(3, 11, 27, 0.72) 74%, rgba(3, 11, 27, 0.62) 100%),
    radial-gradient(circle at 76% 58%, rgba(47, 157, 255, 0.34), transparent 24%),
    radial-gradient(circle at 68% 40%, rgba(122, 92, 255, 0.22), transparent 28%),
    url("../assets/img/700692155_122164067402817725_2584439707374976549_n.jpg");
  background-position: center, center, center, right center;
  background-size: cover, auto, auto, min(56vw, 760px) auto;
  background-repeat: no-repeat;
}

.hero-bg {
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(2, 7, 18, 0.98) 0%, rgba(2, 7, 18, 0.9) 45%, rgba(2, 7, 18, 0.42) 100%),
    radial-gradient(circle at 70% 50%, rgba(69, 231, 255, 0.20), transparent 28%),
    linear-gradient(180deg, rgba(56, 167, 255, 0.14), rgba(2, 7, 18, 0.28));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.88;
  background:
    linear-gradient(90deg, transparent 0%, rgba(69, 231, 255, 0.24) 50%, transparent 100%) 0 115px / 100% 1px no-repeat,
    linear-gradient(90deg, transparent 0%, rgba(47, 157, 255, 0.18) 50%, transparent 100%) 0 calc(100% - 94px) / 100% 1px no-repeat,
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 7px);
}

.hero::after {
  content: "";
  position: absolute;
  right: max(-80px, -5vw);
  bottom: -80px;
  width: min(56vw, 780px);
  height: min(56vw, 780px);
  pointer-events: none;
  border: 1px solid rgba(69, 231, 255, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle, transparent 0 39%, rgba(47, 157, 255, 0.10) 40% 42%, transparent 43% 100%),
    radial-gradient(circle, rgba(69, 231, 255, 0.18), transparent 58%);
  filter: blur(0.2px);
}

.hero-inner,
.section-inner,
.transport-shell,
.final-cta-shell,
.footer-shell,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.hero h1,
.intro-copy h2,
.section-heading h2,
.comparison-heading h2,
.locations-header h2,
.transport-copy h2,
.doctors-header h2,
.reviews-heading h2,
.insurance-heading h2,
.final-cta-copy h2,
.safety-heading h2 {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(47, 157, 255, 0.22);
}

.hero h1 {
  font-family: Impact, "Arial Narrow", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.015em;
  line-height: 0.92;
}

.hero h1 em,
.section-kicker,
.eyebrow,
.location-panel-kicker,
.doctor-role,
.path-kicker {
  background: linear-gradient(90deg, #58b8ff 0%, var(--scan-cyan) 50%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.12em;
  text-shadow: 0 0 18px rgba(69, 231, 255, 0.16);
}

.hero-lede,
.intro-copy p,
.section-heading p,
.comparison-heading p,
.locations-header p,
.transport-copy p,
.doctors-header > p,
.insurance-heading p,
.final-cta-copy p,
.comparison-note p,
.location-card p,
.location-card address,
.location-modality,
.resource-card,
.doctor-card p,
.leadership-panel p:not(.section-kicker),
.review-card p,
.insurance-item p,
.faq-item p,
.footer-brand-block p,
.footer-column li,
.footer-column address,
.footer-bottom p,
.footer-bottom a {
  color: rgba(217, 233, 249, 0.78);
}

.hero-lede {
  font-size: 18px;
  color: rgba(247, 251, 255, 0.88);
}

.trust-row span {
  color: rgba(247, 251, 255, 0.9);
}

.trust-row i,
.trust-row svg {
  color: var(--scan-cyan);
  filter: drop-shadow(0 0 10px rgba(69, 231, 255, 0.32));
}

.hero-media-card {
  border-color: rgba(69, 231, 255, 0.34);
  background: rgba(2, 7, 18, 0.72);
  box-shadow:
    0 32px 86px rgba(0, 0, 0, 0.46),
    0 0 58px rgba(47, 157, 255, 0.26);
}

.hero-media-card::after {
  background:
    radial-gradient(circle at 68% 42%, rgba(69, 231, 255, 0.20), transparent 42%),
    linear-gradient(180deg, rgba(2, 7, 18, 0), rgba(2, 7, 18, 0.26));
}

.path-panel,
.proof-card,
.service-card,
.mri-option-card,
.safety-panel,
.location-finder,
.resources-shell,
.doctor-card,
.leadership-panel,
.reviews-panel,
.insurance-panel,
.faq-item,
.location-card,
.comparison-note,
.location-map-card,
.location-panel-stats span,
.rating-summary,
.insurance-item {
  border-color: rgba(104, 199, 255, 0.25);
  background:
    linear-gradient(180deg, rgba(10, 26, 48, 0.84) 0%, rgba(5, 15, 31, 0.92) 100%);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(10px);
}

.path-panel h2,
.path-card strong,
.proof-card h3,
.service-card h3,
.mri-option-body h3,
.workflow-step h3,
.safety-item h3,
.location-map-card h3,
.transport-features h3,
.location-card h3,
.resource-card,
.doctor-card h3,
.leadership-panel h3,
.review-author strong,
.rating-summary strong,
.insurance-item h3,
.faq-item summary,
.footer-column h2,
.footer-column a,
.footer-bottom a {
  color: #ffffff;
}

.path-card {
  border-color: rgba(104, 199, 255, 0.24);
  background: rgba(255, 255, 255, 0.055);
}

.path-card:hover {
  border-color: rgba(69, 231, 255, 0.58);
  background: rgba(47, 157, 255, 0.12);
  box-shadow: 0 0 28px rgba(69, 231, 255, 0.16);
}

.path-card small,
.proof-card p,
.service-card p,
.mri-option-body ul,
.workflow-step p,
.safety-item p,
.location-map-card p,
.transport-features p,
.review-author small,
.rating-summary small {
  color: rgba(217, 233, 249, 0.72);
}

.proof-card i,
.path-icon,
.why-feature i,
.workflow-icon,
.safety-item i,
.coming-location-icon,
.insurance-item i,
.final-cta-icon,
.faq-item summary::after,
.footer-social a {
  border: 1px solid rgba(69, 231, 255, 0.34);
  background:
    radial-gradient(circle at 45% 35%, rgba(69, 231, 255, 0.26), transparent 38%),
    rgba(47, 157, 255, 0.12);
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 24px rgba(69, 231, 255, 0.20);
}

.intro-band,
.workflow-band,
.resources-band,
.reviews-payment-band,
.site-footer {
  background:
    radial-gradient(circle at 16% 0%, rgba(47, 157, 255, 0.15), transparent 26%),
    linear-gradient(180deg, #06111f 0%, #020712 100%);
}

.services-band,
.comparison-band,
.locations-band,
.doctors-band,
.faq-band,
.why-band,
.safety-band {
  background:
    radial-gradient(circle at 80% 10%, rgba(69, 231, 255, 0.14), transparent 26%),
    radial-gradient(circle at 20% 85%, rgba(122, 92, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #020712 0%, #071426 54%, #020712 100%);
}

.services-band::before,
.comparison-band::before,
.faq-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image: url("../assets/img/698296653_122164068350817725_877463522469624815_n.jpg");
  background-repeat: no-repeat;
  background-position: right 8% top 80px;
  background-size: min(48vw, 560px) auto;
  mix-blend-mode: screen;
}

.services-band::after,
.locations-band::after,
.doctors-band::after,
.reviews-payment-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(69, 231, 255, 0.58), transparent);
}

.why-feature {
  padding: 18px 12px;
  border: 1px solid rgba(104, 199, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.why-feature h3,
.why-feature p {
  color: rgba(247, 251, 255, 0.92);
}

.why-feature p {
  color: rgba(217, 233, 249, 0.72);
}

.service-card,
.mri-option-card,
.location-card,
.doctor-card,
.review-card,
.insurance-item,
.resource-card,
.faq-item {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-card:hover,
.mri-option-card:hover,
.location-card:hover,
.doctor-card:hover,
.review-card.is-active,
.insurance-item:hover,
.resource-card:hover,
.faq-item:hover {
  border-color: rgba(69, 231, 255, 0.54);
  background:
    linear-gradient(180deg, rgba(13, 36, 66, 0.9) 0%, rgba(5, 18, 38, 0.96) 100%);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.42),
    0 0 38px rgba(47, 157, 255, 0.18);
}

.service-tag,
.location-filter-group button.is-active,
.resource-tabs button.is-active,
.location-modality {
  border: 1px solid rgba(69, 231, 255, 0.30);
  background: linear-gradient(135deg, rgba(47, 157, 255, 0.92) 0%, rgba(69, 231, 255, 0.82) 100%);
  color: #020712;
  box-shadow: 0 0 22px rgba(69, 231, 255, 0.18);
}

.location-filter-group button,
.resource-tabs button,
.location-search,
.location-search input {
  color: #ffffff;
}

.location-filter-group button,
.resource-tabs button,
.location-search {
  border-color: rgba(104, 199, 255, 0.25);
  background: rgba(255, 255, 255, 0.055);
}

.location-search input::placeholder {
  color: rgba(217, 233, 249, 0.62);
}

.location-phone,
.location-card a:not(.btn),
.doctor-card a,
.review-nav,
.review-dot,
.footer-column i,
.footer-brand-chips i {
  color: var(--scan-cyan);
}

.mri-option-body li::before {
  background: var(--scan-cyan);
  box-shadow: 0 0 18px rgba(69, 231, 255, 0.54);
}

.workflow-icon {
  box-shadow:
    0 0 0 7px rgba(47, 157, 255, 0.08),
    0 0 34px rgba(69, 231, 255, 0.28);
}

.workflow-steps::before {
  background: linear-gradient(90deg, transparent, rgba(69, 231, 255, 0.72), rgba(122, 92, 255, 0.38), transparent);
}

.safety-panel {
  background:
    radial-gradient(circle at 82% 0%, rgba(69, 231, 255, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(12, 33, 59, 0.92) 0%, rgba(4, 13, 27, 0.96) 100%);
}

.safety-item:not(:first-child)::before,
.resource-card,
.resource-tabs,
.resource-tabs button,
.footer-bottom {
  border-color: rgba(104, 199, 255, 0.20);
}

.transport-band,
.final-cta-band {
  background:
    linear-gradient(90deg, rgba(2, 7, 18, 0.94), rgba(3, 13, 28, 0.86)),
    radial-gradient(circle at 82% 40%, rgba(47, 157, 255, 0.32), transparent 28%),
    url("../assets/img/698296653_122164068350817725_877463522469624815_n.jpg");
  background-repeat: no-repeat;
  background-size: cover, auto, cover;
  background-position: center, center, right center;
}

.transport-band::before,
.final-cta-band::before {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(69, 231, 255, 0.86), transparent);
  box-shadow: 0 0 20px rgba(69, 231, 255, 0.5);
}

.transport-features article,
.final-cta-points li {
  border-color: rgba(104, 199, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.transport-copy .btn-primary,
.final-cta-actions .btn-primary {
  color: #020712;
  background: #ffffff;
}

.final-cta-actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
}

.map-visual {
  background:
    radial-gradient(circle at 62% 20%, rgba(69, 231, 255, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(47, 157, 255, 0.10) 0 1px, transparent 1px 36px),
    linear-gradient(45deg, rgba(69, 231, 255, 0.08) 0 1px, transparent 1px 32px),
    linear-gradient(180deg, #08192e 0%, #04101f 100%);
}

.map-visual::before {
  background: rgba(218, 244, 255, 0.7);
  box-shadow: 0 0 32px rgba(69, 231, 255, 0.22);
}

.map-pin {
  border-color: #dff8ff;
  background: var(--scan-cyan);
  box-shadow: 0 0 24px rgba(69, 231, 255, 0.42);
}

.map-pin.soon {
  background: #6d7f9a;
}

.resource-card:hover {
  color: #ffffff;
}

.review-card {
  background: rgba(255, 255, 255, 0.055);
  opacity: 0.66;
}

.review-card.is-active {
  opacity: 1;
}

.review-avatar {
  background: linear-gradient(135deg, #114eff 0%, #0cd2df 100%);
}

.review-stars {
  color: #f9c64c;
  text-shadow: 0 0 16px rgba(249, 198, 76, 0.2);
}

.review-nav,
.review-dot {
  border-color: rgba(104, 199, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.review-nav:hover,
.review-dot:hover,
.review-dot.is-active {
  border-color: var(--scan-cyan);
  background: var(--scan-cyan);
  color: #020712;
}

.faq-item summary::after {
  color: #020712;
  background: var(--scan-cyan);
}

.footer-logo-link {
  border-color: rgba(69, 231, 255, 0.26);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 28px rgba(69, 231, 255, 0.16);
}

.footer-brand-chips span {
  border: 1px solid rgba(104, 199, 255, 0.22);
  background: rgba(47, 157, 255, 0.10);
  color: rgba(247, 251, 255, 0.86);
}

.footer-social a:hover {
  color: #020712;
  background: var(--scan-cyan);
}

@media (max-width: 1120px) {
  .primary-nav {
    border-color: rgba(104, 199, 255, 0.20);
    background: rgba(2, 7, 18, 0.94);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
  }

  .hero {
    background-size: cover, auto, auto, cover;
  }
}

@media (max-width: 840px) {
  .hero {
    min-height: auto;
    background-position: center, center, center, 70% center;
  }

  .hero h1,
  .intro-copy h2,
  .section-heading h2,
  .comparison-heading h2,
  .locations-header h2,
  .doctors-header h2,
  .reviews-heading h2,
  .insurance-heading h2,
  .final-cta-copy h2 {
    text-transform: none;
  }

  .services-band::before,
  .comparison-band::before,
  .faq-band::before {
    opacity: 0.08;
    background-size: 86vw auto;
    background-position: right -18vw top 40px;
  }
}

.location-modality {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(217, 233, 249, 0.72);
}

:root {
  --client-backgrounds-active: 1;
}

.hero {
  background:
    linear-gradient(90deg, rgba(2, 7, 18, 0.98) 0%, rgba(3, 10, 24, 0.94) 38%, rgba(3, 11, 27, 0.68) 72%, rgba(3, 11, 27, 0.52) 100%),
    radial-gradient(circle at 72% 56%, rgba(47, 157, 255, 0.26), transparent 26%),
    url("../assets/img/background-1.png");
  background-position: center, center, right center;
  background-size: cover, auto, cover;
  background-repeat: no-repeat;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(2, 7, 18, 0.98) 0%, rgba(2, 7, 18, 0.86) 46%, rgba(2, 7, 18, 0.30) 100%),
    radial-gradient(circle at 72% 46%, rgba(69, 231, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(56, 167, 255, 0.12), rgba(2, 7, 18, 0.26));
}

.services-band::before,
.comparison-band::before,
.faq-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(2, 7, 18, 0.92), rgba(2, 7, 18, 0.54)),
    url("../assets/img/background-2.png");
  background-repeat: no-repeat;
  background-position: center, right center;
  background-size: cover, cover;
  mix-blend-mode: screen;
}

.why-band::before,
.workflow-band::before,
.safety-band::before,
.resources-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(90deg, rgba(2, 7, 18, 0.90), rgba(2, 7, 18, 0.58)),
    url("../assets/img/background-3.png");
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: cover, cover;
  mix-blend-mode: screen;
}

.locations-band::before,
.doctors-band::before,
.reviews-payment-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(90deg, rgba(2, 7, 18, 0.92), rgba(2, 7, 18, 0.50)),
    url("../assets/img/background-4.png");
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: cover, cover;
  mix-blend-mode: screen;
}

.transport-band,
.final-cta-band {
  background:
    linear-gradient(90deg, rgba(2, 7, 18, 0.94), rgba(3, 13, 28, 0.78)),
    radial-gradient(circle at 82% 40%, rgba(47, 157, 255, 0.28), transparent 30%),
    url("../assets/img/background-4.png");
  background-repeat: no-repeat;
  background-size: cover, auto, cover;
  background-position: center, center, right center;
}

.intro-band,
.services-band,
.why-band,
.comparison-band,
.workflow-band,
.safety-band,
.locations-band,
.resources-band,
.doctors-band,
.reviews-payment-band,
.faq-band {
  background:
    radial-gradient(circle at 84% 4%, rgba(69, 231, 255, 0.12), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(122, 92, 255, 0.10), transparent 30%),
    linear-gradient(180deg, #020712 0%, #071426 52%, #020712 100%);
}

.hero::after {
  opacity: 0.62;
}

@media (max-width: 840px) {
  .hero {
    background-position: center, center, 68% center;
  }

  .services-band::before,
  .comparison-band::before,
  .faq-band::before,
  .why-band::before,
  .workflow-band::before,
  .safety-band::before,
  .resources-band::before,
  .locations-band::before,
  .doctors-band::before,
  .reviews-payment-band::before {
    opacity: 0.10;
    background-position: center, 68% center;
  }

  .transport-band,
  .final-cta-band {
    background-position: center, center, 68% center;
  }
}

:root {
  --client-backgrounds-visibility-v2: 1;
}

.hero {
  background:
    linear-gradient(90deg, rgba(2, 7, 18, 0.92) 0%, rgba(3, 10, 24, 0.76) 36%, rgba(3, 11, 27, 0.28) 68%, rgba(3, 11, 27, 0.10) 100%),
    radial-gradient(circle at 72% 52%, rgba(69, 231, 255, 0.22), transparent 34%),
    url("../assets/img/background-1.png");
  background-position: center, center, right center;
  background-size: cover, auto, cover;
  background-repeat: no-repeat;
}

.hero-bg {
  opacity: 0.72;
  background:
    linear-gradient(90deg, rgba(2, 7, 18, 0.94) 0%, rgba(2, 7, 18, 0.68) 44%, rgba(2, 7, 18, 0.08) 100%),
    radial-gradient(circle at 74% 46%, rgba(69, 231, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(56, 167, 255, 0.08), rgba(2, 7, 18, 0.08));
}

.intro-band,
.services-band,
.why-band,
.comparison-band,
.workflow-band,
.safety-band,
.locations-band,
.resources-band,
.doctors-band,
.reviews-payment-band,
.faq-band {
  background:
    radial-gradient(circle at 82% 4%, rgba(69, 231, 255, 0.18), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(122, 92, 255, 0.14), transparent 32%),
    linear-gradient(180deg, #04101f 0%, #0a2038 52%, #04101f 100%);
}

.services-band::before,
.comparison-band::before,
.faq-band::before {
  opacity: 0.46;
  background-image:
    linear-gradient(90deg, rgba(2, 7, 18, 0.54), rgba(2, 7, 18, 0.04)),
    url("../assets/img/background-2.png");
  mix-blend-mode: normal;
  filter: brightness(1.22) contrast(1.08) saturate(1.14);
}

.why-band::before,
.workflow-band::before,
.safety-band::before,
.resources-band::before {
  opacity: 0.40;
  background-image:
    linear-gradient(90deg, rgba(2, 7, 18, 0.58), rgba(2, 7, 18, 0.08)),
    url("../assets/img/background-3.png");
  mix-blend-mode: normal;
  filter: brightness(1.2) contrast(1.08) saturate(1.12);
}

.locations-band::before,
.doctors-band::before,
.reviews-payment-band::before {
  opacity: 0.44;
  background-image:
    linear-gradient(90deg, rgba(2, 7, 18, 0.58), rgba(2, 7, 18, 0.06)),
    url("../assets/img/background-4.png");
  mix-blend-mode: normal;
  filter: brightness(1.22) contrast(1.08) saturate(1.12);
}

.transport-band,
.final-cta-band {
  background:
    linear-gradient(90deg, rgba(2, 7, 18, 0.86), rgba(3, 13, 28, 0.42)),
    radial-gradient(circle at 82% 40%, rgba(47, 157, 255, 0.24), transparent 32%),
    url("../assets/img/background-4.png");
  background-repeat: no-repeat;
  background-size: cover, auto, cover;
  background-position: center, center, right center;
}

.hero::after {
  opacity: 0.42;
}

@media (max-width: 840px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(2, 7, 18, 0.86) 0%, rgba(2, 7, 18, 0.50) 48%, rgba(2, 7, 18, 0.74) 100%),
      radial-gradient(circle at 62% 28%, rgba(69, 231, 255, 0.18), transparent 34%),
      url("../assets/img/background-1.png");
    background-position: center, center, center;
    background-size: cover, auto, cover;
  }

  .services-band::before,
  .comparison-band::before,
  .faq-band::before,
  .why-band::before,
  .workflow-band::before,
  .safety-band::before,
  .resources-band::before,
  .locations-band::before,
  .doctors-band::before,
  .reviews-payment-band::before {
    opacity: 0.26;
    background-position: center, center;
  }

  .transport-band,
  .final-cta-band {
    background:
      linear-gradient(180deg, rgba(2, 7, 18, 0.82), rgba(3, 13, 28, 0.54)),
      radial-gradient(circle at 78% 36%, rgba(47, 157, 255, 0.20), transparent 32%),
      url("../assets/img/background-4.png");
    background-position: center, center, center;
    background-size: cover, auto, cover;
  }
}

/* Client updates: white header, insurance marquee */
body .site-header {
  border-color: #e8eef0 !important;
  background: #ffffff !important;
  box-shadow: 0 1px 0 rgba(216, 228, 230, 0.95) !important;
  backdrop-filter: none !important;
}

body .brand-logo {
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body .primary-nav a {
  color: #263342 !important;
}

body .menu-toggle {
  border-color: #d8e4e6 !important;
  background: #ffffff !important;
}

body .menu-toggle span:not(.sr-only) {
  background: #16202c !important;
}

body .site-header.is-open .primary-nav {
  background: #ffffff !important;
}

.insurance-marquee-band {
  width: 100%;
  padding: 18px 0;
  border-bottom: 1px solid rgba(216, 228, 230, 0.9);
  background: #ffffff;
}

.insurance-marquee {
  position: relative;
  overflow: hidden;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.insurance-marquee--panel {
  width: 100%;
  margin: 0 0 22px;
  padding: 14px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcfc;
}

.insurance-marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: insurance-marquee-scroll 36s linear infinite;
}

.insurance-marquee-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 48px;
}

.insurance-marquee-item img {
  display: block;
  width: auto;
  max-width: 180px;
  height: 48px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

@media (max-width: 840px) {
  .insurance-marquee {
    width: min(calc(100% - 28px), var(--max));
  }
}

body.contact-modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 18, 0.72);
  backdrop-filter: blur(4px);
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-height: min(92vh, 860px);
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(2, 7, 18, 0.28);
}

.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}

.contact-modal__intro h2,
.contact-modal__success h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 34px);
  line-height: 1.08;
}

.contact-modal__intro p,
.contact-modal__success p {
  margin: 0 0 20px;
  color: var(--muted);
}

.contact-modal__success {
  text-align: center;
}

.contact-modal__success i {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 42px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field--full {
  margin-top: 16px;
}

.contact-field span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.contact-field textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: 2px solid rgba(10, 111, 114, 0.18);
  border-color: var(--primary);
}

.contact-form__note {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-form__note.is-error {
  color: #b42318;
}

.contact-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

@media (max-width: 640px) {
  .contact-modal {
    padding: 12px;
  }

  .contact-modal__dialog {
    padding: 22px 18px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__actions {
    flex-direction: column-reverse;
  }

  .contact-form__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@keyframes insurance-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .insurance-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    gap: 16px 24px;
  }

  .insurance-marquee-item[aria-hidden="true"] {
    display: none;
  }
}

/* Site-wide background + modal contrast + mobile polish */
body {
  background-color: #04101f;
}

.insurance-marquee-item--evicore img {
  height: 64px;
  max-width: 140px;
}

.contact-modal__dialog {
  color: #0f1826;
  border-color: #c5d4dc;
  background: #ffffff;
}

.contact-modal__dialog .section-kicker {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: #07585b;
  text-shadow: none;
  letter-spacing: 0.1em;
}

.contact-modal__intro h2,
.contact-modal__success h2 {
  color: #0f1826 !important;
  text-transform: none;
  text-shadow: none;
  letter-spacing: -0.02em;
}

.contact-modal__intro p,
.contact-modal__success p {
  color: #536170 !important;
}

.contact-modal__close {
  border-color: #9eb4c2;
  background: #f4f8fa;
  color: #0f1826;
}

.contact-modal__close:hover {
  background: #e8f0f4;
  border-color: #07585b;
}

.contact-modal__dialog .contact-field span {
  color: #0f1826;
}

.contact-modal__dialog .contact-field input,
.contact-modal__dialog .contact-field select,
.contact-modal__dialog .contact-field textarea {
  border-color: #c5d4dc;
  background: #ffffff;
  color: #0f1826;
}

.contact-modal__dialog .btn-primary {
  border: 1px solid #07585b;
  background: linear-gradient(135deg, #07585b 0%, #0a6f72 55%, #0884a0 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(7, 88, 91, 0.24);
}

.contact-modal__dialog .btn-secondary {
  border: 1px solid #9eb4c2;
  background: #ffffff;
  color: #0f1826;
  box-shadow: none;
}

.contact-modal__dialog .btn-secondary:hover {
  background: #f4f8fa;
  border-color: #07585b;
}

.contact-modal__success i {
  color: #0a6f72;
}

@media (max-width: 840px) {
  .site-header,
  .hero,
  .mockup-spacer,
  .insurance-marquee-band {
    width: 100%;
  }

  .hero-inner,
  .section-inner,
  .mockup-spacer p {
    width: min(calc(100% - 24px), var(--max));
  }

  .header-cta span {
    display: none;
  }

  .header-cta {
    min-width: 42px;
    padding-inline: 12px;
  }

  .hero-actions .btn,
  .contact-form__actions .btn {
    min-height: 48px;
  }

  .trust-row {
    gap: 10px;
  }

  .trust-row span {
    font-size: 13px;
  }

  .hero-side {
    display: grid;
    gap: 16px;
  }

  .hero-media-card img {
    width: 100%;
    height: auto;
  }

  .path-panel {
    max-width: none;
  }
}

@media (max-width: 560px) {
  body .site-header {
    padding: 10px 12px !important;
  }

  .brand-logo {
    width: 112px;
    height: auto;
  }

  .contact-modal {
    padding: 10px;
    align-items: end;
  }

  .contact-modal__dialog {
    width: 100%;
    max-height: 94vh;
    padding: 20px 16px 18px;
    border-radius: 16px 16px 0 0;
  }

  .contact-modal__close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .contact-modal__intro h2,
  .contact-modal__success h2 {
    font-size: 24px;
    padding-right: 44px;
  }

  .insurance-marquee-band {
    padding: 14px 0;
  }

  .insurance-marquee-track {
    gap: 32px;
  }

  .insurance-marquee-item {
    min-width: 100px;
    height: 44px;
  }

  .insurance-marquee-item img {
    max-width: 150px;
    height: 44px;
  }

  .insurance-marquee-item--evicore img {
    height: 56px;
    max-width: 120px;
  }
}

@media (max-width: 840px) {
  body {
    background-color: #04101f;
  }
}

/* Workflow step cards: match dark glass panels (override light grey mobile cards) */
@media (max-width: 1120px) {
  .workflow-band .workflow-step,
  .safety-band .safety-item {
    border-color: rgba(104, 199, 255, 0.25);
    background: linear-gradient(180deg, rgba(10, 26, 48, 0.84) 0%, rgba(5, 15, 31, 0.92) 100%);
    box-shadow:
      0 24px 70px rgba(0, 0, 0, 0.34),
      inset 0 0 0 1px rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(10px);
  }
}

.trust-badge--logo {
  justify-content: center;
  min-height: 54px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.trust-badge--logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 42px;
  object-fit: contain;
}

.trust-badge--joint img {
  mix-blend-mode: screen;
}

.trust-badge--labeled {
  grid-column: 1 / -1;
  justify-content: flex-start;
  gap: 10px;
  min-height: 54px;
  color: rgba(247, 251, 255, 0.9);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.trust-badge--labeled img {
  flex: 0 0 auto;
  height: 38px;
  mix-blend-mode: normal;
}

.full-body-band {
  padding: 72px 0;
}

.full-body-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: start;
}

.full-body-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.full-body-copy > p {
  margin: 0 0 20px;
  max-width: 58ch;
}

.full-body-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.full-body-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(104, 199, 255, 0.28);
  border-radius: 999px;
  background: rgba(47, 157, 255, 0.1);
  color: rgba(247, 251, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
}

.full-body-pricing {
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(104, 199, 255, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.full-body-price-label {
  margin: 0 0 4px;
  color: rgba(217, 233, 249, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.full-body-price {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.full-body-price-note {
  margin: 6px 0 0;
  color: rgba(217, 233, 249, 0.72);
  font-size: 14px;
}

.full-body-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.full-body-location {
  margin: 0;
  color: rgba(217, 233, 249, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

.full-body-panel {
  padding: 24px;
  border: 1px solid rgba(104, 199, 255, 0.25);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(10, 26, 48, 0.84) 0%, rgba(5, 15, 31, 0.92) 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.full-body-panel h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 20px;
}

.full-body-list {
  margin: 0 0 20px;
  padding-left: 18px;
  color: rgba(217, 233, 249, 0.82);
}

.full-body-list li {
  margin-bottom: 10px;
  line-height: 1.55;
}

.full-body-list strong {
  color: #ffffff;
}

.full-body-band,
.full-body-copy h2,
.full-body-panel h3 {
  position: relative;
  z-index: 1;
}

.full-body-band {
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 157, 255, 0.15), transparent 28%),
    linear-gradient(180deg, #06111f 0%, #020712 100%);
}

@media (max-width: 960px) {
  .full-body-shell {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .full-body-band {
    padding: 54px 0;
  }

  .full-body-actions {
    flex-direction: column;
  }

  .full-body-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-badge--logo img {
    height: 34px;
  }
}

/* Footer: white brand band + dark links section */
.site-footer {
  padding: 0;
  background: transparent;
}

.footer-top-band {
  padding: 48px 0 40px;
  background: #ffffff;
  color: #172331;
}

.footer-top-band .footer-brand-block p {
  max-width: 58ch;
  color: #4a5f74;
}

.footer-top-band .footer-brand-chips span {
  border: 0;
  background: rgba(47, 157, 255, 0.12);
  color: #06182e;
}

.footer-top-band .footer-brand-chips i {
  color: var(--primary);
}

.footer-top-band .footer-logo-link {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer-top-band .footer-logo {
  filter: none;
}

.footer-main-band {
  padding: 36px 0 28px;
  background: #ffffff;
  color: #172331;
}

.footer-shell {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-main-band .footer-column h2 {
  color: #111a28;
}

.footer-main-band .footer-column a,
.footer-main-band .footer-column li,
.footer-main-band .footer-column address {
  color: #4a5f74;
}

.footer-main-band .footer-column a,
.footer-main-band .footer-bottom a {
  color: #172331;
}

.footer-main-band .footer-bottom {
  border-top-color: rgba(16, 40, 68, 0.1);
}

.footer-main-band .footer-bottom p,
.footer-main-band .footer-bottom a {
  color: #4a5f74;
}

.footer-main-band .footer-social a {
  background: rgba(47, 157, 255, 0.12);
  color: var(--primary);
}

.footer-main-band .footer-column i {
  color: var(--primary);
}

/* Review quote text: white on dark cards */
.review-card p,
.review-card.is-active p {
  color: #ffffff !important;
}

.review-author strong {
  color: #ffffff;
}

/* Hero + CTA: single primary action (desktop) */
@media (min-width: 841px) {
  .hero-actions {
    grid-template-columns: minmax(0, 280px);
    max-width: 280px;
  }
}

/* Reviews & Insurance: mobile-friendly layout */
.reviews-payment-band {
  overflow-x: clip;
}

.reviews-payment-shell,
.reviews-panel,
.insurance-panel,
.review-slider,
.review-track,
.review-card,
.insurance-marquee--panel {
  max-width: 100%;
  min-width: 0;
}

.review-card p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 1120px) {
  .reviews-heading {
    display: grid;
    gap: 16px;
  }

  .rating-summary {
    width: 100%;
    max-width: 220px;
  }

  .review-track {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
  }

  .review-card,
  .review-card.is-active {
    min-height: 0;
    transform: none;
  }

  .review-card.is-side {
    display: none;
  }

  .review-card[hidden] {
    display: none;
  }

  .insurance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .reviews-payment-band {
    padding: 54px 0 62px;
  }

  .reviews-panel,
  .insurance-panel {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .reviews-heading h2,
  .insurance-heading h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .insurance-heading p {
    font-size: 15px;
  }

  .review-controls {
    flex-wrap: wrap;
    gap: 10px;
  }

  .review-dots {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .review-status {
    font-size: 13px;
    text-align: center;
  }

  .insurance-marquee--panel {
    margin-bottom: 18px;
    padding: 10px 0;
  }

  .insurance-marquee-item {
    min-width: 96px;
    height: 40px;
  }

  .insurance-marquee-item img {
    max-width: 120px;
    height: 40px;
  }

  .insurance-item {
    padding: 14px;
  }

  .reviews-cta,
  .insurance-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .reviews-panel,
  .insurance-panel {
    padding: 16px 14px;
  }

  .review-author {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
  }

  .review-avatar {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .review-author strong {
    font-size: 13px;
  }

  .review-author small {
    font-size: 10px;
  }

  .review-card p,
  .review-card.is-active p {
    font-size: 14px;
  }

  .rating-summary {
    max-width: none;
  }

  .insurance-marquee-track {
    gap: 28px;
  }

  .insurance-marquee-item--evicore img {
    max-width: 110px;
  }
}

/* Footer: full white theme + mobile layout */
.site-footer {
  background: #ffffff;
}

.footer-top-band {
  border-bottom: 1px solid rgba(16, 40, 68, 0.08);
}

@media (max-width: 840px) {
  .footer-top-band {
    padding: 36px 0 28px;
  }

  .footer-main-band {
    padding: 28px 0 22px;
  }

  .footer-shell {
    gap: 26px;
  }

  .footer-bottom {
    display: grid;
    gap: 14px;
    justify-items: start;
    margin-top: 28px;
    padding-top: 18px;
  }

  .footer-bottom nav {
    display: grid;
    gap: 10px;
  }

  .footer-social {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .footer-top-band {
    padding: 32px 0 24px;
  }

  .footer-main-band {
    padding: 24px 0 20px;
  }

  .footer-brand-block p {
    font-size: 13px;
  }

  .footer-brand-chips span {
    font-size: 11px;
    padding: 6px 9px;
  }

  .footer-column h2 {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .footer-column li,
  .footer-column address,
  .footer-column nav a,
  .footer-bottom p,
  .footer-bottom a {
    font-size: 13px;
  }

  .footer-bottom p {
    max-width: 28ch;
    line-height: 1.5;
  }

  .trust-badge--labeled {
    font-size: 10px;
  }

  .trust-badge--labeled img {
    height: 32px;
  }
}

.trust-badge--iac img {
  height: 40px;
  mix-blend-mode: normal;
}

.trust-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 650px;
}

.location-find-btn {
  width: 100%;
  margin-bottom: 14px;
  justify-content: center;
}

.location-nearest {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(69, 231, 255, 0.34);
  border-radius: 8px;
  background: rgba(47, 157, 255, 0.12);
  color: #f7fbff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.location-panel-actions {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.location-panel-actions .btn {
  width: 100%;
  justify-content: center;
  white-space: normal;
  text-align: center;
}

.location-view-all {
  width: 100%;
  justify-content: center;
}

.location-card.is-closest {
  border-color: rgba(69, 231, 255, 0.72);
  box-shadow:
    0 0 0 1px rgba(69, 231, 255, 0.28),
    0 24px 60px rgba(47, 157, 255, 0.22);
}

.location-card.is-closest .location-status::after {
  content: " · Nearest";
  color: var(--scan-cyan);
}

/* Site-wide Background 4.png on every section */
html {
  background-color: #f2f9f8;
}

body {
  background-color: transparent !important;
  background-image: none !important;
  color: #0f2430 !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #f2f9f8;
  background-image:
    linear-gradient(180deg, rgba(242, 249, 248, 0.22) 0%, rgba(242, 249, 248, 0.38) 100%),
    url("../assets/images/Background 4.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  z-index: 20;
}

.contact-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1000 !important;
  display: grid !important;
  place-items: center;
  padding: 24px;
}

.contact-modal[hidden] {
  display: none !important;
}

.hero,
.hero-bg,
.intro-band,
.services-band,
.why-band,
.comparison-band,
.workflow-band,
.safety-band,
.locations-band,
.doctors-band,
.reviews-payment-band,
.faq-band,
.final-cta-band,
.full-body-band,
.transport-band,
.resources-band {
  background: transparent !important;
  background-image: none !important;
}

.hero-bg {
  opacity: 0 !important;
  pointer-events: none !important;
}

.hero::before,
.hero::after,
.services-band::before,
.services-band::after,
.comparison-band::before,
.faq-band::before,
.why-band::before,
.workflow-band::before,
.safety-band::before,
.resources-band::before,
.locations-band::before,
.doctors-band::before,
.reviews-payment-band::before,
.reviews-payment-band::after,
.locations-band::after,
.doctors-band::after,
.transport-band::before,
.intro-band::before,
.full-body-band::before {
  display: none !important;
}

.hero {
  border-color: rgba(104, 199, 255, 0.16) !important;
  box-shadow: none !important;
}

.insurance-marquee-band {
  border-bottom-color: rgba(216, 228, 230, 0.9);
  background: #ffffff !important;
}

@media (max-width: 840px) {
  body::before {
    /* Keep fixed layer on mobile — background-attachment:fixed fails on iOS */
    position: fixed;
    background-attachment: scroll;
  }
}

@media (max-width: 840px) {
  .primary-nav a[href*="blume.omegaai"],
  .primary-nav a[href*="ramsoftpacs"] {
    font-size: 14px;
  }

  .location-panel-actions .btn {
    min-height: 48px;
  }
}

/* Location sidebar note: readable on dark glass panel */
.location-control-card .location-panel-note {
  border: 1px solid rgba(69, 231, 255, 0.34);
  background: linear-gradient(135deg, rgba(8, 22, 42, 0.96) 0%, rgba(4, 14, 30, 0.98) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.location-control-card .location-panel-note p {
  color: #f7fbff;
  font-weight: 600;
  line-height: 1.55;
}

.location-control-card .location-panel-note i {
  color: var(--scan-cyan);
}

/* === Mobile polish: hero + site-wide === */
@media (max-width: 840px) {
  html,
  body {
    overflow-x: clip;
  }

  main,
  .hero,
  .intro-band,
  .services-band,
  .why-band,
  .comparison-band,
  .workflow-band,
  .safety-band,
  .locations-band,
  .doctors-band,
  .reviews-payment-band,
  .faq-band,
  .final-cta-band,
  .full-body-band {
    overflow-x: clip;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 24px) !important;
    margin: 10px auto 0;
    padding: 10px 12px !important;
    gap: 12px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-header.is-open {
    grid-template-columns: auto auto;
    row-gap: 0;
  }

  .site-header.is-open .primary-nav,
  .site-header.is-open .header-cta {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.is-open .primary-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: min(68vh, 520px);
    margin-top: 8px;
    padding-top: 8px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.is-open .primary-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid #e8eef0;
    font-size: 15px;
  }

  .site-header.is-open .header-cta {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
    min-height: 48px;
  }

  .site-header.is-open .header-cta span {
    display: inline;
  }

  .hero {
    width: 100%;
    min-height: auto;
  }

  .hero-inner {
    width: min(calc(100% - 24px), var(--max));
    margin-inline: auto;
    min-height: auto;
    padding: 24px 0 30px;
    gap: 18px;
  }

  .hero-copy,
  .hero-side,
  .hero-actions,
  .trust-row {
    width: 100%;
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(32px, 8.8vw, 44px);
    line-height: 1.04;
  }

  .hero-lede {
    margin: 14px 0 18px;
    font-size: 15px;
    max-width: none;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }

  .trust-badge--labeled {
    grid-column: 1 / -1;
    justify-content: flex-start;
    font-size: 11px;
  }

  .trust-badge--labeled img {
    height: 34px;
  }

  .hero-media-card {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: min(62vw, 380px);
  }

  .hero-media-card img {
    width: 100%;
    height: auto;
    max-height: min(62vw, 380px);
    object-fit: contain;
    object-position: center;
  }

  .path-panel {
    width: 100%;
    max-width: none;
    padding: 18px 16px;
  }

  .path-card {
    width: 100%;
    min-height: 56px;
  }

  .section-inner {
    width: min(calc(100% - 24px), var(--max));
  }

  .intro-band,
  .services-band,
  .why-band,
  .comparison-band,
  .workflow-band,
  .safety-band,
  .locations-band,
  .doctors-band,
  .reviews-payment-band,
  .faq-band,
  .final-cta-band,
  .full-body-band {
    padding: 52px 0;
  }

  .section-heading h2,
  .intro-copy h2,
  .locations-header h2,
  .doctors-header h2,
  .comparison-heading h2,
  .final-cta-copy h2,
  .full-body-copy h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .locations-header,
  .doctors-header,
  .section-heading,
  .intro-grid,
  .final-cta-shell,
  .full-body-shell,
  .leadership-panel {
    gap: 16px;
  }

  .location-layout {
    padding: 16px;
  }

  .location-panel-stats {
    grid-template-columns: 1fr;
  }

  .location-control-card .location-filter-group {
    grid-template-columns: 1fr;
  }

  .location-panel-actions .btn,
  .location-find-btn,
  .location-view-all {
    min-height: 48px;
  }

  .insurance-marquee {
    width: min(calc(100% - 24px), var(--max));
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-actions {
    grid-template-columns: 1fr;
    min-width: 0;
    width: 100%;
  }

  .final-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 16px) !important;
    margin-top: 8px;
  }

  .brand-logo {
    width: 108px;
    height: auto;
  }

  .hero-inner {
    width: min(calc(100% - 20px), var(--max));
    padding: 18px 0 24px;
    gap: 14px;
  }

  .hero h1 {
    font-size: clamp(28px, 8.2vw, 36px);
  }

  .hero-lede {
    font-size: 14px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-badge--labeled {
    grid-column: auto;
  }

  .hero-media-card,
  .hero-media-card img {
    max-height: min(72vw, 340px);
  }

  .section-inner {
    width: min(calc(100% - 20px), var(--max));
  }

  .intro-band,
  .services-band,
  .why-band,
  .comparison-band,
  .workflow-band,
  .safety-band,
  .locations-band,
  .doctors-band,
  .reviews-payment-band,
  .faq-band,
  .final-cta-band,
  .full-body-band {
    padding: 44px 0;
  }

  .service-card,
  .mri-option-card,
  .location-card,
  .doctor-card,
  .workflow-step,
  .safety-item {
    min-width: 0;
  }

  .location-card img {
    aspect-ratio: 16 / 10;
  }

  .why-feature-grid,
  .proof-grid,
  .services-grid,
  .workflow-grid,
  .safety-grid,
  .doctors-grid,
  .locations-list {
    grid-template-columns: 1fr;
  }

  .location-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .btn {
    font-size: 12px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }
}

/* Light theme: buttons + text matched to Background 4 cyan/lime */
:root {
  --primary: #1aa8c8 !important;
  --primary-dark: #0d7f9a !important;
  --primary-soft: rgba(26, 168, 200, 0.12) !important;
  --scan-blue: #2ec4e8 !important;
  --scan-cyan: #2ec4e8 !important;
  --scan-green: #7ed321 !important;
  --ink: #0f2430 !important;
  --muted: #4a6570 !important;
  --line: rgba(26, 168, 200, 0.22) !important;
}

.header-cta,
.btn-primary,
.location-find-btn.btn-primary,
.reviews-cta,
.insurance-cta,
.resources-cta {
  border-color: #1aa8c8 !important;
  background: linear-gradient(135deg, #1aa8c8 0%, #2ec4e8 55%, #3ad0d8 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(26, 168, 200, 0.28) !important;
}

.btn-secondary,
.location-panel-actions .btn-secondary,
.location-view-all {
  border-color: rgba(26, 168, 200, 0.35) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  color: #0d7f9a !important;
  box-shadow: 0 8px 20px rgba(13, 80, 100, 0.08) !important;
}

.btn-secondary:hover,
.location-panel-actions .btn-secondary:hover {
  border-color: #7ed321 !important;
  color: #3f8f12 !important;
  background: rgba(255, 255, 255, 0.96) !important;
}

.header-cta:hover,
.btn-primary:hover {
  box-shadow:
    0 18px 36px rgba(26, 168, 200, 0.34),
    0 0 24px rgba(126, 211, 33, 0.18) !important;
}

.final-cta-actions .btn-primary {
  border-color: #1aa8c8 !important;
  background: linear-gradient(135deg, #1aa8c8 0%, #2ec4e8 100%) !important;
  color: #ffffff !important;
}

.final-cta-actions .btn-secondary {
  border-color: rgba(26, 168, 200, 0.4) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  color: #0d7f9a !important;
}

.hero h1,
.intro-copy h2,
.section-heading h2,
.comparison-heading h2,
.locations-header h2,
.doctors-header h2,
.reviews-heading h2,
.insurance-heading h2,
.final-cta-copy h2,
.full-body-copy h2,
.path-panel h2,
.proof-card h3,
.service-card h3,
.why-feature h3,
.workflow-step h3,
.safety-item h3,
.location-card h3,
.doctor-card h3,
.leadership-panel h3,
.insurance-item h3,
.faq-item summary,
.full-body-panel h3,
.location-map-card h3 {
  color: #0f2430 !important;
}

.hero h1 em {
  background: linear-gradient(90deg, #1aa8c8 0%, #2ec4e8 55%, #7ed321 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}

.hero-lede,
.intro-copy p,
.section-heading p,
.proof-card p,
.service-card p,
.why-feature p,
.workflow-step p,
.safety-item p,
.location-map-card p,
.doctor-card p,
.leadership-panel p:not(.section-kicker),
.insurance-heading p,
.final-cta-copy p,
.full-body-copy > p,
.full-body-location,
.review-author small,
.rating-summary small,
.locations-header p,
.doctors-header p {
  color: #4a6570 !important;
}

.section-kicker,
.path-kicker,
.location-panel-kicker {
  color: #1aa8c8 !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  text-shadow: none !important;
}

.trust-row span,
.trust-badge--labeled {
  color: #0f2430 !important;
}

.trust-badge--joint img {
  mix-blend-mode: multiply;
}

.trust-row i {
  color: #1aa8c8 !important;
  filter: none !important;
}

.path-panel,
.proof-card,
.service-card,
.mri-option-card,
.why-feature,
.workflow-step,
.safety-item,
.location-finder,
.location-card,
.location-map-card,
.doctor-card,
.leadership-panel,
.reviews-panel,
.insurance-panel,
.faq-item,
.full-body-panel,
.full-body-pricing,
.rating-summary,
.insurance-item,
.review-card {
  border-color: rgba(26, 168, 200, 0.2) !important;
  background: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 16px 40px rgba(13, 80, 100, 0.08) !important;
  color: #0f2430 !important;
}

.review-card p,
.review-card.is-active p,
.review-author strong,
.rating-summary strong {
  color: #0f2430 !important;
}

.location-nearest,
.location-control-card .location-panel-note {
  border-color: rgba(26, 168, 200, 0.28) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #0f2430 !important;
}

.location-control-card .location-panel-note p {
  color: #0f2430 !important;
}

.location-control-card .location-panel-note i {
  color: #1aa8c8 !important;
}

.location-search,
.location-search input,
.location-filter-group button {
  color: #0f2430 !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: rgba(26, 168, 200, 0.25) !important;
}

.location-filter-group button.is-active {
  background: linear-gradient(135deg, #1aa8c8 0%, #2ec4e8 100%) !important;
  color: #ffffff !important;
  border-color: #1aa8c8 !important;
}

.path-icon,
.proof-card i,
.why-feature i,
.workflow-icon,
.safety-item i,
.coming-location-icon,
.insurance-item i,
.final-cta-icon,
.faq-item summary::after {
  border-color: rgba(26, 168, 200, 0.28) !important;
  background: rgba(26, 168, 200, 0.12) !important;
  color: #1aa8c8 !important;
  box-shadow: none !important;
}

.final-cta-copy,
.final-cta-points li,
.final-cta-points i {
  color: #0f2430 !important;
}

.full-body-chips span {
  border-color: rgba(26, 168, 200, 0.28) !important;
  background: rgba(26, 168, 200, 0.1) !important;
  color: #0d7f9a !important;
}

.full-body-price,
.full-body-list strong {
  color: #0f2430 !important;
}

.full-body-price-label,
.full-body-price-note,
.full-body-list {
  color: #4a6570 !important;
}

.path-card {
  border-color: rgba(26, 168, 200, 0.22) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  color: #0f2430 !important;
}

.path-card strong {
  color: #0f2430 !important;
}

.path-card small {
  color: #4a6570 !important;
}

.service-tag,
.location-status {
  color: #0d7f9a !important;
}

.location-card.is-closest {
  border-color: rgba(26, 168, 200, 0.55) !important;
  box-shadow: 0 0 0 1px rgba(26, 168, 200, 0.2), 0 18px 40px rgba(26, 168, 200, 0.16) !important;
}

.location-card.is-closest .location-status::after {
  color: #1aa8c8 !important;
}

/* === Visibility + brand color pass (#0a6f72) === */
:root {
  --primary: #0a6f72 !important;
  --primary-dark: #07585b !important;
  --primary-soft: rgba(10, 111, 114, 0.12) !important;
  --scan-blue: #0a6f72 !important;
  --scan-cyan: #0a6f72 !important;
  --ink: #111a28 !important;
  --muted: #314251 !important;
  --line: rgba(10, 111, 114, 0.2) !important;
}

/* Hero image: full bleed cover, no black letterboxing */
.hero-media-card {
  height: clamp(300px, 34vw, 420px) !important;
  max-height: none !important;
  overflow: hidden !important;
  background: #e8f4f4 !important;
}

.hero-media-card::after {
  background: transparent !important;
}

.hero-media-card img,
.hero-media-card video {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  filter: none !important;
}

@media (max-width: 840px) {
  .hero-media-card {
    height: min(72vw, 360px) !important;
  }

  .hero-media-card img,
  .hero-media-card video {
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* All buttons → #0a6f72 */
.header-cta,
.btn-primary,
.location-find-btn.btn-primary,
.reviews-cta,
.insurance-cta,
.resources-cta,
.final-cta-actions .btn-primary,
.transport-copy .btn-primary {
  border-color: #0a6f72 !important;
  background: #0a6f72 !important;
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(10, 111, 114, 0.24) !important;
}

.btn-secondary,
.location-panel-actions .btn-secondary,
.location-view-all,
.final-cta-actions .btn-secondary {
  border-color: #0a6f72 !important;
  background: #ffffff !important;
  color: #0a6f72 !important;
  box-shadow: 0 8px 18px rgba(10, 111, 114, 0.1) !important;
}

.btn-secondary:hover,
.location-panel-actions .btn-secondary:hover {
  border-color: #07585b !important;
  color: #07585b !important;
  background: #f3fbfb !important;
}

.header-cta:hover,
.btn-primary:hover {
  background: #07585b !important;
  border-color: #07585b !important;
  box-shadow: 0 16px 30px rgba(7, 88, 91, 0.28) !important;
}

.location-filter-group button.is-active,
.service-tag {
  background: #0a6f72 !important;
  border-color: #0a6f72 !important;
  color: #ffffff !important;
}

.section-kicker,
.path-kicker,
.location-panel-kicker,
.trust-row i,
.path-icon,
.proof-card i,
.why-feature i,
.workflow-icon,
.safety-item i,
.coming-location-icon,
.insurance-item i,
.final-cta-icon,
.faq-item summary::after,
.location-control-card .location-panel-note i,
.location-card.is-closest .location-status::after {
  color: #0a6f72 !important;
}

/* Dark logos on black: knock out black bg on light hero */
.trust-badge--labeled img {
  mix-blend-mode: screen;
}

.trust-badge--joint img {
  mix-blend-mode: multiply;
}

.hero h1 em {
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #0a6f72 !important;
}

/* Cards/panels: white surfaces + black text for readability */
.path-panel,
.proof-card,
.service-card,
.mri-option-card,
.mri-option-body,
.why-feature,
.workflow-step,
.safety-item,
.safety-panel,
.location-finder,
.location-card,
.location-card-body,
.location-map-card,
.doctor-card,
.leadership-panel,
.reviews-panel,
.insurance-panel,
.faq-item,
.full-body-panel,
.full-body-pricing,
.rating-summary,
.insurance-item,
.review-card,
.comparison-note,
.resources-shell {
  background: #ffffff !important;
  border-color: rgba(10, 111, 114, 0.16) !important;
  color: #111a28 !important;
  box-shadow: 0 14px 36px rgba(13, 61, 67, 0.08) !important;
}

.mri-option-body,
.mri-option-body h3,
.mri-option-body ul,
.mri-option-body li,
.service-card h3,
.service-card p,
.safety-panel,
.safety-heading h2,
.safety-heading p,
.safety-item h3,
.safety-item p,
.safety-note,
.location-card-body,
.location-card h3,
.location-card p,
.location-card address,
.location-modality,
.location-phone,
.location-status,
.location-card a,
.location-map-card h3,
.location-map-card p,
.location-panel-stats span,
.location-nearest,
.location-control-card .location-panel-note,
.location-control-card .location-panel-note p,
.workflow-step h3,
.workflow-step p,
.why-feature h3,
.why-feature p,
.proof-card h3,
.proof-card p,
.doctor-card h3,
.doctor-card p,
.leadership-panel h3,
.leadership-panel p,
.faq-item summary,
.faq-item p,
.review-card p,
.review-card.is-active p,
.review-author strong,
.insurance-item h3,
.insurance-item p,
.full-body-panel h3,
.full-body-list,
.full-body-list strong,
.full-body-price,
.path-panel h2,
.path-card strong {
  color: #111a28 !important;
}

.mri-option-body ul,
.service-card p,
.safety-heading p,
.safety-item p,
.location-modality,
.location-card address,
.location-phone,
.location-status,
.workflow-step p,
.why-feature p,
.proof-card p,
.doctor-card p,
.faq-item p,
.insurance-item p,
.full-body-list,
.path-card small {
  color: #243746 !important;
}

.location-card a,
.doctor-card a {
  color: #0a6f72 !important;
  font-weight: 800;
}

.location-search,
.location-search input,
.location-filter-group button {
  color: #111a28 !important;
  background: #ffffff !important;
  border-color: rgba(10, 111, 114, 0.22) !important;
}

.path-icon,
.proof-card i,
.why-feature i,
.workflow-icon,
.safety-item i,
.coming-location-icon,
.insurance-item i,
.final-cta-icon {
  background: rgba(10, 111, 114, 0.1) !important;
  border-color: rgba(10, 111, 114, 0.18) !important;
  color: #0a6f72 !important;
}

.mri-option-body li::before {
  background: #0a6f72 !important;
}

.final-cta-copy,
.final-cta-copy h2,
.final-cta-copy p,
.final-cta-points li,
.final-cta-points i {
  color: #111a28 !important;
}

.comparison-heading p,
.comparison-note p {
  color: #111a28 !important;
}

.location-panel-stats span {
  background: #0a6f72 !important;
  border-color: #0a6f72 !important;
  color: #ffffff !important;
}

.location-panel-stats strong {
  color: #ffffff !important;
}

/* Hero video fills media card like the old image */
.hero-media-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #04101f;
}

.insurance-marquee-item--accreditation {
  min-width: 88px;
  height: 52px;
  padding: 4px 8px;
  border-radius: 8px;
  background: #ffffff;
}

.insurance-marquee-item--accreditation img {
  height: 44px;
  max-width: 120px;
  object-fit: contain;
  mix-blend-mode: normal;
}

.insurance-marquee--accreditations {
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.insurance-marquee--accreditations .insurance-marquee-track {
  width: max-content;
  margin: 0;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 48px;
  animation: insurance-marquee-scroll 28s linear infinite;
}

.service-card video,
.location-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #04101f;
}

.location-panel-coming-soon {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(10, 111, 114, 0.18);
  border-radius: 12px;
  background: rgba(10, 111, 114, 0.06);
}

.location-panel-coming-soon .location-panel-kicker {
  margin-bottom: 4px;
}

.location-panel-coming-soon p:last-child {
  margin: 0;
  color: #12343a;
  font-size: 0.95rem;
  line-height: 1.45;
}

.full-body-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #04101f;
}

.full-body-media--wide {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 28px;
  border-radius: 14px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: rgba(4, 16, 31, 0.06);
}

.full-body-media--wide video {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 420px);
  max-height: min(78vh, 720px);
  min-height: 0;
  aspect-ratio: 212 / 660;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

@media (max-width: 840px) {
  .full-body-media--wide {
    margin-bottom: 22px;
  }

  .full-body-media--wide video {
    max-width: min(100%, 360px);
    max-height: min(70vh, 560px);
  }
}

@media (max-width: 540px) {
  .full-body-media--wide video {
    max-width: 100%;
    max-height: min(68vh, 520px);
  }
}

/* Hero background video and updated responsive media */
.hero {
  isolation: isolate;
  min-height: clamp(620px, 72vh, 780px);
  background: #edf7f7 !important;
}

.hero-bg {
  z-index: -2;
  display: block !important;
  opacity: 1 !important;
  overflow: hidden;
  background: #dfeeee !important;
}

.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.68) 38%, rgba(255, 255, 255, 0.22) 68%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(238, 250, 250, 0.04), rgba(10, 111, 114, 0.08));
}

.hero-inner {
  z-index: 1;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 6vw, 88px);
}

.hero-copy {
  max-width: 650px;
}

.hero-side {
  width: 100%;
  max-width: 430px;
  margin-left: auto;
}

.path-panel {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.full-body-media--inline {
  width: 100%;
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid rgba(7, 88, 91, 0.5);
  border-radius: 14px;
  background: linear-gradient(135deg, #07585b 0%, #0a6f72 55%, #0d8589 100%);
  box-shadow: 0 16px 34px rgba(10, 111, 114, 0.2);
}

.full-body-media--inline img {
  display: block;
  width: 100%;
  height: clamp(300px, 36vw, 470px);
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: screen;
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    max-width: min(100%, 680px);
  }

  .hero-side {
    max-width: min(100%, 680px);
    margin: 0;
  }

  .hero-bg video {
    object-position: 62% center;
  }

  .hero-bg::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.61) 52%, rgba(238, 250, 250, 0.5) 100%);
  }
}

@media (max-width: 560px) {
  .hero-bg video {
    object-position: 68% center;
  }

  .hero-bg::after {
    background: rgba(255, 255, 255, 0.62);
  }

  .full-body-media--inline img {
    height: min(112vw, 430px);
  }
}

/* Full Body MRI: balanced desktop columns */
.full-body-shell {
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: stretch;
}

.full-body-copy {
  min-width: 0;
}

.full-body-copy .full-body-panel {
  margin-top: 26px;
}

.full-body-visual {
  min-width: 0;
}

.full-body-visual .full-body-media--inline {
  position: sticky;
  top: 110px;
  height: 100%;
  min-height: 620px;
  margin: 0;
}

.full-body-visual .full-body-media--inline img {
  width: 100%;
  height: 100%;
  min-height: 620px;
}

/* MRI customer-service chat */
.customer-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
  display: grid;
  justify-items: end;
  gap: 12px;
  overflow: visible;
  font-family: inherit;
}

.customer-chat__panel {
  display: flex;
  flex-direction: column;
  width: min(370px, calc(100vw - 32px));
  max-height: min(720px, calc(100dvh - 120px));
  overflow: hidden;
  border: 1px solid rgba(10, 111, 114, 0.22);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(7, 45, 48, 0.24);
}

.customer-chat__panel[hidden] {
  display: none !important;
}

.customer-chat__header {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding: 15px 16px;
  background: linear-gradient(135deg, #07585b, #0a6f72);
  color: #ffffff;
}

.customer-chat__logo {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.customer-chat__header div {
  display: grid;
  flex: 1;
}

.customer-chat__header strong {
  font-size: 15px;
}

.customer-chat__header small {
  color: rgba(255, 255, 255, 0.78);
}

.customer-chat__status {
  display: none;
}

.customer-chat__header button {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
}

.customer-chat__body {
  display: grid;
  flex: 1 1 auto;
  gap: 10px;
  align-content: start;
  min-height: 180px;
  max-height: none;
  padding: 16px 14px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #f2f8f7;
}

.customer-chat__body p,
.customer-chat__msg {
  width: fit-content;
  max-width: 92%;
  margin: 0;
  padding: 11px 13px;
  border-radius: 4px 14px 14px;
  background: #ffffff;
  color: #17343a;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
  box-shadow: 0 6px 18px rgba(7, 88, 91, 0.09);
}

.customer-chat__msg--user {
  justify-self: end;
  border-radius: 14px 4px 14px 14px;
  background: #0a6f72;
  color: #ffffff;
  box-shadow: none;
}

.customer-chat__msg--bot.is-pending {
  opacity: 0.72;
  font-style: italic;
}

.customer-chat__quick {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 12px 10px;
  background: #f2f8f7;
}

.customer-chat__quick button {
  padding: 7px 10px;
  border: 1px solid rgba(10, 111, 114, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: #0a6f72;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.customer-chat__quick button:hover,
.customer-chat__quick button:focus-visible {
  border-color: #0a6f72;
  background: #e7f5f4;
}

.customer-chat__quick button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.customer-chat__form {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 9px;
  padding: 12px;
  border-top: 1px solid rgba(10, 111, 114, 0.12);
  background: #ffffff;
}

.customer-chat__form textarea {
  width: 100%;
  min-height: 46px;
  max-height: 120px;
  padding: 11px 12px;
  resize: vertical;
  border: 1px solid rgba(10, 111, 114, 0.24);
  border-radius: 11px;
  outline: none;
  color: #111a28;
  font: inherit;
  font-size: 14px;
}

.customer-chat__form textarea:focus {
  border-color: #0a6f72;
  box-shadow: 0 0 0 3px rgba(10, 111, 114, 0.1);
}

.customer-chat__form button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: #0a6f72;
  color: #ffffff;
  cursor: pointer;
}

.customer-chat__note {
  flex: 0 0 auto;
  margin: 0;
  padding: 0 14px 13px;
  color: #536a70;
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

.customer-chat__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  min-height: 70px;
  padding: 5px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, #07585b, #0a6f72);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(7, 88, 91, 0.3);
  position: relative;
  z-index: 2;
}

.customer-chat__launcher {
  position: relative;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
}

.customer-chat__teaser {
  position: absolute;
  left: 50%;
  top: -92px;
  right: auto;
  bottom: auto;
  z-index: 5;
  display: grid;
  justify-items: center;
  width: 120px;
  margin: 0;
  pointer-events: auto;
  transform: translateX(-50%);
  animation: chat-teaser-pop 520ms cubic-bezier(0.2, 0.9, 0.25, 1.15) both;
}

.customer-chat__teaser[hidden] {
  display: none !important;
}

.customer-chat__teaser-bubble {
  position: relative;
  z-index: 3;
  margin: 0 0 6px;
  padding: 7px 10px;
  border-radius: 14px;
  background: #ffffff;
  color: #0a6f72;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(7, 45, 48, 0.18);
}

.customer-chat__teaser-bubble::after {
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 10px;
  height: 10px;
  content: "";
  background: #ffffff;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 2px 2px 6px rgba(7, 45, 48, 0.08);
}

.customer-chat__teaser-doctor {
  position: relative;
  z-index: 6;
  display: block;
  width: 78px;
  height: 58px;
  margin-bottom: -6px;
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(0 8px 12px rgba(7, 45, 48, 0.2));
  pointer-events: none;
  animation: none;
  transform: none;
}

.customer-chat__teaser-close {
  position: absolute;
  top: -16px;
  right: 4px;
  z-index: 7;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #0a6f72;
  color: #ffffff;
  font-size: 11px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(7, 88, 91, 0.28);
}

@keyframes chat-teaser-pop {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(14px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes chat-doctor-wave {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }
  50% {
    transform: rotate(3deg) translateY(-4px);
  }
}

.customer-chat__toggle img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  background: #0a6f72;
  mix-blend-mode: screen;
}

.customer-chat__toggle span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 960px) {
  .full-body-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .full-body-visual {
    grid-row: 1;
  }

  .full-body-copy {
    grid-row: 2;
  }

  .full-body-visual .full-body-media--inline {
    position: static;
    height: auto;
    min-height: 0;
  }

  .full-body-visual .full-body-media--inline img {
    height: min(70vw, 520px);
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .customer-chat {
    right: 14px;
    bottom: 14px;
  }

  .customer-chat__launcher {
    width: 64px;
    height: 64px;
  }

  .customer-chat__teaser {
    left: auto;
    right: 0;
    top: -82px;
    width: max-content;
    max-width: calc(100vw - 28px);
    justify-items: end;
    transform: none;
    animation: chat-teaser-pop-mobile 520ms cubic-bezier(0.2, 0.9, 0.25, 1.15) both;
  }

  .customer-chat__teaser-doctor {
    width: 70px;
    height: 52px;
    margin-right: 0;
    margin-bottom: -4px;
  }

  .customer-chat__teaser-bubble {
    margin-bottom: 5px;
    margin-right: 0;
    padding: 6px 9px;
    font-size: 10px;
  }

  .customer-chat__teaser-bubble::after {
    left: auto;
    right: 22px;
    transform: rotate(45deg);
  }

  .customer-chat__teaser-close {
    top: -12px;
    right: auto;
    left: -4px;
  }

  .customer-chat__toggle {
    width: 64px;
    height: 64px;
    min-height: 64px;
    padding: 4px;
  }

  .customer-chat__toggle img {
    width: 52px;
    height: 52px;
  }

  .customer-chat__toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}

@keyframes chat-teaser-pop-mobile {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Performance: avoid expensive blend/repaint work while scrolling */
.site-header {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.full-body-media--inline img,
.customer-chat__toggle img {
  mix-blend-mode: normal;
}

.service-card img,
.mri-option-card img,
.location-card img,
.doctor-card img,
.leadership-panel img {
  background: #eaf3f2;
}

.doctor-card .doctor-role {
  padding: 7px 11px;
  border-radius: 999px;
  background: #0a6f72;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-shadow: none;
}

body::before {
  transform: translateZ(0);
  contain: strict;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .insurance-marquee-track,
  .insurance-marquee--accreditations .insurance-marquee-track {
    animation: none !important;
  }
}

/* July 18 updates: services, leadership, footer, typography */
.brand {
  min-width: 176px;
}

.brand-logo {
  width: 176px;
  height: 66px;
}

@media (max-width: 560px) {
  .brand {
    min-width: 148px;
  }

  .brand-logo {
    width: 148px;
    height: 56px;
  }
}

.services-grid {
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: none;
  transform: none;
}

.service-card:hover {
  border-color: var(--line);
  box-shadow: 0 16px 36px rgba(13, 61, 67, 0.08);
  transform: none;
}

.service-card img {
  aspect-ratio: 16 / 11;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 24px 28px;
}

.service-card h3 {
  font-size: clamp(22px, 1.8vw, 26px);
}

.service-card p {
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 840px) {
  .services-grid {
    gap: 16px;
  }

  .service-card img {
    min-height: 240px;
    aspect-ratio: 16 / 10;
  }
}

.full-body-actions {
  display: grid;
  grid-template-columns: auto auto;
  gap: 12px 14px;
  align-items: center;
  margin-bottom: 0;
}

.full-body-actions .full-body-location {
  grid-column: 1 / -1;
  margin: 4px 0 0;
}

@media (max-width: 560px) {
  .full-body-actions {
    grid-template-columns: 1fr;
  }

  .full-body-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.leadership-panel {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
}

.leadership-panel img {
  aspect-ratio: 4 / 3;
  min-height: 320px;
  object-fit: cover;
}

@media (max-width: 1120px) {
  .leadership-panel {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  }

  .leadership-panel img {
    min-height: 280px;
  }
}

@media (max-width: 840px) {
  .leadership-panel {
    grid-template-columns: 1fr;
  }

  .leadership-panel img {
    min-height: 300px;
    aspect-ratio: 16 / 11;
  }
}

.faq-item summary {
  min-height: 64px;
  font-size: 17px;
  line-height: 1.35;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.7;
}

.site-footer {
  background: #ffffff;
}

.footer-top-band {
  padding: 48px 0 36px;
  border-bottom: 0;
  background: #ffffff;
}

.footer-top-band .section-inner {
  display: grid;
  gap: 42px;
}

.footer-top-band .footer-shell {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 8px;
  border-top: 1px solid rgba(16, 40, 68, 0.1);
}

.footer-top-band .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 40, 68, 0.1);
}

.footer-logo {
  width: 240px;
  height: 110px;
}

.footer-top-band .footer-logo {
  width: 240px;
  height: 110px;
}

.footer-top-band .footer-column h2,
.footer-top-band .footer-column a,
.footer-top-band .footer-column li,
.footer-top-band .footer-column address,
.footer-top-band .footer-bottom p,
.footer-top-band .footer-bottom a {
  color: #172331;
}

.footer-top-band .footer-column a,
.footer-top-band .footer-bottom a {
  color: #0a6f72;
}

.footer-top-band .footer-social a {
  background: rgba(10, 111, 114, 0.12);
  color: #0a6f72;
}

.footer-top-band .footer-column i {
  color: #0a6f72;
}

@media (max-width: 840px) {
  .footer-top-band {
    padding: 36px 0 28px;
  }

  .footer-top-band .section-inner {
    gap: 28px;
  }

  .footer-top-band .footer-shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-top-band .footer-bottom {
    display: grid;
    gap: 14px;
    justify-items: start;
  }

  .footer-logo,
  .footer-top-band .footer-logo {
    width: 210px;
    height: 96px;
  }
}

@media (max-width: 560px) {
  .footer-top-band {
    padding: 28px 0 22px;
  }

  .footer-brand-block p,
  .footer-top-band .footer-column li,
  .footer-top-band .footer-column address,
  .footer-top-band .footer-bottom p,
  .footer-top-band .footer-bottom a {
    font-size: 15px;
  }

  .footer-top-band .footer-column h2 {
    font-size: 15px;
  }

  .footer-logo,
  .footer-top-band .footer-logo {
    width: 190px;
    height: 86px;
  }
}

/* Uniform section typography across the site */
.section-kicker,
.eyebrow,
.location-panel-kicker,
.path-kicker {
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #0a6f72 !important;
  -webkit-text-fill-color: #0a6f72 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.2 !important;
  text-shadow: none !important;
  text-transform: uppercase !important;
}

.section-heading h2,
.comparison-heading h2,
.doctors-header h2,
.intro-copy h2,
.why-band .section-heading h2,
.workflow-band .section-heading h2,
.safety-band h2,
.locations-header h2,
.faq-band .section-heading h2,
.final-cta-copy h2,
.insurance-heading h2,
.reviews-heading h2 {
  color: #111a28 !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: clamp(30px, 3vw, 42px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.12 !important;
  text-shadow: none !important;
  -webkit-text-fill-color: #111a28 !important;
  background: none !important;
}

.section-heading p,
.comparison-heading p,
.doctors-header > p,
.intro-copy p,
.why-band .section-heading p,
.workflow-band .section-heading p,
.locations-header p,
.faq-band .section-heading p,
.final-cta-copy p,
.insurance-heading p {
  color: #435161 !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
  -webkit-text-fill-color: #435161 !important;
  background: none !important;
  text-shadow: none !important;
}

@media (max-width: 840px) {
  .section-heading p,
  .comparison-heading p,
  .doctors-header > p,
  .intro-copy p,
  .faq-band .section-heading p,
  .final-cta-copy p {
    font-size: 16px !important;
  }
}

/* July 18 pass 2: static accreditations, header, brand type, search */
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

body *:not(i):not([class*="fa-"]) {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.fa-solid,
.fa-regular,
.fa-brands,
i[class*="fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
}

body .site-header {
  top: 0 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 12px max(16px, calc((100vw - var(--max)) / 2 + 16px)) !important;
  border: 0 !important;
  border-bottom: 1px solid #e8eef0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: 0 1px 0 rgba(216, 228, 230, 0.95) !important;
}

@media (max-width: 840px) {
  body .site-header {
    padding: 10px 14px !important;
  }
}

.insurance-marquee-band {
  padding: 22px 0 !important;
  background: #ffffff !important;
}

.insurance-marquee--accreditations {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.insurance-marquee--accreditations .insurance-marquee-track {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  width: min(calc(100% - 48px), var(--max)) !important;
  max-width: var(--max) !important;
  margin: 0 auto !important;
  justify-content: stretch !important;
  align-items: center !important;
  animation: none !important;
  transform: none !important;
}

.insurance-marquee-item--accreditation,
.insurance-marquee--accreditations .insurance-marquee-item {
  width: 100% !important;
  min-width: 0 !important;
  height: 72px !important;
  justify-content: center !important;
  background: #ffffff !important;
}

.insurance-marquee-item--accreditation img,
.insurance-marquee--accreditations .insurance-marquee-item img {
  width: auto !important;
  max-width: min(100%, 160px) !important;
  height: 56px !important;
  object-fit: contain !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.insurance-marquee--panel {
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent) !important;
  overflow: hidden !important;
}

.insurance-marquee--panel .insurance-marquee-track {
  display: flex !important;
  grid-template-columns: none !important;
  width: max-content !important;
  max-width: none !important;
  margin: 0 !important;
  gap: 48px !important;
  align-items: center !important;
  animation: insurance-marquee-scroll 36s linear infinite !important;
  transform: none;
}

@media (max-width: 840px) {
  .insurance-marquee-band {
    padding: 14px 0 !important;
  }

  .insurance-marquee--accreditations .insurance-marquee-track {
    width: min(calc(100% - 20px), var(--max)) !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .insurance-marquee-item--accreditation,
  .insurance-marquee--accreditations .insurance-marquee-item {
    height: 44px !important;
    padding: 4px 2px !important;
  }

  .insurance-marquee-item--accreditation img,
  .insurance-marquee--accreditations .insurance-marquee-item img {
    max-width: min(100%, 72px) !important;
    height: 34px !important;
  }
}

@media (max-width: 560px) {
  .insurance-marquee--accreditations .insurance-marquee-track {
    gap: 4px !important;
  }

  .insurance-marquee-item--accreditation,
  .insurance-marquee--accreditations .insurance-marquee-item {
    height: 40px !important;
  }

  .insurance-marquee-item--accreditation img,
  .insurance-marquee--accreditations .insurance-marquee-item img {
    max-width: min(100%, 64px) !important;
    height: 30px !important;
  }
}

.service-img--dti {
  background: #000000 !important;
  object-fit: contain !important;
  object-position: center !important;
}

.service-img--contain {
  background: #0a141c !important;
  object-fit: contain !important;
  object-position: center !important;
}

.full-body-actions {
  display: block !important;
  margin: 0 !important;
}

.full-body-schedule-btn {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 8px !important;
  width: 100% !important;
  max-width: 640px !important;
  min-height: auto !important;
  padding: 16px 20px !important;
  white-space: normal !important;
  text-align: left !important;
  line-height: 1.35 !important;
}

.full-body-schedule-title {
  display: inline-flex !important;
  gap: 10px !important;
  align-items: center !important;
  font-size: 16px !important;
  font-weight: 800 !important;
}

.full-body-schedule-location {
  display: block !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
}

.location-search,
.location-control-card .location-search {
  border: 1px solid #9eb2b8 !important;
  background: #eef4f4 !important;
  color: #0f2430 !important;
  box-shadow: inset 0 1px 2px rgba(15, 36, 48, 0.06) !important;
}

.location-search input,
.location-control-card .location-search input {
  color: #0a1a24 !important;
  background: transparent !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  -webkit-text-fill-color: #0a1a24 !important;
}

.location-search input::placeholder,
.location-control-card .location-search input::placeholder {
  color: #5d7280 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #5d7280 !important;
}

.footer-logo,
.footer-top-band .footer-logo {
  width: min(220px, 68vw) !important;
  height: auto !important;
  max-height: 96px !important;
  object-fit: contain !important;
  object-position: left center !important;
}

/* One branded type system across every section heading */
.section-kicker,
.eyebrow,
.location-panel-kicker,
.path-kicker,
.full-body-copy .section-kicker,
.leadership-panel .section-kicker,
.doctors-header .section-kicker,
.locations-header .section-kicker,
.reviews-heading .section-kicker,
.insurance-heading .section-kicker,
.final-cta-copy .section-kicker,
.safety-heading .section-kicker {
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #0a6f72 !important;
  -webkit-text-fill-color: #0a6f72 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.25 !important;
  text-shadow: none !important;
  text-transform: uppercase !important;
}

.section-heading h2,
.comparison-heading h2,
.doctors-header h2,
.intro-copy h2,
.why-band h2,
.workflow-band h2,
.safety-band h2,
.locations-header h2,
.locations-band h2,
.faq-band h2,
.final-cta-copy h2,
.insurance-heading h2,
.reviews-heading h2,
.full-body-copy h2,
.transport-copy h2 {
  color: #16202c !important;
  font-size: clamp(28px, 3vw, 40px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
  text-shadow: none !important;
  text-transform: none !important;
  -webkit-text-fill-color: #16202c !important;
  background: none !important;
}

.section-heading p,
.comparison-heading p,
.doctors-header > p,
.intro-copy p,
.why-band .section-heading p,
.workflow-band .section-heading p,
.locations-header p,
.locations-band .locations-header p,
.faq-band .section-heading p,
.final-cta-copy p,
.insurance-heading p,
.full-body-copy > p:not(.section-kicker):not(.full-body-price):not(.full-body-price-label):not(.full-body-price-note):not(.full-body-location),
.safety-heading p,
.transport-copy p {
  color: #435161 !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  line-height: 1.7 !important;
  text-shadow: none !important;
  text-transform: none !important;
  -webkit-text-fill-color: #435161 !important;
  background: none !important;
}

.hero h1 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.05 !important;
  text-transform: none !important;
}

.location-search-hint {
  margin: 8px 0 0;
  color: #4a6570;
  font-size: 13px;
  line-height: 1.4;
}

.location-find-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

.location-find-actions .btn,
.location-find-actions .location-find-btn {
  width: 100%;
  margin-bottom: 0;
  justify-content: center;
}

.location-geo-btn {
  border-color: rgba(10, 111, 114, 0.28) !important;
  color: #0a6f72 !important;
}

.location-nearest {
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(10, 111, 114, 0.22);
  border-radius: 12px;
  background: rgba(10, 111, 114, 0.08);
  color: #0a6f72;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.location-card {
  position: relative;
}

.location-card[data-location-distance]::after {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10, 111, 114, 0.92);
  color: #ffffff;
  content: var(--location-distance);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(7, 45, 48, 0.18);
}

.location-card.is-closest {
  border-color: #0a6f72 !important;
  box-shadow: 0 0 0 2px rgba(10, 111, 114, 0.25), 0 18px 40px rgba(10, 111, 114, 0.16) !important;
}

.location-card.is-closest[data-location-distance]::after {
  background: #07585b;
}

.reviews-panel .reviews-cta,
a.reviews-cta {
  display: inline-flex !important;
  gap: 10px !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  margin: 18px auto 0 !important;
  padding: 12px 20px !important;
  border: 1px solid #dadce0 !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #3c4043 !important;
  font-weight: 700 !important;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.18), 0 1px 3px 1px rgba(60, 64, 67, 0.1) !important;
}

.reviews-panel {
  display: flex;
  flex-direction: column;
}

.reviews-panel .reviews-cta i,
a.reviews-cta i {
  background: linear-gradient(90deg, #4285f4 0 25%, #ea4335 25% 50%, #fbbc05 50% 75%, #34a853 75% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  font-size: 18px !important;
}

.reviews-panel .reviews-cta:hover,
a.reviews-cta:hover {
  border-color: #c6c9ce !important;
  background: #f8f9fa !important;
  color: #202124 !important;
  box-shadow: 0 2px 6px rgba(60, 64, 67, 0.2) !important;
}
