/* Eco Infra — conversion-focused landing refinements */

:root {
  --green: #3DBB63;
  --green-hover: #34A356;
  --green-soft: #E8F9EE;
  --lime: #B7F26B;
  --bg-soft: #F4F6F8;
}

/* ── Hero showcase: city skyline + road + grounded truck ── */
.hero-showcase {
  --hero-road-h: clamp(88px, 14vh, 140px);
  position: relative;
  min-height: min(82vh, 680px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-city-photo {
  position: absolute;
  inset: 0;
  bottom: var(--hero-road-h);
  z-index: 0;
  background-image: url('/assets/hero-melbourne.png');
  background-size: cover;
  background-repeat: no-repeat;
  /* Eureka Tower sits ~25% from the left — anchor the skyline there */
  background-position: 22% 32%;
}
.hero-city-skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--hero-road-h);
  width: 100%;
  height: auto;
  max-height: 38%;
  min-height: 140px;
  object-fit: cover;
  object-position: bottom center;
  opacity: 1;
  transform: translateY(1px);
}
.hero-road {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--hero-road-h);
  z-index: 2;
  background: linear-gradient(180deg, #2a3544 0%, #1e2835 35%, #151d28 100%);
}
.hero-road-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(183, 242, 107, .35) 20%, rgba(183, 242, 107, .5) 50%, rgba(183, 242, 107, .35) 80%, transparent);
  opacity: .6;
}
.hero-road-markings {
  position: absolute;
  top: 52%;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 48px,
    rgba(255, 255, 255, .22) 48px,
    rgba(255, 255, 255, .22) 96px
  );
  opacity: .35;
}
.hero-scene-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 38, 77, .9) 0%, rgba(5, 38, 77, .55) 42%, rgba(5, 38, 77, .12) 72%, transparent 100%),
    linear-gradient(180deg, rgba(5, 38, 77, .25) 0%, transparent 30%, transparent 55%, rgba(10, 18, 30, .85) 85%, #151d28 100%);
}
.hero-showcase-inner {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 32px calc(var(--hero-road-h) + 48px);
}
.hero-showcase h1 {
  font-size: clamp(34px, 4.2vw, 56px);
  text-transform: none;
  letter-spacing: -0.025em;
  line-height: 1.06;
  max-width: 14em;
  color: var(--white);
}
.hero-showcase h1 .accent { color: var(--green); }
.hero-showcase .hero-lead {
  font-size: clamp(16px, 1.6vw, 18px);
  margin-top: 22px;
  max-width: 480px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .85);
}
.hero-showcase .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-showcase .hero-trust-line {
  margin-top: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}
.hero-showcase .hero-trust-line span { color: var(--lime); }
.eyebrow-hero {
  background: rgba(61, 187, 99, .2);
  color: var(--lime);
  border: 1px solid rgba(183, 242, 107, .25);
}

.hero-truck-on-road {
  position: absolute;
  z-index: 5;
  right: clamp(0%, 4vw, 6%);
  bottom: 0;
  width: min(58vw, 720px);
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.hero-truck-ground-shadow {
  display: none;
}
.hero-truck-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  transform: none;
  animation: none;
  filter: none;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 56px;
  z-index: 4;
  background: var(--bg-soft);
  clip-path: polygon(0 100%, 0 55%, 55% 20%, 100% 45%, 100% 100%);
  pointer-events: none;
}

