:root {
  --navy: #0d3766;
  --navy-2: #062743;
  --blue: #2468a5;
  --gold: #c69c3b;
  --green: #24745a;
  --ink: #122033;
  --muted: #5f6d7c;
  --line: #d8e0e8;
  --paper: #f7f9fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(7, 25, 44, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(13, 55, 102, 0.97);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(5, 19, 32, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.82rem;
}

.brand strong,
.brand span span {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand span span {
  margin-top: -2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 20px);
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.phone-link,
.primary-action,
.secondary-action,
.primary-button,
.ghost-button,
.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 760;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.phone-link {
  padding: 0 20px;
  background: var(--white);
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(4, 23, 41, 0.82), rgba(8, 39, 68, 0.67), rgba(8, 39, 68, 0.28)),
    url("/images/insurance-home-car-hero.jpg") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 25, 44, 0.08), rgba(7, 25, 44, 0.36));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 80px) 0;
}

.hero-copy {
  color: var(--white);
}

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

.hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.45rem, 6vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action {
  min-width: 160px;
  padding: 0 22px;
  background: var(--gold);
  color: #10243b;
  box-shadow: 0 12px 24px rgba(8, 22, 34, 0.28);
}

.secondary-action {
  min-width: 132px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: var(--white);
}

.secondary-action.dark {
  border-color: var(--navy);
  color: var(--navy);
}

.primary-action:hover,
.secondary-action:hover,
.phone-link:hover,
.primary-button:hover,
.ghost-button:hover,
.mobile-cta a:hover {
  transform: translateY(-1px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin: 34px 0 0;
}

.trust-strip div {
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(4, 22, 38, 0.44);
  backdrop-filter: blur(8px);
}

.trust-strip dt {
  color: var(--white);
  font-size: 1.32rem;
  font-weight: 850;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.quote-panel {
  width: 100%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
}

form {
  padding: clamp(22px, 4vw, 34px);
}

.form-heading {
  margin-bottom: 18px;
}

.form-heading h2,
.success-state h2,
.section-heading h2,
.split-layout h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.step-indicator {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.step-indicator li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 760;
}

.step-indicator li::before {
  content: attr(data-step-label);
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--muted);
  font-size: 0.78rem;
}

.step-indicator li.active {
  color: var(--navy);
}

.step-indicator li.active::before {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.form-error {
  display: none;
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1px solid #d76b58;
  border-radius: 8px;
  background: #fff4f1;
  color: #8f2d1c;
  font-weight: 700;
}

.form-error.visible {
  display: block;
}

.form-step {
  display: none;
  scroll-margin-top: 96px;
}

.form-step.active {
  display: block;
}

.form-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.25;
}

.step-note {
  margin: 5px 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.choice-card {
  position: relative;
  min-height: 54px;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.choice-card span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 760;
}

.choice-card input:checked + span {
  border-color: var(--green);
  background: #eef8f2;
  color: #174b3a;
  box-shadow: inset 0 0 0 1px var(--green);
}

.choice-card input:focus-visible + span,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(198, 156, 59, 0.45);
  outline-offset: 2px;
}

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

label span {
  display: block;
  margin-bottom: 6px;
  color: #24384f;
  font-size: 0.9rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #aebdca;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 11px 12px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}


.input-warning {
  border-color: #c2410c;
  background: #fff7ed;
}

.zip-validation-message {
  display: none;
  margin-top: 6px;
  color: #9a3412;
  font-size: 0.78rem;
  font-weight: 760;
}

.zip-validation-message.visible {
  display: block;
}

.wide-field {
  grid-column: 1 / -1;
}


.appointment-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fafc;
}

.appointment-fields.hidden {
  display: none;
}

.form-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.primary-button,
.ghost-button {
  min-width: 120px;
  border: 0;
  cursor: pointer;
}

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

.ghost-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
}

.hidden,
.ghost-button[hidden],
.primary-button[hidden] {
  display: none;
}

.consent-copy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}



.lead-save-modal {
  width: min(92vw, 560px);
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(5, 19, 32, 0.28);
}

