:root {
  --ink: #14213d;
  --muted: #5a6677;
  --line: #d9e2ee;
  --paper: #ffffff;
  --soft: #f3f7fb;
  --blue: #1269d3;
  --blue-dark: #0b3d91;
  --green: #11945a;
  --yellow: #ffbf2f;
  --red: #d93636;
  --shadow: 0 20px 60px rgba(20, 33, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  font-weight: 800;
}

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

.brand small,
.site-footer span,
.hero-panel small {
  color: var(--muted);
}

nav {
  display: flex;
  gap: 20px;
  font-weight: 700;
  color: #27364c;
}

nav a {
  padding: 10px 0;
}

.phone-link,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.availability-top {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(17, 148, 90, 0.28);
  border-radius: 8px;
  background: #eefaf4;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.phone-link,
.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 24px rgba(17, 148, 90, 0.22);
}

.btn-secondary {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(28px, 4vw, 58px);
  padding: clamp(44px, 8vw, 96px) clamp(18px, 5vw, 72px) 52px;
  background:
    linear-gradient(120deg, rgba(18, 105, 211, 0.1), rgba(17, 148, 90, 0.1)),
    radial-gradient(circle at 85% 20%, rgba(255, 191, 47, 0.2), transparent 28%),
    var(--soft);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.08;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
}

.lead {
  max-width: 780px;
  margin: 22px 0 0;
  color: #34455d;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-strip span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 13px;
  background: white;
  border: 1px solid var(--line);
  font-weight: 800;
  color: #25344a;
}

.hero-panel {
  align-self: start;
  display: grid;
  gap: 16px;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 105, 211, 0.12), rgba(255, 255, 255, 0.24)),
    repeating-linear-gradient(90deg, rgba(20, 33, 61, 0.05) 0 1px, transparent 1px 48px),
    white;
  box-shadow: var(--shadow);
}

.hero-emoji-scene {
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
}

.scene-van {
  font-size: clamp(8rem, 17vw, 13rem);
  filter: drop-shadow(0 18px 24px rgba(12, 22, 40, 0.16));
}

.scene-worker,
.scene-tool {
  position: absolute;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 14px 34px rgba(12, 22, 40, 0.16);
  font-size: 3rem;
}

.scene-worker {
  right: 36px;
  top: 34%;
}

.scene-tool {
  left: 36px;
  top: 22%;
}

.van-branding {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 4px 12px;
  width: min(calc(100% - 48px), 420px);
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(12, 22, 40, 0.18);
}

.van-logo {
  width: 52px;
  height: 52px;
  display: grid;
  grid-row: span 3;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  font-weight: 900;
}

.van-branding strong {
  font-size: 1.08rem;
  line-height: 1.1;
}

.van-branding a {
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 900;
}

.van-branding small {
  color: var(--muted);
  font-weight: 800;
}

.status-card,
.quick-list,
.service-card,
.team-card,
.review-grid article,
.steps article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.status-card {
  padding: 22px;
}

.status-card {
  display: grid;
  gap: 4px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(17, 148, 90, 0.12);
}

.quick-list {
  margin: 0;
  padding: 18px 22px;
  color: #2d3c52;
  font-weight: 700;
  list-style: none;
}

.quick-list li + li {
  margin-top: 8px;
}

.section {
  padding: clamp(50px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.section.compact {
  padding-top: 28px;
  padding-bottom: 28px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.discount-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 191, 47, 0.55);
  border-radius: 8px;
  background: #fff8e7;
}

.discount-band strong {
  font-size: 1.2rem;
}

.discount-band span {
  color: #5f4a0d;
}

.urgency-section {
  background: #fbfcfe;
}

.urgency-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.urgency-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.urgency-grid span {
  display: block;
  margin-bottom: 14px;
  font-size: 2rem;
}

.urgency-grid p {
  color: var(--muted);
}

.cases-section {
  background: white;
}

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

.case-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}

.case-list span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #eaf7f1;
  color: var(--green);
  font-weight: 900;
}

.case-list p {
  margin: 0;
  color: var(--muted);
}

.case-list strong {
  color: var(--ink);
}

.insurance-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(17, 148, 90, 0.28);
  border-radius: 8px;
  background: #eefaf4;
}

.insurance-band strong {
  font-size: 1.2rem;
  white-space: nowrap;
}

.insurance-band span {
  color: #244936;
}

.service-grid,
.team-grid,
.review-grid,
.steps,
.logo-row {
  display: grid;
  gap: 18px;
}

.service-grid,
.team-grid,
.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 26px;
}

.service-card::after {
  content: attr(data-icon);
  position: absolute;
  right: 18px;
  bottom: -24px;
  color: rgba(18, 105, 211, 0.08);
  font-family: Consolas, Monaco, monospace;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
}

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #e9f2ff;
  color: var(--blue-dark);
  font-size: 1.5rem;
  font-weight: 900;
}

.service-card p,
.team-card p,
.review-grid p,
.steps p,
.final-cta p {
  color: var(--muted);
}