/* Quote band */
.quote-band {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding: 48px 0 72px;
  background: var(--bg-soft);
}
.quote-band-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: stretch;
  background: var(--white);
  border-radius: 28px;
  padding: 36px 40px;
  box-shadow: 0 8px 32px rgba(5, 38, 77, .08);
  border: 1px solid var(--border);
}
.quote-band-layout > * {
  min-width: 0;
}
.quote-band-intro h2 {
  font-size: clamp(26px, 3vw, 34px);
  text-transform: none;
  margin-top: 10px;
  letter-spacing: -0.02em;
}
.quote-band-intro p {
  margin-top: 12px;
  color: var(--charcoal-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
}
.quote-band-perks {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.quote-band-perks li {
  font-size: 12px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  background: var(--green-soft);
  padding: 8px 14px;
  border-radius: 999px;
}
.quote-form-card {
  background: var(--bg-soft);
  border-radius: 20px;
  padding: 24px 26px 22px;
  border: 1px solid var(--border);
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.qf-form-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.qf-form-brand img {
  height: 48px;
  width: auto;
  max-width: min(220px, 100%);
  object-fit: contain;
  display: block;
}
.quote-form-grid {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quote-form-card .qf-step-panel {
  margin-top: 4px;
}
.quote-form-card .qf-step-panel[hidden] {
  display: none !important;
}
.quote-form-card .field.full {
  grid-column: 1 / -1;
}

/* 3-step progress (inline + modal) */
.qf-step-indicators {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 22px;
  position: relative;
  padding: 0 6px;
  gap: 4px;
}
.qf-step-indicators::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.qf-step-indicators::after {
  content: '';
  position: absolute;
  top: 17px;
  left: 10%;
  height: 2px;
  background: var(--green);
  z-index: 1;
  width: 0%;
  transition: width .35s cubic-bezier(.2, .8, .2, 1);
}
.qf-step-indicators[data-progress="1"]::after { width: 0%; }
.qf-step-indicators[data-progress="2"]::after { width: 40%; }
.qf-step-indicators[data-progress="3"]::after { width: 80%; }

.qf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  position: relative;
  z-index: 2;
}
.qf-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
  transition: all .22s ease;
}
.qf-step-circle svg { display: none; }
.qf-step-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.qf-step-active .qf-step-circle {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(61, 187, 99, .2);
}
.qf-step-active .qf-step-label { color: var(--navy); }
.qf-step-done .qf-step-circle {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.qf-step-done .qf-step-num { display: none; }
.qf-step-done .qf-step-circle svg { display: block; color: var(--white); }
.qf-step-done .qf-step-label { color: var(--navy); }

.qf-step-panel {
  animation: qf-step-in .28s cubic-bezier(.2, .8, .2, 1);
}
.qf-going-back .qf-step-panel {
  animation-name: qf-step-in-back;
}
@keyframes qf-step-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes qf-step-in-back {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: none; }
}

.qf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  align-items: center;
}
.qf-actions [hidden] {
  display: none !important;
}
/* Step 1: Next only | Step 2: Next + Back | Step 3: Submit + Back */
.qf-actions[data-step="1"] .qf-back,
.qf-actions[data-step="1"] .qf-submit {
  display: none !important;
}
.qf-actions[data-step="2"] .qf-submit {
  display: none !important;
}
.qf-actions[data-step="3"] .qf-next {
  display: none !important;
}
.qf-actions[data-step="1"] .qf-next,
.qf-actions[data-step="3"] .qf-submit {
  margin-left: auto;
}
.qf-actions[data-step="2"] .qf-next {
  margin-left: auto;
}
.qf-actions[data-step="2"] .qf-back,
.qf-actions[data-step="3"] .qf-back {
  margin-right: auto;
}
.quote-form-card .form-tiny {
  margin-top: 12px;
  margin-bottom: 0;
}
#modal-quote .qf-actions[data-step="1"] .qf-next,
#modal-quote .qf-actions[data-step="3"] .qf-submit {
  margin-left: 0;
}

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.trust-bar-item svg {
  width: 28px;
  height: 28px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8;
}
.trust-bar-item span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  line-height: 1.3;
}