.lead-save-modal::backdrop {
  background: rgba(6, 39, 67, 0.54);
}

.lead-save-card {
  position: relative;
  padding: clamp(24px, 4vw, 34px);
  background: var(--white);
}

.lead-save-card h2 {
  margin: 6px 0 12px;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.08rem);
  line-height: 1.08;
}

.lead-save-card p {
  color: var(--muted);
}

.lead-save-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.lead-save-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.lead-save-note {
  margin: 12px 0 0;
  font-size: 0.78rem;
}

.lead-save-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.lead-save-actions .primary-button,
.lead-save-actions .ghost-button {
  flex: 1 1 160px;
}

.lead-save-success {
  padding-top: 8px;
}

.lead-save-success h3 {
  color: var(--navy);
  font-size: 1.35rem;
}

.disclosure-copy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.disclosure-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.disclosure-link:hover {
  color: var(--gold);
}

.disclosure-modal {
  width: min(92vw, 620px);
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(5, 19, 32, 0.28);
}

.disclosure-modal::backdrop {
  background: rgba(6, 39, 67, 0.58);
}

.disclosure-card {
  position: relative;
  padding: clamp(24px, 4vw, 34px);
  background: var(--white);
}

.disclosure-card h2 {
  margin: 6px 0 14px;
  color: var(--navy);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.08;
}

.disclosure-card p {
  color: var(--muted);
}

.disclosure-card .primary-button {
  margin-top: 8px;
}

.disclosure-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.disclosure-close:hover {
  border-color: var(--navy);
}

.success-state {
  display: none;
  padding: clamp(24px, 4vw, 36px);
}

.success-state.active {
  display: block;
}

.success-state p {
  color: var(--muted);
}

.coverage-band,
.process-band,
.faq-band {
  padding: clamp(54px, 8vw, 92px) 0;
}

.coverage-band {
  background: var(--white);
}

.process-band {
  background: #eef3f6;
}

.section-shell {
  width: min(1100px, calc(100% - 36px));
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
}

.coverage-list,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.coverage-list article,
.faq-grid details,
.process-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.coverage-list article {
  padding: 24px;
}

.coverage-list h3,
.faq-grid summary,
.process-list strong {
  color: var(--navy);
}

.coverage-list h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.coverage-list p,
.split-layout p,
.faq-grid p,
.process-list span {
  color: var(--muted);
}