.faq-section {
  background: #fbfcfe;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.07);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.service-card strong {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 14px;
  color: var(--green);
  font-size: 1.14rem;
}

.service-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(18, 105, 211, 0.18);
  border-radius: 8px;
  background: #f4f9ff;
}

.service-note strong {
  color: var(--blue-dark);
  white-space: nowrap;
}

.service-note span {
  color: #34455d;
}

.planned-section {
  background: #f7fafc;
}

.planned-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.planned-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.planned-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-weight: 900;
}

.planned-grid p {
  color: var(--muted);
}

.planned-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(17, 148, 90, 0.28);
  border-radius: 8px;
  background: #eaf7f1;
}

.planned-callout div,
.planned-callout span {
  display: grid;
  gap: 4px;
}

.planned-callout strong {
  font-size: 1.18rem;
}

.planned-callout span {
  color: #244936;
}

.booking-section {
  padding-top: 36px;
  background: white;
}

.booking-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 5vw, 42px);
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

.booking-copy {
  max-width: 820px;
}

.booking-card .eyebrow,
.booking-card p,
.booking-card li {
  color: #dbe5f2;
}

.booking-card h2 {
  color: white;
}

.booking-lead {
  font-size: 1.18rem;
}

.booking-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-left: 22px;
  font-weight: 800;
}

.warning-box {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 191, 47, 0.45);
  border-radius: 8px;
  background: rgba(255, 191, 47, 0.12);
}

.warning-box strong {
  color: var(--yellow);
}

.warning-box span {
  color: #fff4d1;
}

.team-section {
  background: var(--soft);
}

.team-card {
  overflow: hidden;
}

.team-emoji {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(18, 105, 211, 0.14), rgba(17, 148, 90, 0.14)),
    #f8fbff;
  font-size: clamp(4rem, 9vw, 6rem);
}

.team-card div {
  padding: 22px;
}

.reviews {
  background: #fbfcfe;
}

.logo-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.review-logo {
  min-height: 86px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.review-logo span {
  width: 52px;
  height: 52px;
  display: grid;
  grid-row: span 2;
  place-items: center;
  border-radius: 8px;
  color: white;
  font-weight: 900;
}

.review-logo small {
  color: var(--muted);
  font-weight: 700;
}

.google-logo span {
  background: conic-gradient(from -45deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
}

.trust-logo span {
  background: var(--blue-dark);
}

.expert-logo span {
  background: var(--red);
}

.review-grid article {
  padding: 22px;
}

.stars {
  color: var(--yellow);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.emergency {
  background: var(--ink);
  color: white;
}

.emergency .eyebrow,
.emergency .section-heading p:not(.eyebrow),
.emergency .steps p {
  color: #cdd8e7;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: white;
  color: var(--blue-dark);
  font-weight: 900;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 72px);
  background: #eaf7f1;
}

.final-cta div {
  max-width: 760px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 72px) 86px;
  background: #0c1628;
  color: white;
}

.site-footer div,
.site-footer span {
  display: grid;
  gap: 5px;
}

.site-footer a {
  color: white;
  font-weight: 900;
}

.sticky-call {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 20;
  transform: translateX(-50%);
  display: none;
  width: min(calc(100% - 24px), 520px);
  min-height: 64px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 18px 38px rgba(12, 22, 40, 0.25);
}

.sticky-call span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.2;
}

.sticky-call strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(12, 22, 40, 0.58);
}

.exit-popup.is-visible {
  display: grid;
}

.exit-dialog {
  position: relative;
  width: min(100%, 520px);
  padding: clamp(24px, 5vw, 34px);
  border-radius: 8px;
  background: white;
  box-shadow: 0 30px 80px rgba(12, 22, 40, 0.32);
}

.exit-dialog h2 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.exit-dialog p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.exit-dialog .btn {
  width: 100%;
  margin-top: 8px;
}

.exit-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .availability-top {
    order: 2;
    flex: 1 1 260px;
  }

  .hero,
  .service-grid,
  .urgency-grid,
  .case-list,
  .planned-grid,
  .team-grid,
  .review-grid,
  .steps,
  .logo-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
  }

  .discount-band,
  .insurance-band,
  .service-note,
  .planned-callout,
  .booking-card,
  .warning-box,
  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
  }

  .brand {
    min-width: 0;
    width: 100%;
  }

  .phone-link {
    width: 100%;
  }

  .availability-top {
    display: none;
  }

  nav {
    display: none;
  }

  .hero {
    padding-top: 38px;
  }

  .trust-strip span {
    width: 100%;
    justify-content: center;
    border-radius: 8px;
    text-align: center;
  }

  .btn,
  .hero-actions,
  .final-cta .btn {
    width: 100%;
  }

  .service-card {
    min-height: 260px;
  }

  .hero-photo,
  .hero-emoji-scene {
    min-height: 340px;
  }

  .scene-worker,
  .scene-tool {
    width: 64px;
    height: 64px;
    font-size: 2.3rem;
  }

  .van-branding {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .van-branding a {
    font-size: 1.1rem;
  }

  .sticky-call {
    display: flex;
  }
}
