:root {
  --red: #dc1821;
  --blue: #0a4f86;
  --blue-deep: #082f5f;
  --blue-light: #37c8d3;
  --ink: #172232;
  --muted: #657487;
  --paper: #ffffff;
  --soft: #f4f9fc;
  --soft-blue: #eaf8fb;
  --line: #d9e8f0;
  --shadow: 0 24px 80px rgba(8, 47, 95, 0.12);
  --radius: 28px;
  --radius-lg: 38px;
  --pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, figure { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 232, 240, 0.9);
  backdrop-filter: blur(20px);
}

.brand {
  display: block;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.nav-links a { transition: color 160ms ease; }
.nav-links a:hover { color: var(--blue); }

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--pill);
  padding: 12px 22px;
  border: 0;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.header-call,
.button-primary {
  color: white;
  background: var(--red);
  box-shadow: 0 14px 36px rgba(220, 24, 33, 0.22);
}

.header-call:hover,
.button-primary:hover {
  transform: translateY(-2px);
  background: #bf121a;
  box-shadow: 0 18px 44px rgba(220, 24, 33, 0.28);
}

.button-glass {
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(8, 47, 95, 0.09);
}

.button-glass:hover {
  transform: translateY(-2px);
  background: white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  min-height: 76vh;
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 72px) clamp(52px, 6vw, 82px);
  background:
    radial-gradient(circle at 84% 14%, rgba(55, 200, 211, 0.22), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f6fbfd 54%, #eaf8fb 100%);
  overflow: hidden;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1;
  font-weight: 950;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.03;
  font-weight: 950;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 950;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-subhead {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-note {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 850;
}

.logo-panel {
  position: relative;
  margin: 0;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.logo-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 0;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(55, 200, 211, 0.14), rgba(220, 24, 33, 0.08));
}

.logo-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.booking-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  max-width: 1160px;
  margin: -34px auto 0;
  padding: 16px;
  border: 1px solid rgba(217, 232, 240, 0.95);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 70px rgba(8, 47, 95, 0.11);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfdfe;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(55, 200, 211, 0.22);
  border-color: var(--blue-light);
  background: white;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(66px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section-soft {
  max-width: none;
  background: var(--soft);
}

.section-soft > * {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-grid,
.gallery-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.faq-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.service-card,
.gallery-card,
.faq-list details {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 44px rgba(8, 47, 95, 0.05);
}

.service-card {
  min-height: 172px;
  padding: 26px 24px;
  border-radius: var(--radius);
}

.service-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.gallery-card {
  margin: 0;
  padding: 12px;
  border-radius: var(--radius);
}

.gallery-placeholder {
  min-height: 300px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--blue-deep);
  font-size: 22px;
  font-weight: 950;
}

.gallery-placeholder.before { background: linear-gradient(135deg, #edf3f6, #dce8ee); }
.gallery-placeholder.after { background: linear-gradient(135deg, #e9fbff, #d5f7ec); }
.gallery-placeholder.detail { background: linear-gradient(135deg, #fff5f5, #e9fbff); }

.gallery-card figcaption {
  padding: 14px 8px 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.pricing-section {
  max-width: none;
  background:
    radial-gradient(circle at 90% 0%, rgba(55, 200, 211, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.pricing-section > .section-heading,
.pricing-section > .pricing-shell {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-shell {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(217, 232, 240, 0.95);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.pricing-toggle {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(640px, 100%);
  margin: 0 auto 24px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: #edf7fb;
}

.toggle-btn {
  min-height: 46px;
  border: 0;
  border-radius: var(--pill);
  color: var(--blue-deep);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.toggle-btn.active {
  color: white;
  background: var(--blue-deep);
  box-shadow: 0 12px 26px rgba(8, 47, 95, 0.18);
}

.pricing-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-notes article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
}

.pricing-notes strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-deep);
  font-size: 14px;
  line-height: 1.35;
}

.pricing-notes p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

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

.plan-view[hidden] { display: none; }

.plan-view-single {
  grid-template-columns: minmax(0, 0.68fr);
  justify-content: center;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: white;
  box-shadow: 0 18px 58px rgba(8, 47, 95, 0.08);
}

.featured-pricing {
  border-color: rgba(220, 24, 33, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
}

.popular-badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: var(--pill);
  color: white;
  background: var(--red);
  font-size: 12px;
  font-weight: 950;
}

.pricing-card-head {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.pricing-card h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.5vw, 32px);
}

.price {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
}

.price strong {
  display: block;
  margin-top: 5px;
  color: var(--blue-deep);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.perfect-for {
  margin-bottom: 20px;
  padding: 15px 16px;
  border-radius: 18px;
  background: var(--soft-blue);
}

.perfect-for span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.perfect-for p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 750;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: white;
  background: var(--blue-light);
  font-size: 12px;
  font-weight: 950;
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.medicaid-card {
  min-height: 0;
}

.pricing-disclosure {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 10px 34px rgba(8, 47, 95, 0.05);
}

.pricing-disclosure summary {
  cursor: pointer;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 950;
}

.pricing-disclosure div {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.pricing-disclosure p {
  margin: 0;
  font-size: 14px;
}

.pricing-disclosure ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.consultation-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 88% 10%, rgba(55, 200, 211, 0.36), transparent 28%),
    linear-gradient(135deg, var(--blue-deep), var(--blue));
  box-shadow: 0 18px 58px rgba(8, 47, 95, 0.17);
}

.consultation-card h3 {
  margin-bottom: 8px;
  color: white;
  font-size: clamp(24px, 3vw, 36px);
}

.consultation-card p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.service-area { overflow: hidden; }

.careers-section {
  padding-top: clamp(52px, 7vw, 78px);
  padding-bottom: clamp(52px, 7vw, 78px);
}

.careers-section .section-heading {
  margin-bottom: 0;
}

.map-visual {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(8, 47, 95, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(8, 47, 95, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff, #eefbff);
  background-size: 54px 54px, 54px 54px, auto;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.route {
  position: absolute;
  display: block;
  height: 7px;
  border-radius: var(--pill);
  transform-origin: left center;
}

.route-one {
  width: 66%;
  left: 10%;
  top: 48%;
  background: linear-gradient(90deg, var(--blue-light), var(--blue));
  transform: rotate(-9deg);
}

.route-two {
  width: 44%;
  left: 30%;
  top: 66%;
  background: linear-gradient(90deg, var(--red), var(--blue-light));
  transform: rotate(12deg);
}

.pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: var(--pill);
  color: white;
  background: var(--red);
  box-shadow: 0 16px 42px rgba(220, 24, 33, 0.2);
  font-size: 13px;
  font-weight: 950;
}

.pin-one { left: 16%; top: 30%; }
.pin-two { right: 18%; top: 38%; background: var(--blue); box-shadow: 0 16px 42px rgba(10, 79, 134, 0.18); }
.pin-three { left: 42%; bottom: 20%; background: var(--blue-deep); }

.faq-list details {
  padding: 22px 24px;
  border-radius: 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.4;
}

.faq-list p {
  margin: 14px 0 0;
  font-size: 15px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.payment-methods span,
.payment-methods li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: var(--pill);
  font-size: 13px;
  font-weight: 900;
}

.payment-methods span {
  color: var(--blue-deep);
}

.payment-methods ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.payment-methods li {
  padding: 8px 14px;
  color: var(--blue-deep);
  background: white;
  border: 1px solid var(--line);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, auto) minmax(220px, auto) auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 4vw, 56px);
  color: white;
  background: var(--blue-deep);
}

.footer-brand strong,
.footer-brand span,
.footer-contact a,
.footer-contact span {
  display: block;
}

.footer-brand strong {
  font-size: 16px;
  font-weight: 950;
}

.footer-brand span,
.footer-contact span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-contact a {
  color: white;
  font-size: 16px;
  font-weight: 900;
}

.footer-contact a + a {
  margin-top: 6px;
  font-size: 14px;
  word-break: break-word;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: flex-end;
  max-width: 320px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.footer-links a:hover {
  color: white;
}

.footer-credit {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 700;
}

@media (hover: hover) {
  .service-card,
  .gallery-card,
  .pricing-card,
  .faq-list details {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .service-card:hover,
  .gallery-card:hover,
  .pricing-card:hover,
  .faq-list details:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 60px rgba(8, 47, 95, 0.11);
  }
}

@media (max-width: 1100px) {
  .booking-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: clamp(18px, 4vw, 56px);
    margin-right: clamp(18px, 4vw, 56px);
  }

  .booking-bar .button {
    width: 100%;
  }

  .logo-panel {
    max-width: 560px;
    margin: 0 auto;
  }

  .service-grid,
  .pricing-notes,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card {
    min-height: auto;
  }
}

@media (max-width: 920px) {
  .hero,
  .consultation-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .consultation-card .button {
    justify-self: start;
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 82px;
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-call {
    display: none;
  }

  .gallery-grid,
  .pricing-notes,
  .plan-view,
  .faq-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .service-grid,
  .booking-bar {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .header-call,
  .consultation-card .button {
    width: 100%;
  }

  .pricing-shell {
    padding: 12px;
    border-radius: 26px;
  }

  .pricing-toggle {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
    border-radius: 22px;
  }

  .pricing-card {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .map-visual { min-height: 460px; }
  .pin-one { left: 50%; right: auto; transform: translateX(-50%); top: 20%; }
  .pin-two { right: auto; left: 50%; transform: translateX(-50%); top: 44%; }
  .pin-three { left: 50%; transform: translateX(-50%); bottom: 18%; }
}

/* ─── Service category cards ─── */

.service-card-cat {
  display: flex;
  flex-direction: column;
  min-height: 310px;
}

.service-eyebrow {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-list {
  flex: 1;
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
}

.service-card-cat .button {
  width: 100%;
}

/* ─── City grid (service area) ─── */

.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 22px;
}

.city-pill {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 22px;
  border-radius: var(--pill);
  background: white;
  border: 1px solid var(--line);
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 850;
  box-shadow: 0 4px 16px rgba(8, 47, 95, 0.06);
}

.city-pill--more {
  background: var(--soft-blue);
  border-color: rgba(55, 200, 211, 0.4);
  color: var(--blue);
}

.area-note {
  text-align: center;
  font-size: 14px;
  margin: 0;
}

/* ─── Sticky mobile CTA ─── */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -8px 30px rgba(8, 47, 95, 0.1);
}

.sticky-cta-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 52px;
  border-radius: var(--pill);
  border: 2px solid var(--blue-deep);
  color: var(--blue-deep);
  font-weight: 950;
  font-size: 15px;
  font-family: inherit;
  transition: background 160ms ease, color 160ms ease;
}

.sticky-cta-call:hover {
  background: var(--blue-deep);
  color: white;
}

.sticky-cta-book {
  flex: 1;
  min-height: 52px;
  font-size: 15px;
}

@media (max-width: 860px) {
  body {
    padding-bottom: 82px;
  }

  .sticky-cta {
    display: flex;
  }
}
