:root {
  --blue-900: #07386d;
  --blue-700: #0757b8;
  --blue-500: #2da8e6;
  --green-700: #068245;
  --yellow-400: #f4c936;
  --red-500: #e83f43;
  --ink: #132033;
  --muted: #5e6b7c;
  --line: #d9e2ef;
  --soft: #f4f8fc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(12, 46, 88, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--blue-900);
  padding: 10px 14px;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 239, 0.8);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 138px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--blue-900);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a,
.header-call,
.contact-methods a,
.site-footer a {
  text-decoration: none;
}

.site-nav a:hover,
.contact-methods a:hover,
.site-footer a:hover {
  color: var(--blue-700);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 6px;
  font-size: 0.93rem;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-900);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  padding: 150px 0 86px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/about.jpg") center 34% / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 33, 66, 0.88) 0%, rgba(5, 33, 66, 0.72) 42%, rgba(5, 33, 66, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow-400);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 20px;
  font-size: 5.2rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  color: var(--blue-900);
  font-size: 3.1rem;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  color: var(--blue-900);
  font-size: 1.24rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
}

.hero-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.98rem;
}

.button.primary {
  color: var(--white);
  background: var(--red-500);
}

.button.secondary {
  color: var(--blue-900);
  background: var(--yellow-400);
}

.button:hover,
.header-call:hover {
  filter: brightness(0.96);
}

