:root {
  --black: #0b0f14;
  --dark: #111827;
  --blue: #0b5cad;
  --blue-bright: #1e88e5;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --white: #ffffff;
  --border: #d1d5db;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  font-weight: 900;
  transition: top 160ms ease;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 6%;
  background: rgba(11, 15, 20, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.brand-title {
  display: block;
  line-height: 1.12;
  overflow-wrap: normal;
}
.brand img,
.footer img {
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
}
.brand img { width: 56px; height: 56px; }

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}
.nav a:hover,
.nav a:focus-visible { color: var(--blue-bright); }
.nav-cta {
  padding: 10px 16px;
  background: var(--blue);
  border-radius: 999px;
}
.contact-link {
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
}

.banner {
  background: #05080d;
  padding: 18px 6%;
  text-align: center;
}
.banner picture,
.banner img {
  display: block;
  width: min(1180px, 100%);
  margin: 0 auto;
}
.banner img {
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.banner.slim { padding-top: 22px; padding-bottom: 0; }
.banner.slim img { max-height: 360px; object-fit: cover; object-position: center; }

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 90px 6%;
  background: #05080d;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.58), rgba(0,0,0,0.32));
}
.hero-picture,
.hero-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-picture {
  z-index: 0;
}
.hero-picture img {
  object-fit: cover;
  object-position: center;
}
.quote-hero {
  min-height: 470px;
  padding-top: 76px;
  padding-bottom: 76px;
}
.quote-hero::after {
  background: linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.6), rgba(0,0,0,0.35));
}
.quote-hero .hero-content {
  max-width: 820px;
}
.quote-form-section {
  padding-top: 76px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  color: var(--white);
}
.eyebrow {
  color: var(--blue-bright);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}
.hero h1,
.section h1,
.section h2 {
  margin: 0 0 18px;
  line-height: 1.05;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); }
