/* ==========================================================================
   ALIEF PRIMARY CARE — Design System & Styles
   ========================================================================== */

:root {
  /* Color palette */
  --color-navy: #0b2545;
  --color-navy-dark: #071b33;
  --color-blue: #1d6fd6;
  --color-blue-dark: #145bb3;
  --color-blue-light: #eaf2fd;
  --color-teal: #14b8a6;
  --color-teal-light: #e6fbf8;
  --color-white: #ffffff;
  --color-ink: #16233a;
  --color-body: #45526b;
  --color-muted: #6b7791;
  --color-border: #e4e9f2;
  --color-surface: #f7f9fc;
  --color-surface-alt: #f2f6fb;
  --color-success: #1d9a6c;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container-w: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 37, 69, 0.14);
  --topbar-h: 40px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-navy);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-navy);
  color: #fff;
  padding: 12px 20px;
  z-index: 10000;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.bg-surface { background: var(--color-surface); }
.bg-navy { background: var(--color-navy); color: #cfd9ea; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-gradient-hero {
  background: linear-gradient(135deg, #0b2545 0%, #123a6b 55%, #145a8f 100%);
  color: #dbe6f3;
}
.bg-gradient-hero h1, .bg-gradient-hero h2 { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--color-teal);
  display: inline-block;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.align-left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.section-head p { color: var(--color-muted); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--color-teal);
  color: #06352f;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: #0ea394; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn-navy {
  background: var(--color-navy);
  color: #fff;
}
.btn-navy:hover { background: var(--color-navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-border);
}
.btn-outline:hover { border-color: var(--color-blue); color: var(--color-blue); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ---------- Top Info Bar ---------- */
.top-bar {
  background: var(--color-navy-dark);
  color: #b9c6dc;
  font-size: 0.86rem;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--topbar-h);
}
.top-bar-info {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.top-bar-info a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b9c6dc;
  transition: color 0.15s ease;
}
.top-bar-info a:hover { color: #fff; }
.top-bar-info svg { width: 14px; height: 14px; }
.top-bar .btn { padding: 6px 16px; font-size: 0.8rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(11,37,69,0.08);
  border-color: var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--color-navy);
  flex-shrink: 0;
}
.logo .logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.logo .logo-mark svg { width: 24px; height: 24px; }
.logo-img { height: 50px; width: auto; display: block; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { display: flex; gap: 6px; }
.main-nav a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-ink);
  transition: color 0.15s ease, background-color 0.15s ease;
}
.main-nav a:hover { color: var(--color-blue); background: var(--color-blue-light); }
.main-nav a.active { color: var(--color-blue); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-navy);
  padding: 10px 14px;
}
.header-call svg { width: 20px; height: 20px; color: var(--color-blue); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 10px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: #fff;
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav ul a {
  display: block;
  padding: 16px 8px;
  border-bottom: 1px solid var(--color-border);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--color-ink);
}
.mobile-nav .mobile-actions { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 110px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(20,184,166,0.22), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(29,111,214,0.25), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-copy h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin-bottom: 22px;
}
.hero-lede {
  font-size: 1.2rem;
  color: #cfe0f2;
  font-weight: 500;
  margin-bottom: 14px;
}
.hero-copy > p:not(.hero-lede) {
  color: #b9cbe0;
  font-size: 1.05rem;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-trustbar {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-trustbar div { display: flex; align-items: center; gap: 10px; color: #cfe0f2; font-size: 0.9rem; font-weight: 600; }
.hero-trustbar svg { width: 20px; height: 20px; color: var(--color-teal); }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-floating-card {
  position: absolute;
  background: #fff;
  color: var(--color-ink);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  animation: float 5s ease-in-out infinite;
}
.hero-floating-card.card-a { top: 6%; left: -4%; }
.hero-floating-card .icon-badge { background: var(--color-teal-light); color: var(--color-teal); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Icon badges ---------- */
.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blue-light);
  color: var(--color-blue);
  flex-shrink: 0;
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge.teal { background: var(--color-teal-light); color: var(--color-teal); }
.icon-badge.navy { background: rgba(255,255,255,0.12); color: #fff; }
.icon-badge.lg { width: 64px; height: 64px; border-radius: 18px; }
.icon-badge.lg svg { width: 32px; height: 32px; }

/* ---------- Cards / Grids ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--color-muted); font-size: 0.97rem; margin-bottom: 16px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--color-blue);
  font-size: 0.92rem;
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.18s ease; }
.card-link:hover svg { transform: translateX(4px); }

.trust-card { text-align: left; }

/* ---------- About split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split > * { min-width: 0; }
.split-media {
  position: relative;
}
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.1;
}
.feature-list { display: grid; gap: 18px; margin: 28px 0 32px; }
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--color-ink);
}
.feature-list svg { width: 22px; height: 22px; color: var(--color-teal); flex-shrink: 0; margin-top: 2px; }
.split-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Providers ---------- */
.provider-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.provider-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.provider-photo {
  aspect-ratio: 4/4.2;
  overflow: hidden;
  background: var(--color-surface);
}
.photo-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.provider-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.provider-body h3 { margin-bottom: 4px; font-size: 1.18rem; }
.provider-credential { color: var(--color-blue); font-weight: 700; font-size: 0.86rem; margin-bottom: 14px; }
.provider-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-teal);
  background: var(--color-teal-light);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  width: fit-content;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
  position: relative;
}
.step { position: relative; padding-top: 8px; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--color-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.step h3 { font-size: 1.1rem; }
.step p { color: var(--color-muted); font-size: 0.95rem; }

/* ---------- Insurance ---------- */
.insurance-panel {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}
/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  background: linear-gradient(120deg, #0b2545, #145a8f 60%, #14b8a6 130%);
  color: #fff;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.cta-banner p { color: #d6e6f5; font-size: 1.08rem; max-width: 560px; margin-inline: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ---------- Location / Map ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
.location-card {
  background: var(--color-navy);
  color: #cfd9ea;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.location-card h3 { color: #fff; }
.location-detail { display: flex; gap: 14px; margin-bottom: 20px; }
.location-detail svg { width: 22px; height: 22px; color: var(--color-teal); flex-shrink: 0; margin-top: 2px; }
.location-detail a, .location-detail span { color: #cfd9ea; }
.location-detail a:hover { color: #fff; }
.location-actions { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 12px; }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 380px;
  min-width: 0;
  border: 1px solid var(--color-border);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-navy);
}
.faq-question .chevron { width: 20px; height: 20px; color: var(--color-blue); transition: transform 0.25s ease; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner { padding: 0 24px 22px; color: var(--color-muted); font-size: 0.96rem; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: 0.9rem; color: var(--color-navy); }
.form-field input, .form-field select, .form-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 4px var(--color-blue-light);
  outline: none;
}
.form-field.has-error input, .form-field.has-error textarea, .form-field.has-error select {
  border-color: #d0392b;
}
.field-error {
  color: #d0392b;
  font-size: 0.82rem;
  min-height: 1em;
}
.privacy-notice {
  background: #fdeeea;
  border: 1px solid #f2c3b8;
  color: #7a2a1a;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-size: 0.92rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.privacy-notice svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; color: #b8402c; }
.form-success {
  display: none;
  background: #e8f7f0;
  border: 1px solid #b9e7cf;
  color: #0e5c3a;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 24px;
  font-weight: 600;
}
.form-success.is-visible { display: flex; align-items: center; gap: 10px; }
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-navy-dark); color: #93a3bf; padding-top: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 0.92rem; max-width: 280px; }
.footer-col h4 {
  color: #fff;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.94rem; transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; margin-bottom: 12px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--color-teal); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.84rem;
  flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease;
  z-index: 900;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--color-blue-dark); }
.back-to-top svg { width: 22px; height: 22px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.page-hero p { max-width: 640px; margin: 0 auto; color: #c3d5e8; font-size: 1.08rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #9fb6cf;
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: #fff; }

/* ---------- Scroll animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; }
  .hero-floating-card { display: none; }
  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .main-nav, .header-call, .top-bar-info { display: none; }
  .top-bar .container { justify-content: center; gap: 20px; }
  .header-actions .btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-media { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .logo { font-size: 1.05rem; }
  .logo-img { height: 40px; }
  .btn-wrap { white-space: normal; text-align: center; line-height: 1.3; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 24px; }
  .insurance-panel { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .top-bar .container { flex-direction: column; height: auto; padding-block: 8px; gap: 6px; }
  .location-card, .insurance-panel { padding: 28px; }
}
