:root {
  --navy: #0a1c37;
  --navy-dark: #051024;
  --navy-light: #102449;
  --red: #d7263d;
  --red-dark: #be1f33;
  --gray-100: #f5f7fb;
  --gray-200: #e4e8f0;
  --gray-300: #cdd3df;
  --text: #1d2733;
  --muted: #6c7687;
  --white: #ffffff;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
a {
  color: var(--red);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}
.btn,
.btn--ghost,
.btn--pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover,
.btn--ghost:hover,
.btn--pill:hover {
  transform: translateY(-1px);
}
.btn {
  background: linear-gradient(120deg, var(--red), var(--red-dark));
  color: var(--white);
  padding: 0.75rem 1.75rem;
  box-shadow: 0 12px 25px rgba(215, 38, 61, 0.25);
}
.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 0.75rem 1.5rem;
}
.btn--pill {
  background: var(--white);
  color: var(--red);
  padding: 0.35rem 1rem;
}
.emergency-bar {
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}
.emergency-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
}
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 10px 25px rgba(5,16,36,0.4);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}
.logo {
  color: var(--white);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.primary-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.75rem;
}
.primary-nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.header-cta {
  display: flex;
  align-items: center;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.5);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
}
.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb li::after {
  content: '/';
  color: rgba(255,255,255,0.4);
}
.breadcrumb li:last-child::after {
  content: '';
}
.hero {
  position: relative;
  color: var(--white);
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(140deg, rgba(5,16,36,0.95), rgba(13,30,62,0.9)), url('/assets/images/hero-texture.jpg');
  background-size: cover;
  background-position: center;
}
.hero.no-image {
  background: linear-gradient(140deg, #0a1c37, #061029);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}
.hero p {
  max-width: 720px;
  color: rgba(255,255,255,0.9);
}
.hero .cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.trust-bar {
  background: var(--gray-100);
  padding: 1.5rem 0;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.section {
  padding: 3rem 0;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.section p.lead {
  color: var(--muted);
  max-width: 700px;
}
.grid {
  display: grid;
  gap: 1.5rem;
}
.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  border-radius: 20px;
  background: var(--white);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 18px 40px rgba(10,28,55,0.08);
}
.card h3 {
  margin-top: 0;
}
.steps {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.layout-grid {
  display: grid;
  grid-template-columns: minmax(0,3fr) minmax(260px,1fr);
  gap: 2rem;
}
.city-copy,
.service-copy {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 25px 55px rgba(5,16,36,0.08);
}
.sidebar-panel {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
}
.sidebar-panel + .sidebar-panel {
  margin-top: 1.25rem;
}
.sidebar-panel h3 {
  margin-top: 0;
}
.faq {
  margin-top: 1.5rem;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item button {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}
.faq-item button span {
  font-size: 1.5rem;
  color: var(--red);
}
.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--muted);
}
.faq-item.open .answer {
  max-height: 400px;
  padding-bottom: 1rem;
}
.faq-item.open button span {
  transform: rotate(45deg);
}
.locations-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.locations-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}
.insurance-callout {
  background: var(--navy);
  color: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  display: grid;
  gap: 1rem;
}
.final-cta {
  background: var(--navy-dark);
  color: var(--white);
  text-align: center;
  padding: 3rem 0;
}
.final-cta--global {
  background: linear-gradient(130deg, #07142b, #0b1f3a);
  margin-top: 4rem;
}
.final-cta h2 {
  margin-bottom: 0.5rem;
}
.final-cta p {
  margin-top: 0;
  color: rgba(255,255,255,0.8);
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.75rem;
}
.site-footer h4 {
  color: var(--white);
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li + li {
  margin-top: 0.35rem;
}
.footer-meta {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 2rem;
  padding-top: 1.25rem;
  text-align: center;
}
.section--alt {
  background: var(--gray-100);
}
.mobile-call {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  box-shadow: 0 18px 30px rgba(0,0,0,0.25);
  z-index: 60;
  display: none;
}
.mobile-call a {
  color: var(--white);
  font-weight: 600;
}
.card--list ul {
  padding-left: 1rem;
  margin: 0;
}
.locations-list,
.services-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.locations-list li,
.services-links li {
  padding: 0.35rem 0;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.hero-stat {
  background: rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 1rem 1.5rem;
  min-width: 160px;
}
.hero-stat strong {
  display: block;
  font-size: 1.3rem;
}
@media (max-width: 960px) {
  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--navy);
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .primary-nav.open {
    max-height: 320px;
  }
  .primary-nav ul {
    flex-direction: column;
    padding: 1rem 1.5rem 2rem;
    gap: 1rem;
  }
  .header-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .layout-grid {
    grid-template-columns: 1fr;
  }
  .mobile-call {
    display: block;
  }
}
@media (max-width: 640px) {
  .hero .cta-group {
    flex-direction: column;
  }
  .services-grid,
  .locations-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .city-copy,
  .service-copy {
    padding: 1.75rem;
  }
}