.quick-info {
  background: var(--blue-900);
  color: var(--white);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-grid div {
  min-height: 116px;
  padding: 28px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-grid div:last-child {
  border-right: 0;
}

.quick-grid span {
  display: block;
  margin-bottom: 4px;
  color: var(--yellow-400);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-grid strong {
  display: block;
  font-size: 1.1rem;
}

.resource-banner {
  padding: 64px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.resource-inner {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 40px;
  align-items: center;
}

.resource-copy h2 {
  margin-bottom: 16px;
  font-size: 2.25rem;
}

.resource-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.resource-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.resource-link {
  display: grid;
  align-content: start;
  min-height: 150px;
  padding: 22px;
  color: var(--blue-900);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.resource-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 72px;
  margin-bottom: 16px;
  object-fit: contain;
  object-position: left center;
}

.clearinghouse-logo {
  height: 88px;
}

.senate-logo {
  height: 64px;
}

.resource-link:hover {
  border-color: var(--blue-500);
  box-shadow: 0 12px 28px rgba(12, 46, 88, 0.09);
}

.resource-link span {
  margin-bottom: 8px;
  color: var(--green-700);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-link strong {
  line-height: 1.25;
}

.compact-resource {
  min-height: 112px;
  background: var(--white);
}

.section {
  padding: 96px 0;
}

section[id] {
  scroll-margin-top: 90px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 58px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.9fr 1fr;
}

.section-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-panel {
  padding: 34px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--green-700);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(6, 130, 69, 0.13);
}

.services-section,
.faq-section {
  background: var(--soft);
}

.section-heading {
  max-width: 730px;
  margin-bottom: 36px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.location-card {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(12, 46, 88, 0.06);
}

.service-card p,
.location-card p,
.location-card span {
  color: var(--muted);
}

.card-mark {
  display: block;
  width: 42px;
  height: 8px;
  margin-bottom: 22px;
  border-radius: 4px;
}

.card-mark.blue {
  background: var(--blue-700);
}

.card-mark.green {
  background: var(--green-700);
}

.card-mark.yellow {
  background: var(--yellow-400);
}

.card-mark.red {
  background: var(--red-500);
}

.image-stack {
  display: grid;
  gap: 18px;
}

.image-stack > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.insurance-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.insurance-strip span {
  color: var(--blue-900);
  font-weight: 900;
}

.insurance-strip img {
  width: 154px;
  max-height: 44px;
  object-fit: contain;
}

.insurance-banner-section {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.insurance-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: end;
  gap: 34px;
}

.insurance-heading p:last-child {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.03rem;
}

.insurance-banner-card {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.insurance-banner-card img {
  display: block;
  width: 100%;
  height: auto;
}

.steps {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 8px;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 5px;
}

.step p {
  margin-bottom: 0;
}

.provider-spotlight {
  background: var(--blue-900);
  color: var(--white);
}

.provider-banner {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 46px;
  align-items: center;
}

.provider-spotlight h2 {
  color: var(--white);
}

.provider-spotlight .eyebrow {
  color: var(--yellow-400);
}

.provider-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.provider-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.provider-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.provider-card img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.provider-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background: rgba(7, 27, 51, 0.86);
}

.provider-card span {
  display: block;
  color: var(--yellow-400);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.provider-card strong {
  display: block;
  color: var(--white);
  font-size: 1.12rem;
}

.featured-provider {
  min-height: 350px;
}

.featured-provider img {
  min-height: 350px;
}

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

.location-card {
  min-height: 250px;
}

.location-card a {
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: none;
}

.muted-card {
  background: #f9fbfd;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

summary {
  padding: 20px 22px;
  color: var(--blue-900);
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-methods {
  margin-top: 24px;
  flex-direction: column;
  align-items: flex-start;
}

.contact-methods a {
  color: var(--blue-700);
  font-weight: 900;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.social-button,
.social-icon-only {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-decoration: none;
}

.social-button {
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  color: var(--blue-900);
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 900;
}

.social-button:hover,
.social-icon-only:hover {
  border-color: var(--blue-500);
  color: var(--blue-700);
}

.social-button svg,
.social-icon-only svg {
  width: 22px;
  height: 22px;
}

.social-button svg rect,
.social-button svg circle,
.social-icon-only svg rect,
.social-icon-only svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-button svg path,
.social-icon-only svg path {
  fill: currentColor;
}

.bh-assistant {
  margin-top: 28px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(180deg, var(--blue-700), var(--blue-900));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.bh-assistant-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 22px 16px;
}

.bh-avatar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--blue-900);
  background: var(--yellow-400);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  font-size: 1.25rem;
  font-weight: 900;
}

.bh-header-text small {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bh-header-text h3 {
  margin: 2px 0 0;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.05;
}

.bh-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
}

.bh-status-dot {
  width: 9px;
  height: 9px;
  background: #46e17b;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(70, 225, 123, 0.16);
}

.bh-content {
  padding: 0 22px 22px;
}

.bh-message-panel {
  margin-bottom: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.bh-bubble {
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  font-size: 0.91rem;
  line-height: 1.45;
}

.bh-bubble strong {
  color: var(--blue-700);
}

.bh-privacy {
  margin-top: 9px;
  color: #dcecff;
  font-size: 0.75rem;
  line-height: 1.35;
}

.bh-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 14px 0;
}

.bh-tab {
  min-height: 38px;
  padding: 0 13px;
  color: var(--blue-900);
  background: var(--white);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.bh-tab:hover,
.bh-tab.active {
  background: var(--yellow-400);
}

.bh-answer {
  display: none;
  margin: 10px 0 14px;
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.bh-answer.show {
  display: block;
}

.bh-answer h3 {
  margin: 0 0 8px;
  color: var(--blue-900);
  font-size: 1.12rem;
}

.bh-answer p {
  margin: 0 0 10px;
  color: #263b58;
  font-size: 0.88rem;
  line-height: 1.45;
}

.bh-answer ul {
  margin: 8px 0 0 18px;
  padding: 0;
  color: #263b58;
  font-size: 0.88rem;
  line-height: 1.45;
}

.bh-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 10px;
}

.bh-input {
  min-width: 0;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 6px;
  font: inherit;
}

.bh-ask {
  min-height: 46px;
  padding: 0 17px;
  color: var(--blue-900);
  background: var(--yellow-400);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.bh-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 13px;
}

.bh-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--white);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.bh-whatsapp {
  background: var(--green-700);
}

.bh-call {
  color: var(--blue-900);
  background: var(--yellow-400);
}

.bh-form {
  background: var(--red-500);
}

.bh-area {
  background: #1d74d8;
}

.bh-footer-note {
  margin-top: 12px;
  color: #d8eaff;
  font-size: 0.75rem;
  line-height: 1.35;
  text-align: center;
}

.bh-mini-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 9px;
}

.bh-mini-links a {
  color: var(--white);
  font-size: 0.75rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 30px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-900);
  font-weight: 900;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c9d7e6;
  border-radius: 6px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.sms-consent {
  grid-template-columns: 20px 1fr !important;
  gap: 12px !important;
  align-items: start;
  color: var(--muted) !important;
  font-size: 0.88rem;
  font-weight: 400 !important;
}

.sms-consent input {
  min-height: auto;
  margin-top: 4px;
}

.sms-consent a {
  color: var(--blue-700);
  font-weight: 800;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.footprints-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 78px;
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff 0%, #e8f4ff 58%, #ffffff 100%);
}

.footprints-section::after {
  content: "";
  position: absolute;
  left: -60px;
  right: -60px;
  bottom: -70px;
  height: 140px;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-900));
  border-radius: 50% 50% 0 0;
}

.footprints-wrap {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.footprints-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
}

.footprints-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 48, 116, 0.12);
}

.footprints-logo img {
  width: 220px;
  max-width: 100%;
}

.footprints-title small {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 16px;
  color: var(--blue-900);
  background: var(--yellow-400);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
}

.footprints-title h2 {
  max-width: 900px;
  margin: 0;
  color: var(--blue-900);
  font-size: 4rem;
  line-height: 1;
  text-transform: uppercase;
}

.footprints-title h2 span {
  color: var(--green-700);
}

.footprints-title p {
  margin: 14px 0 0;
  color: #24415f;
  font-size: 1.28rem;
  font-weight: 700;
}

.footprints-slider {
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 74, 173, 0.12);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 48, 116, 0.14);
}