/* Premium service cards */
.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card-v2 {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, outline .25s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}
.service-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61, 187, 99, .35);
}
.service-card-v2.is-expanded {
  outline: 2px solid var(--green);
  outline-offset: -2px;
  border-color: var(--green);
  box-shadow: 0 20px 48px rgba(61, 187, 99, .22);
  transform: translateY(-4px);
}
.service-card-v2.is-expanded .card-icon {
  transform: scale(1.06);
}
.service-card-v2 .card-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.service-card-v2 .card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.03) saturate(1.08) contrast(1.02);
  transition: transform .4s ease, filter .4s ease;
}
.service-card-v2:hover .card-photo img,
.service-card-v2.is-expanded .card-photo img {
  transform: scale(1.04);
  filter: brightness(1.05) saturate(1.12) contrast(1.03);
}
.service-card-v2 .card-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(61, 187, 99, .4);
}
.service-card-v2 .card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
}
.service-card-v2 .card-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-v2 h3 {
  font-size: 18px;
  text-transform: none;
  letter-spacing: -0.01em;
}
.service-card-v2 .card-desc {
  font-size: 14px;
  color: var(--charcoal-soft);
  margin-top: 8px;
  line-height: 1.55;
}
.service-card-v2 .card-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-hover);
  text-decoration: none;
  transition: color .2s ease, gap .2s ease;
}
.service-card-v2 .card-learn-more svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  transition: transform .2s ease;
}
.service-card-v2:hover .card-learn-more,
.service-card-v2.is-expanded .card-learn-more {
  color: var(--green);
}
.service-card-v2:hover .card-learn-more svg,
.service-card-v2.is-expanded .card-learn-more svg {
  transform: translateX(4px);
}

/* Expandable service detail panel */
.service-expand-panel {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition:
    max-height .55s cubic-bezier(.2, .7, .2, 1),
    opacity .35s ease,
    margin-top .55s cubic-bezier(.2, .7, .2, 1);
  position: relative;
  border: 1px solid var(--border);
}
.service-expand-panel.is-open {
  max-height: 1600px;
  opacity: 1;
  margin-top: 28px;
}
.service-expand-panel .sd-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(5, 38, 77, .12);
  transition: background .2s ease, color .2s ease;
}
.service-expand-panel .sd-close:hover {
  background: var(--green);
  color: var(--white);
}
.service-expand-panel .sd-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 0;
  align-items: stretch;
}
.service-expand-panel .sd-media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.service-expand-panel .sd-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.service-expand-panel .sd-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--green);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(61, 187, 99, .35);
}
.service-expand-panel .sd-body {
  padding: 36px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-expand-panel .sd-body .eyebrow {
  margin-bottom: 4px;
}
.service-expand-panel .sd-title {
  font-size: clamp(22px, 2.2vw, 30px);
  text-transform: none;
  letter-spacing: -0.02em;
  margin: 6px 0 12px;
}
.service-expand-panel .sd-lead {
  font-size: 15px;
  color: var(--charcoal-soft);
  line-height: 1.6;
  margin-bottom: 22px;
}
.service-expand-panel .sd-section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-expand-panel .sd-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.service-expand-panel .sd-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
}
.service-expand-panel .sd-checks svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}
.service-expand-panel .sd-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.service-expand-panel .sd-meta-item {
  background: var(--bg-soft);
  padding: 14px 16px;
}
.service-expand-panel .sd-meta-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.service-expand-panel .sd-meta-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.3;
}
.service-expand-panel .sd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 900px) {
  .service-expand-panel .sd-grid { grid-template-columns: 1fr; }
  .service-expand-panel .sd-media,
  .service-expand-panel .sd-media img { min-height: 220px; height: 220px; }
  .service-expand-panel .sd-body { padding: 28px 22px 32px; }
  .service-expand-panel .sd-checks { grid-template-columns: 1fr; gap: 10px; }
  .service-expand-panel .sd-meta { grid-template-columns: 1fr; }
  .service-expand-panel .sd-actions .btn { width: 100%; justify-content: center; }
}

/* Industry chips */
.industry-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}
.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.industry-chip svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