.coverage-list p {
  margin: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

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

.process-list li {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.faq-grid details {
  padding: 18px 20px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-grid p {
  margin: 12px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--navy-2);
  color: var(--white);
}

.site-footer span,
.footer-links a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer span {
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .nav-link {
    display: none;
  }

  .hero-inner,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 42px;
  }

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

@media (max-width: 720px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    min-height: 62px;
    padding: 10px 16px;
  }

  .brand-mark {
    display: none;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand span span,
  .phone-link {
    display: none;
  }

  .hero {
    background-position: center top;
  }

  .hero-inner {
    width: min(100% - 28px, 520px);
    gap: 22px;
    padding: 30px 0 36px;
  }

  .hero h1 {
    font-size: clamp(2.18rem, 11vw, 3rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: none;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 18px;
  }

  .trust-strip div {
    min-height: 72px;
    padding: 10px 9px;
  }

  .trust-strip dt {
    font-size: 0.98rem;
  }

  .trust-strip dd {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .quote-panel {
    border-radius: 8px;
  }

  form {
    padding: 20px;
  }

  .step-indicator {
    gap: 4px;
  }

  .step-indicator li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    font-size: 0.76rem;
  }

  .coverage-grid,
  .field-grid,
  .coverage-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .form-controls {
    position: sticky;
    bottom: 72px;
    z-index: 4;
    padding-top: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 28%);
  }

  .primary-button,
  .ghost-button {
    flex: 1;
  }

  .coverage-band,
  .process-band,
  .faq-band {
    padding: 44px 0;
  }

  .site-footer {
    display: block;
  }

  .footer-links {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(6, 39, 67, 0.96);
    box-shadow: 0 -8px 24px rgba(5, 19, 32, 0.22);
  }

  .mobile-cta a {
    min-height: 48px;
    background: var(--white);
    color: var(--navy);
  }

  .mobile-cta a:last-child {
    background: var(--gold);
    color: #10243b;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


.selected-quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.quote-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef3f6;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
}

.finish-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.finish-card {
  display: grid;
  gap: 5px;
  width: 100%;
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.finish-card strong {
  color: var(--navy);
  font-size: 1rem;
}

.finish-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.finish-card.highlighted {
  border-color: rgba(36, 116, 90, 0.45);
  background: #f1faf5;
}

.quote-details {
  margin-top: 18px;
}

.detail-heading {
  margin-bottom: 14px;
}

.detail-heading h4 {
  margin: 0;
  color: var(--navy);
  font-size: 1.28rem;
}

.detail-heading p:not(.eyebrow) {
  margin: 5px 0 0;
  color: var(--muted);
}

.detail-card-list {
  display: grid;
  gap: 14px;
}

.detail-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.detail-card h5 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}

.detail-card .field-grid {
  gap: 12px;
}

.full-width {
  width: 100%;
  margin-top: 16px;
}


.detail-card-header,
.vehicle-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.detail-card-header .eyebrow {
  margin-bottom: 4px;
}

.compact-button {
  min-width: auto;
  min-height: 38px;
  padding: 0 12px;
  white-space: nowrap;
}

.detail-note {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: 0.9rem;
}

.auto-vehicle-list {
  display: grid;
  gap: 14px;
}

.vehicle-card,
.coverage-subsection,
.driver-subsection,
.driver-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #cfd9e2;
  border-radius: 8px;
  background: var(--white);
}

.vehicle-card h6,
.coverage-subsection h6,
.driver-subsection h6,
.driver-card h6 {
  margin: 0;
  color: var(--navy);
  font-size: 0.98rem;
}

.coverage-subsection,
.driver-subsection {
  margin-top: 4px;
  background: #f5f9fc;
}

.driver-subsection-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

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

.driver-card {
  background: var(--white);
}

.driver-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.driver-actions .compact-button {
  min-width: 170px;
}

.detail-card .field-grid label,
.vehicle-card .field-grid label,
.coverage-subsection .field-grid label,
.driver-card .field-grid label {
  display: grid;
  align-content: start;
}

.detail-card .field-grid label > span,
.vehicle-card .field-grid label > span,
.coverage-subsection .field-grid label > span,
.driver-card .field-grid label > span {
  min-height: 2.7em;
  display: flex;
  align-items: flex-start;
}

.remove-vehicle-button,
.remove-driver-button {
  color: #8f2d1c;
}

@media (max-width: 720px) {
  .detail-card-header,
  .vehicle-card-header,
  .driver-subsection-header {
    display: grid;
  }

  .compact-button {
    width: 100%;
  }

  .vehicle-card,
  .coverage-subsection,
  .driver-subsection,
  .driver-card {
    padding: 12px;
  }

  .driver-actions {
    display: grid;
  }

  .driver-actions .compact-button {
    width: 100%;
  }

  .detail-card .field-grid label > span,
  .vehicle-card .field-grid label > span,
  .coverage-subsection .field-grid label > span,
  .driver-card .field-grid label > span {
    min-height: auto;
  }
}


/* Dedicated quote landing page */
.lead-page {
  background: #f5f8fb;
}

.lead-site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(5, 19, 32, 0.08);
}

.lead-site-header .brand-mark {
  border-color: rgba(13, 55, 102, 0.28);
  color: var(--gold);
  background: #fffaf0;
}

.lead-site-header .brand strong {
  color: var(--navy);
}

.lead-site-header .brand span span {
  color: var(--muted);
}

.lead-site-header .phone-link {
  background: var(--navy);
  color: var(--white);
}

.lead-hero {
  min-height: calc(100vh - 74px);
  background:
    linear-gradient(90deg, rgba(5, 22, 38, 0.86), rgba(8, 41, 68, 0.72), rgba(8, 41, 68, 0.34)),
    url("/images/insurance-home-car-hero.jpg") center / cover no-repeat;
}

.lead-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  width: min(1160px, calc(100% - 36px));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 66px) 0;
}