.footprints-window {
  overflow: hidden;
  border-radius: 8px;
}

.footprints-track {
  display: flex;
  gap: 18px;
  transition: transform 0.7s ease;
  will-change: transform;
}

.footprints-card {
  position: relative;
  flex: 0 0 calc((100% - 54px) / 4);
  overflow: hidden;
  background: var(--white);
  border: 4px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(0, 48, 116, 0.14);
}

.footprints-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.footprints-card .label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(0, 48, 116, 0.92), rgba(0, 74, 173, 0.84));
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.footprints-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.footprints-dot {
  width: 10px;
  height: 10px;
  background: #bfd6f4;
  border-radius: 50%;
}

.footprints-dot.active {
  background: var(--blue-700);
}

.footprints-message {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
}

.footprints-message-box {
  padding: 18px 22px;
  background: var(--white);
  border-left: 8px solid var(--yellow-400);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 48, 116, 0.1);
}

.footprints-message-box p {
  margin: 0;
  color: #243c5c;
  font-size: 1.12rem;
  font-weight: 700;
}

.footprints-message-box strong {
  color: var(--blue-700);
}

.footprints-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  color: var(--blue-900);
  background: var(--yellow-400);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(0, 48, 116, 0.16);
  font-size: 2rem;
  font-weight: 900;
}

.footprints-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  color: var(--white);
  font-weight: 800;
}

.footprints-pill {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.site-footer {
  padding: 60px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  background: #071b33;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.65fr;
  gap: 46px;
}

.footer-logo {
  width: 162px;
  height: 74px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.45));
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-icon-only {
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer .social-icon-only {
  margin-bottom: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
}

.legal-page {
  padding-top: 128px;
}

.legal-hero {
  padding: 56px 0;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  color: var(--blue-900);
  font-size: 3.8rem;
}

.legal-content {
  padding: 58px 0 92px;
}

.legal-content article {
  max-width: 850px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.notice-box {
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.careers-page {
  padding-top: 78px;
}

.careers-hero {
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 56, 109, 0.92), rgba(7, 87, 184, 0.78)),
    url("assets/contact.jpg") center / cover;
}

.careers-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.careers-hero h1 {
  max-width: 780px;
  color: var(--white);
  font-size: 4.1rem;
}

.careers-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
}

.careers-hero .eyebrow {
  color: var(--yellow-400);
}

.careers-hero-panel {
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.careers-hero-panel h2 {
  margin-bottom: 18px;
  color: var(--blue-900);
  font-size: 1.55rem;
}

.careers-section {
  background: var(--soft);
}

.position-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.position-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 390px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(12, 46, 88, 0.06);
}

.position-card span {
  width: fit-content;
  padding: 6px 10px;
  color: var(--blue-900);
  background: rgba(244, 201, 54, 0.36);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.position-card h3 {
  color: var(--blue-900);
  font-size: 1.24rem;
}

.position-card p,
.position-card li {
  color: var(--muted);
}

.position-card ul {
  margin: 0;
  padding-left: 18px;
}

.position-card a {
  align-self: end;
  color: var(--blue-700);
  font-weight: 900;
  text-decoration: none;
}

.careers-apply-section {
  background: var(--white);
}

.career-form textarea::placeholder {
  color: #7a8899;
}

.preference-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 34px;
}