/* Why — 3 cards */
.why-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card-v2 {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green);
}
.why-card-v2 h3 {
  font-size: 22px;
  text-transform: none;
}
.why-card-v2 p {
  margin-top: 12px;
  color: var(--charcoal-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* Process — tighter copy */
.process-grid-v2 .process-step h3 {
  font-size: 17px;
  text-transform: none;
}
.process-grid-v2 .process-step p {
  font-size: 14px;
  color: var(--charcoal-soft);
}

/* Melbourne area — no map */
.area-section {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.area-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 40px,
    rgba(61, 187, 99, .03) 40px,
    rgba(61, 187, 99, .03) 41px
  );
  pointer-events: none;
}
.area-section .container { position: relative; z-index: 1; }
.area-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.area-pills .pill {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

.section-tight .section-head { margin-bottom: 40px; }
.section-tight { padding: 88px 0; }

.btn-lime {
  background: var(--lime);
  color: var(--navy);
}
.btn-lime:hover { background: #c8f47a; color: var(--navy); }

/* ── Desktop hero: white left panel + Melbourne photo right with fade ── */
@media (min-width: 981px) {
  .hero-wave {
    display: none;
  }
  .hero-truck-ground-shadow {
    display: none;
  }
  .quote-band {
    padding-top: 56px;
  }
  .quote-band-layout {
    box-shadow: 0 8px 32px rgba(5, 38, 77, .08);
  }
  .quote-band-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-showcase {
    background: #fff;
    color: var(--navy);
    min-height: min(78vh, 660px);
    overflow: hidden;
  }

  .hero-city-photo {
    left: 30%;
    right: 0;
    bottom: var(--hero-road-h);
    background-position: 16% 28%;
  }

  .hero-city-skyline {
    display: none;
  }

  .hero-scene-overlay {
    background: linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 36%,
      rgba(255, 255, 255, .98) 38%,
      rgba(255, 255, 255, .94) 40%,
      rgba(255, 255, 255, .86) 42%,
      rgba(255, 255, 255, .72) 44%,
      rgba(255, 255, 255, .52) 47%,
      rgba(255, 255, 255, .28) 50%,
      rgba(255, 255, 255, .1) 53%,
      transparent 56%
    );
  }

  .hero-road {
    left: 28%;
    right: 0;
    background: linear-gradient(180deg, #3a4654 0%, #243040 45%, #1a2433 100%);
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, .25) 6%,
      rgba(0, 0, 0, .65) 14%,
      #000 22%,
      #000 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, .25) 6%,
      rgba(0, 0, 0, .65) 14%,
      #000 22%,
      #000 100%
    );
  }

  .hero-showcase-inner {
    padding-top: 108px;
    padding-bottom: calc(var(--hero-road-h) + 36px);
  }

  .hero-showcase .hero-copy {
    max-width: 520px;
  }

  .hero-showcase h1 {
    color: #05264D;
  }

  .hero-showcase h1 .accent {
    color: var(--green);
  }

  .hero-showcase .hero-lead {
    color: var(--charcoal-soft);
  }

  .hero-showcase .hero-trust-line {
    color: var(--muted);
  }

  .hero-showcase .hero-trust-line span {
    color: var(--green);
  }

  .eyebrow-hero {
    background: var(--green-soft);
    color: var(--green-hover);
    border-color: rgba(61, 187, 99, .25);
  }

  .hero-showcase .btn-outline-light {
    color: var(--navy);
    border-color: rgba(5, 38, 77, .28);
    background: transparent;
  }

  .hero-showcase .btn-outline-light:hover {
    background: var(--green-soft);
    border-color: var(--green);
    color: var(--navy);
  }

  .hero-truck-on-road {
    right: clamp(0%, 2vw, 4%);
    width: min(64vw, 850px);
  }

}

@media (max-width: 1100px) {
  .services-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .hero-showcase {
    min-height: auto;
    --hero-road-h: clamp(64px, 10vh, 88px);
    --hero-truck-gap: min(48vw, 265px);
    background: #151d28;
  }
  .hero-city-skyline {
    display: none;
  }
  .hero-scene {
    overflow: hidden;
  }
  .hero-city-photo {
    top: -10%;
    left: -14%;
    right: -10%;
    bottom: calc(var(--hero-road-h) - 6%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 20% 24%;
  }
  .hero-road {
    display: block;
    z-index: 2;
  }
  .hero-scene-overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 38, 77, .78) 0%,
      rgba(5, 38, 77, .45) 36%,
      rgba(5, 38, 77, .2) 52%,
      rgba(21, 29, 40, .92) 76%,
      #151d28 100%
    );
  }
  .hero-wave {
    clip-path: none;
    height: 28px;
    bottom: 0;
    z-index: 4;
    background: linear-gradient(180deg, #151d28 0%, var(--bg-soft) 100%);
  }
  .hero-showcase-inner {
    text-align: center;
    padding-top: 80px;
    padding-bottom: calc(var(--hero-road-h) + var(--hero-truck-gap));
    z-index: 6;
  }
  .hero-showcase .hero-trust-line {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .hero-showcase h1 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-showcase .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-showcase .hero-actions {
    justify-content: center;
  }
  .hero-truck-on-road {
    left: 50%;
    right: auto;
    bottom: 0;
    transform: translateX(-50%);
    width: min(122vw, 640px);
    z-index: 5;
  }
  .quote-band {
    padding: 32px 0 64px;
    background: var(--bg-soft);
  }
  .quote-band .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .quote-band-layout {
    grid-template-columns: 1fr;
    padding: 24px 18px;
    gap: 28px;
    border-radius: 20px;
  }
  .quote-band-intro {
    text-align: center;
  }
  .quote-band-intro p,
  .quote-band-intro h2 {
    margin-left: auto;
    margin-right: auto;
  }
  .quote-band-perks {
    justify-content: center;
  }
  .quote-form-card {
    padding: 20px 16px 18px;
  }
  .quote-form-grid {
    grid-template-columns: 1fr;
  }
  .qf-step-indicators {
    padding: 0 2px;
    margin-bottom: 18px;
  }
  .qf-step-label {
    font-size: 9px;
    letter-spacing: 0.04em;
  }
  .qf-step-circle {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .qf-step-indicators::before,
  .qf-step-indicators::after {
    top: 15px;
    left: 12%;
    right: 12%;
  }
  .quote-form-card .qf-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .quote-form-card .qf-actions .btn:not([hidden]) {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: center;
  }
  .quote-form-card .qf-actions[data-step="2"] .qf-back,
  .quote-form-card .qf-actions[data-step="3"] .qf-back {
    order: 2;
  }
  .quote-form-card .qf-actions[data-step="2"] .qf-next,
  .quote-form-card .qf-actions[data-step="1"] .qf-next,
  .quote-form-card .qf-actions[data-step="3"] .qf-submit {
    order: 1;
  }
  .quote-form-card .field.full {
    width: 100%;
  }
  .quote-form-card,
  .quote-band-layout {
    overflow: hidden;
  }
}
@media (max-width: 640px) {
  .services-grid-v2 { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .section-tight { padding: 56px 0; }
  .quote-band {
    padding-bottom: 48px;
  }
  .quote-band-layout {
    padding: 22px 16px;
  }
  .hero-showcase {
    --hero-truck-gap: min(50vw, 255px);
  }
  .hero-showcase-inner {
    padding: 68px 20px calc(var(--hero-road-h) + var(--hero-truck-gap));
  }
  .hero-city-photo {
    top: -18%;
    left: -6%;
    right: -20%;
    bottom: calc(var(--hero-road-h) - 8%);
    background-position: left 28%;
  }
  .hero-truck-on-road {
    width: min(126vw, 600px);
  }
}