.hero p { font-size: 1.2rem; max-width: 700px; }
.hero-actions,
.form-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-actions.centered { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  font: inherit;
}
.btn.primary { background: var(--blue); color: var(--white); }
.btn.secondary { color: var(--white); border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn.outline { color: var(--blue); border-color: var(--blue); background: var(--white); }
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.contact-status {
  min-height: 1.5em;
  margin-top: 12px;
  font-weight: 800;
  color: #cfe8ff;
}
.quote-form .contact-status,
.thank-you .contact-status { color: var(--blue); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  text-align: center;
}
.trust-strip div {
  padding: 18px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.section { padding: 90px 6%; }
.section.compact { padding-top: 60px; padding-bottom: 60px; }
.section-heading { max-width: 850px; margin-bottom: 42px; }
.section-heading h2,
.section h1 { font-size: clamp(2rem, 4vw, 3.5rem); }

.card-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 22px;
}
.service-card,
.price-card,
.info-box,
.quote-form,
.thank-you,
.summary-list {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.service-card h3,
.price-card h3 { margin-top: 0; font-size: 1.35rem; }
.service-card p,
.price-card p { margin-bottom: 0; }
.dark { background: var(--black); color: var(--white); }
.dark .price-card {
  background: #151c26;
  color: var(--white);
  border-color: rgba(255,255,255,0.12);
}
.price { font-size: 2rem; font-weight: 900; color: var(--blue-bright); }
.featured { outline: 3px solid var(--blue-bright); }
.pricing-note { max-width: 850px; margin-top: 28px; color: #d1d5db; }

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
}
.info-box a { color: var(--blue); font-weight: 800; }
.faq-list { max-width: 900px; }
details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 14px;
  background: var(--white);
}
summary { cursor: pointer; font-weight: 900; }
summary::marker { color: var(--blue); }

.ai-summary { background: var(--light-gray); }
.ai-summary p { max-width: 950px; }
.summary-list {
  max-width: 950px;
}
.summary-list p {
  margin: 0 0 12px;
}
.summary-list p:last-child {
  margin-bottom: 0;
}

.cta-section {
  padding: 80px 6%;
  background: linear-gradient(135deg, var(--blue), #063b73);
  color: var(--white);
  text-align: center;
}
.cta-section h2 { font-size: clamp(2rem, 4vw, 3.7rem); margin: 0 0 10px; }
.footer {
  padding: 38px 6%;
  text-align: center;
  background: var(--black);
  color: var(--white);
}
.footer img { width: 78px; height: 78px; }
.footer a { color: var(--white); font-weight: 800; }
.footer-contact {
  display: grid;
  gap: 10px;
  max-width: 1080px;
  margin: 16px auto;
}
.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
}
.footer-contact .contact-label {
  color: rgba(255,255,255,0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-contact a {
  white-space: nowrap;
}
.phone-list {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}
.phone-list a {
  width: fit-content;
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.phone-list span {
  color: var(--dark);
  font-weight: 900;
}
.footer-seo {
  max-width: 1080px;
  margin: 30px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.54);
  font-size: 0.76rem;
  line-height: 1.55;
}
.footer-seo p {
  margin: 0;
}
.footer-seo strong {
  color: rgba(255,255,255,0.7);
}

.quote-page { background: var(--light-gray); }
.quote-form-section .section-heading,
.quote-form {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.quote-form {
  scroll-margin-top: 110px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label { display: block; font-weight: 900; margin-bottom: 18px; }
input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  background: var(--white);
}
textarea { resize: vertical; }
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: var(--blue);
}
.field-note {
  color: var(--gray);
  font-weight: 700;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
}
.consent input {
  width: auto;
  margin-top: 5px;
}
.hidden { display: none; }
.thank-you { max-width: 900px; margin: 0 auto; }

@media (max-width: 1180px) {
  .nav { gap: 12px; }
  .nav a { font-size: 0.84rem; }
}

@media (max-width: 1020px) {
  .nav { gap: 10px; }
  .nav a { font-size: 0.8rem; }
}

@media (max-width: 1120px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 22px 6%;
    background: var(--black);
  }
  .nav.open { display: flex; }
  .trust-strip,
  .card-grid,
  .pricing-grid,
  .split,
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
  .quote-hero { min-height: 430px; padding-top: 56px; padding-bottom: 56px; }
  .banner { padding: 12px 4%; }
  .banner img { border-radius: 14px; }
  .section { padding: 64px 6%; }
}

@media (max-width: 560px) {
  .site-header { padding: 10px 5%; }
  .brand { gap: 10px; }
  .brand-title {
    font-size: clamp(0.72rem, 3.6vw, 0.92rem);
    letter-spacing: 0.02em;
    max-width: 15rem;
  }
  .brand img { width: 48px; height: 48px; }
  .hero { padding: 64px 6%; }
  .quote-hero { min-height: 390px; }
  .hero h1 { font-size: clamp(2.15rem, 11vw, 3.8rem); }
  .hero-actions,
  .form-actions { gap: 10px; }
  .footer-contact-row {
    flex-direction: column;
    gap: 6px;
  }
  .footer-contact a {
    white-space: normal;
  }
  .btn { width: 100%; }
  .form-actions .btn { width: 100%; }
}

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

/* Mobile hero/banner correction
   Desktop keeps the full-bleed background treatment. Phones use a separate
   art-directed banner crop so the van and logo remain visible without forcing
   the full desktop image into a tiny strip. */
@media (max-width: 700px) {
  .hero,
  .quote-hero {
    display: block;
    min-height: 0;
    padding: 0;
    background: #05080d;
  }

  .hero::after,
  .quote-hero::after {
    display: none;
  }

  .hero-picture {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: clamp(230px, 64vw, 390px);
    aspect-ratio: 900 / 640;
    overflow: hidden;
    background: #05080d;
  }

  .hero-picture img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero-content,
  .quote-hero .hero-content {
    max-width: none;
    padding: 34px 6% 42px;
    color: var(--white);
    background:
      linear-gradient(180deg, rgba(5,8,13,0.96), rgba(5,8,13,1));
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .hero p {
    font-size: 1.05rem;
  }
}

@media (max-width: 420px) {
  .hero-content,
  .quote-hero .hero-content {
    padding: 30px 5% 38px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9.6vw, 2.75rem);
  }
}

.btn:disabled,
button.btn:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

@media (max-width: 380px) {
  .brand-title {
    max-width: 10.75rem;
  }
}


.featured-service {
  border-color: var(--blue-bright);
  box-shadow: 0 12px 30px rgba(11, 92, 173, 0.14);
}
.featured-service h3::after {
  content: "Featured";
  display: inline-block;
  margin-left: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(30, 136, 229, 0.12);
  color: var(--blue);
  font-size: 0.68rem;
  text-transform: uppercase;
  vertical-align: middle;
}
.medical-highlight {
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
}
.notice-box {
  border-color: rgba(30, 136, 229, 0.35);
}
.notice-box h3 {
  margin-top: 0;
  color: var(--blue);
}
.notice-box p:last-child {
  margin-bottom: 0;
}
.compact .card-grid {
  margin-top: 18px;
}
.nav a[aria-current="page"] {
  color: var(--blue-bright);
}