.preference-secondary {
  color: var(--white);
  background: var(--blue-700);
}

.preference-muted {
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
}

.consent-banner,
.consent-modal,
.consent-revisit {
  position: fixed;
  z-index: 80;
}

.consent-banner {
  left: 28px;
  bottom: 28px;
  width: min(440px, calc(100% - 56px));
  padding: 24px 26px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(7, 27, 51, 0.22);
}

.consent-banner h2,
.consent-modal h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
}

.consent-banner h2 {
  text-align: left;
  font-size: 1.18rem;
}

.consent-banner p,
.consent-modal p {
  color: #3f4a59;
  font-size: 0.86rem;
}

.consent-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 18px;
}

.consent-actions button,
.consent-accept {
  min-height: 44px;
  color: var(--white);
  background: #12b3b4;
  border: 1px solid #098d9b;
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.consent-actions button:nth-child(1),
.consent-actions button:nth-child(2) {
  color: var(--blue-700);
  background: #15b7b8;
  border-color: var(--blue-700);
}

.consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 81;
  background: rgba(7, 27, 51, 0.22);
}

.consent-modal {
  top: 50%;
  left: 50%;
  width: min(540px, calc(100% - 32px));
  padding: 22px 20px 24px;
  background: #eef3f7;
  border: 1px solid #d9e2ef;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(7, 27, 51, 0.24);
  transform: translate(-50%, -50%);
  z-index: 82;
}

.consent-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 30px;
  height: 30px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.consent-accept {
  width: 100%;
  margin: 14px 0 18px;
  font-size: 0.95rem;
}

.consent-modal-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 0.78rem;
}

.consent-modal-links a {
  color: var(--blue-700);
}

.consent-revisit {
  left: 18px;
  bottom: 18px;
  display: none;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: var(--blue-700);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(7, 27, 51, 0.18);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
}

.has-consent-choice .consent-revisit {
  display: inline-flex;
  align-items: center;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1020px) {
  .site-nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .split,
  .split.reverse,
  .resource-inner,
  .insurance-heading,
  .careers-hero-grid,
  .provider-banner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .provider-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-copy {
    position: static;
  }

  .insurance-heading p:last-child {
    margin-bottom: 0;
  }

  .card-grid,
  .location-grid,
  .position-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footprints-top,
  .footprints-message {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footprints-logo {
    max-width: 260px;
    margin: 0 auto;
  }

  .footprints-title h2 {
    font-size: 3.1rem;
  }

  .footprints-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .footprints-mark {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 122px;
    height: 48px;
  }

  .site-nav {
    top: 70px;
  }

  .hero {
    min-height: 82vh;
    padding: 126px 0 64px;
  }

  .hero-overlay {
    background: rgba(5, 33, 66, 0.76);
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .legal-hero h1 {
    font-size: 2.65rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .careers-page {
    padding-top: 70px;
  }

  .careers-hero {
    padding: 64px 0;
  }

  .careers-hero h1 {
    font-size: 2.7rem;
  }

  .careers-hero p {
    font-size: 1rem;
  }

  .quick-grid,
  .resource-links,
  .card-grid,
  .location-grid,
  .position-grid,
  .provider-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .provider-card,
  .provider-card img,
  .featured-provider,
  .featured-provider img {
    min-height: 280px;
  }

  .quick-grid div {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .section {
    padding: 68px 0;
  }

  .insurance-banner-card {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .insurance-banner-card img {
    width: 720px;
    max-width: none;
  }

  .bh-actions,
  .bh-input-row {
    grid-template-columns: 1fr;
  }

  .footprints-section {
    padding: 56px 0 70px;
  }

  .footprints-wrap {
    width: min(100% - 28px, 1280px);
  }

  .footprints-slider {
    padding: 14px;
  }

  .footprints-card {
    flex-basis: 100%;
  }

  .footprints-title h2 {
    font-size: 2.3rem;
  }

  .footprints-title p,
  .footprints-message-box p {
    font-size: 1rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .consent-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.64rem;
  }

  h2 {
    font-size: 1.94rem;
  }
}