.lead-copy {
  color: var(--white);
}

.lead-copy h1 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1;
}

.lead-lede {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.lead-proof-list {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.lead-proof-list li {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 22, 38, 0.48);
}

.lead-proof-list strong {
  color: var(--white);
}

.lead-proof-list span {
  color: rgba(255, 255, 255, 0.78);
}

.lead-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 740;
}

.lead-contact-strip a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lead-aftercare {
  background: var(--white);
}

.compact-section-shell {
  padding-top: clamp(44px, 7vw, 76px);
  padding-bottom: clamp(44px, 7vw, 76px);
}

.lead-next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.lead-next-steps article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.lead-next-steps h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.05rem;
}

.lead-next-steps p {
  margin: 0;
  color: var(--muted);
}

.lead-footer {
  background: var(--navy-2);
  color: var(--white);
}

.lead-footer span,
.lead-footer a {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .lead-hero-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .lead-copy h1,
  .lead-lede,
  .lead-proof-list {
    max-width: none;
  }

  .lead-next-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .lead-site-header {
    position: static;
  }

  .lead-hero-shell {
    width: min(100% - 24px, 620px);
    padding: 24px 0 34px;
  }

  .lead-proof-list li {
    padding: 12px;
  }
}


/* Virginia service pages */
.service-page {
  background: #f5f8fb;
}

.service-header .nav-link.active,
.service-nav .nav-link.active {
  color: var(--white);
  font-weight: 850;
}

.service-hero {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(4, 23, 41, 0.84), rgba(8, 39, 68, 0.68), rgba(8, 39, 68, 0.34)),
    url("/images/insurance-home-car-hero.jpg") center / cover no-repeat;
}

.service-hero-inner {
  width: min(1100px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 10vw, 116px) 0;
  color: var(--white);
}

.service-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.3rem, 5.4vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.service-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 76px) 0;
}

.service-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-sidebar a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 780;
}

.service-sidebar a:hover {
  background: #eef3f6;
}

.service-content {
  display: grid;
  gap: 24px;
}

.service-section {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  line-height: 1.08;
}

.service-section p {
  color: var(--muted);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.service-card-grid article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.service-card-grid h3,
.benefit-list strong {
  color: var(--navy);
}

.service-card-grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.service-card-grid p {
  margin: 0;
}

.limit-table {
  display: grid;
  margin: 20px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.limit-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 180px);
}

.limit-table div:first-child {
  background: var(--navy);
  color: var(--white);
  font-weight: 850;
}

.limit-table span,
.limit-table strong {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.limit-table div:last-child span,
.limit-table div:last-child strong {
  border-bottom: 0;
}

.limit-table strong {
  color: var(--navy);
  background: #f5f9fc;
}

.limit-table div:first-child span {
  border-color: rgba(255, 255, 255, 0.16);
}

.fine-print {
  font-size: 0.94rem;
}

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

.benefit-list li {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.benefit-list span {
  color: var(--muted);
}

.why-band {
  background: #eef8f2;
  border-color: rgba(36, 116, 90, 0.22);
}

.why-band .primary-action {
  margin-top: 8px;
}

.service-faq-grid {
  grid-template-columns: 1fr;
}

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

.source-list a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.coverage-card-link {
  display: block;
}

.coverage-card-link article {
  height: 100%;
}

.coverage-card-link span,
.secondary-service-links a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-weight: 850;
}

.secondary-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 20px;
}

@media (max-width: 980px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow-x: auto;
  }

  .service-sidebar a {
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  .service-hero {
    min-height: auto;
  }

  .service-hero-inner,
  .service-layout {
    width: min(100% - 28px, 620px);
  }

  .service-hero-inner {
    padding: 42px 0;
  }

  .service-card-grid,
  .limit-table div {
    grid-template-columns: 1fr;
  }

  .limit-table strong {
    border-top: 1px solid var(--line);
  }

  .service-sidebar {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 640px) {
  .appointment-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lead-save-grid {
    grid-template-columns: 1fr;
  }
}
