/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1f3c;
  --navy-dark:  #091629;
  --navy-mid:   #162d52;
  --orange:     #e8751a;
  --orange-dk:  #c55f0f;
  --orange-lt:  #f89040;
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --text:       #1e2d45;
  --text-muted: #5a6a82;
  --border:     #dce3ed;
  --radius:     8px;
  --shadow:     0 4px 24px rgba(13,31,60,.10);
  --shadow-lg:  0 8px 40px rgba(13,31,60,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(232,117,26,.35);
}
.btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,117,26,.45);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  box-shadow: none;
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(232,117,26,.3);
}

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__logo-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-text span:first-child {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}

.nav__logo-text span:last-child {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-lt);
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav__links a {
  padding: 6px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  border-radius: 6px;
  transition: color .18s, background .18s;
}

.nav__links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav__links a.active { color: var(--white); background: rgba(255,255,255,.1); }

.nav__cta { margin-left: 14px; }
.nav__cta .btn { padding: 10px 20px; font-size: .88rem; }

/* ── Hamburger & Mobile Menu ─────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav__mobile-menu {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  z-index: 99;
}

.nav__mobile-menu.open { display: block; }

.nav__mobile-menu ul {
  list-style: none;
  padding: 10px 0 4px;
}

.nav__mobile-menu ul li a {
  display: block;
  padding: 14px 24px;
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  transition: color .15s, background .15s;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.nav__mobile-menu ul li:last-child a { border-bottom: none; }

.nav__mobile-menu ul li a:hover,
.nav__mobile-menu ul li a.active {
  color: var(--white);
  background: rgba(255,255,255,.07);
}

.nav__mobile-menu__cta {
  padding: 14px 24px 20px;
}

.nav__mobile-menu__cta .btn {
  width: 100%;
  justify-content: center;
  font-size: .95rem;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      rgba(9,22,41,.88) 0%,
      rgba(13,31,60,.72) 55%,
      rgba(13,31,60,.55) 100%
    ),
    url('../images/hero-garage.jpg') center / cover no-repeat;
}

/* Orange accent bar */
.hero__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(232,117,26,.08) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,117,26,.15);
  border: 1px solid rgba(232,117,26,.4);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--orange-lt);
  margin-bottom: 24px;
}

.hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}

.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}

.hero__title em {
  font-style: normal;
  color: var(--orange);
}

.hero__desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.72);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero__actions .btn { font-size: 1rem; padding: 15px 30px; }

/* ── Trust Bar ────────────────────────────────────────────── */
.trust {
  background: #eef0f5;
  padding: 72px 0;
}

.trust__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust__item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 36px 32px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trust__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(232,117,26,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.trust__icon svg { width: 26px; height: 26px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.trust__accent {
  width: 32px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 14px;
}

.trust__text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.trust__text span {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Services ─────────────────────────────────────────────── */
.services {
  padding: 80px 0;
  background: #f4f4f1;
}

.services__head {
  text-align: center;
  margin-bottom: 52px;
}

.services__head .section-sub { margin: 0 auto; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.service-card__thumb {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}

.service-card:hover .service-card__thumb img { transform: scale(1.04); }

.service-card__body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card__desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}

.service-card__link {
  font-size: .875rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  transition: color .15s, letter-spacing .15s;
  width: fit-content;
}

.service-card__link:hover { color: var(--orange-dk); letter-spacing: .01em; }

.services__view-all {
  text-align: center;
  margin-top: 44px;
}

.services__view-all-link {
  font-size: .95rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color .15s;
}

.services__view-all-link:hover { border-color: var(--orange); }

/* ── Pricing Estimator ───────────────────────────────────── */
.pricing {
  padding: 96px 0;
  background: #0d1b2a;
}
.pricing__head {
  text-align: center;
  margin-bottom: 48px;
}
.pricing__head .section-title { color: var(--white); }
.pricing__head .section-sub {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255,255,255,.65);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid var(--border);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card__truck {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin-bottom: 18px;
}
.pricing-card__tier {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.pricing-card__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.pricing-card__desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}
.pricing-card__price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 20px;
}
.pricing-card__price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}
.pricing__footer {
  text-align: center;
  margin-top: 32px;
}
.pricing__detail-link {
  font-size: .9rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color .15s;
}
.pricing__detail-link:hover { border-color: var(--orange); }

/* ── How It Works ─────────────────────────────────────────── */
.hiw {
  padding: 96px 0;
  background: #f4f4f1;
  position: relative;
  overflow: hidden;
}

.hiw__head {
  text-align: center;
  margin-bottom: 60px;
}

.hiw__head .section-title { color: var(--navy); }
.hiw__head .section-sub { color: var(--text-muted); margin: 0 auto; }

.hiw__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.hiw__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hiw__step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: rgba(232,117,26,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hiw__step-num svg {
  width: 26px;
  height: 26px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hiw__step-label {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -.5px;
}

.hiw__step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.hiw__step-desc {
  font-size: .92rem;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.6;
}

a.hiw__tel,
a.hiw__tel:link,
a.hiw__tel:visited,
a.hiw__tel:hover,
a.hiw__tel:active {
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration: none;
}

/* ── Contact / Quote Form ─────────────────────────────────── */
.contact {
  padding: 96px 0 80px;
  background: var(--off-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.contact__info .section-sub { margin-bottom: 36px; }

.contact__detail {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.contact__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact__detail-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 9px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__detail-text strong {
  display: block;
  font-size: .88rem;
  font-weight: 800;
  color: var(--navy);
}

.contact__detail-text span {
  font-size: .88rem;
  color: var(--text-muted);
}

/* Form card */
.contact__form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 40px 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contact__form-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact__form-sub {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
}

.form-group label .req { color: var(--orange); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0bad0; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,117,26,.12);
}

.form-group input.invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}

.field-error {
  display: none;
  font-size: .78rem;
  color: #dc2626;
  font-weight: 600;
  margin-top: 5px;
}
.field-error.visible { display: block; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a82' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

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

.upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 120px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: var(--off-white);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  margin-top: 6px;
}
.upload-zone:hover {
  border-color: var(--orange-lt);
  background: rgba(232,117,26,.03);
}
.upload-zone svg {
  width: 26px;
  height: 26px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}
.upload-zone span {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 600;
  pointer-events: none;
}

.form__submit {
  margin-top: 8px;
}

.form__submit .btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 15px;
}

.form__note {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #f4f4f1;
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer__brand-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -.01em;
}

.footer__brand-desc {
  font-size: .875rem;
  color: #555;
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #d4d4d0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: border-color .18s, background .18s, color .18s;
  flex-shrink: 0;
}

.footer__social:hover {
  border-color: var(--orange);
  background: rgba(232,117,26,.08);
  color: var(--orange);
}

.footer__social svg { pointer-events: none; }

.footer__col-heading {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__nav li {
  font-size: .875rem;
  color: #444;
  line-height: 1.4;
}

.footer__nav a {
  color: #444;
  text-decoration: none;
  transition: color .18s;
}

.footer__nav a:hover { color: #0d1b2a; }

.footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid #d4d4d0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__contact-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__contact-text {
  font-size: .875rem;
  color: #444;
  line-height: 1.45;
}

.footer__contact-text a {
  color: #444;
  transition: color .18s;
}

.footer__contact-text a:hover { color: #0d1b2a; }

.footer__bottom {
  background: #e8e8e4;
  border-top: 1px solid #d4d4d0;
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__bottom-copy {
  font-size: .8rem;
  color: #666;
}

.footer__bottom-links {
  font-size: .8rem;
  color: #666;
}

.footer__bottom-links a {
  color: #555;
  transition: color .18s;
}

.footer__bottom-links a:hover { color: #0d1b2a; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--navy-dark);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,117,26,.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner__heading {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.cta-banner__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
}
.cta-banner__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner__actions .btn {
  font-size: 1rem;
  padding: 14px 28px;
  width: 220px;
  justify-content: center;
}

/* ── Quote Modal ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(9,22,41,.72);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overscroll-behavior: none;
  touch-action: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white);
  border-radius: 20px;
  width: 580px;
  height: 680px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(9,22,41,.32);
}

.modal__progress-track {
  height: 5px;
  background: var(--border);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  flex-shrink: 0;
}
.modal__progress-fill { height: 100%; background: var(--orange); transition: width .35s ease; }

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 0;
  flex-shrink: 0;
}
.modal__step-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
}
.modal__close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--off-white);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: background .15s, color .15s;
  flex-shrink: 0;
}
.modal__close:hover { background: var(--border); color: var(--navy); }
.modal__close svg { pointer-events: none; }

.modal__content {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  min-height: 0;
}

.modal__body { padding: 0 28px 16px; }

.modal__step-heading {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
  padding: 20px 0 16px;
  margin-bottom: 0;
}

.modal__step-head-group {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
  padding: 20px 0 0;
}
.modal__step-head-group .modal__step-heading {
  position: static;
  padding: 0 0 6px;
}
.modal__step-head-group .modal__step-sub { margin: 0 0 16px; }

.modal__service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.modal__service-card {
  padding: 22px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.modal__service-card:hover { border-color: var(--orange-lt); background: rgba(232,117,26,.03); }
.modal__service-card.selected {
  border-color: var(--orange);
  background: rgba(232,117,26,.06);
  box-shadow: 0 0 0 3px rgba(232,117,26,.12);
}
.modal__service-card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(232,117,26,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.modal__service-card-icon svg {
  width: 20px; height: 20px;
  stroke: var(--orange); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.modal__service-card h3 { font-size: .98rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.modal__service-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }

.modal__options { display: flex; flex-direction: column; gap: 9px; }

.modal__option {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer; text-align: left; width: 100%;
  transition: border-color .15s, background .15s;
}
.modal__option:hover { border-color: var(--orange-lt); background: rgba(232,117,26,.03); }
.modal__option.selected { border-color: var(--orange); background: rgba(232,117,26,.06); }

.modal__option-title { display: block; font-size: .93rem; font-weight: 700; color: var(--navy); }
.modal__option-desc { display: block; font-size: .8rem; color: var(--text-muted); margin-top: 2px; }

.modal__option-check {
  width: 20px; height: 20px; min-width: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: border-color .15s, background .15s;
}
.modal__option.selected .modal__option-check {
  border-color: var(--orange);
  background: var(--orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}

.modal__form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal__form .form-group { margin-bottom: 14px; }
.modal__form textarea { min-height: 80px; }
.modal__optional { font-size: .78em; font-weight: 500; color: var(--text-muted); }

.modal__confirm { text-align: center; padding: 16px 0 12px; }
.modal__confirm-icon {
  width: 72px; height: 72px;
  background: rgba(22,163,74,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.modal__confirm-icon svg {
  width: 36px; height: 36px;
  stroke: #16a34a; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.modal__confirm h2 { font-size: 1.55rem; font-weight: 900; color: var(--navy); margin-bottom: 14px; }
.modal__confirm p { font-size: .93rem; color: var(--text-muted); line-height: 1.65; max-width: 380px; margin: 0 auto; }

.modal__step-sub {
  font-size: .88rem;
  color: var(--text-muted);
  margin: -8px 0 16px;
  line-height: 1.5;
}

.modal-review {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.modal-review__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.modal-review__row:last-child { border-bottom: none; }
.modal-review__label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 2px;
}
.modal-review__value {
  font-size: .88rem;
  color: var(--text);
  font-weight: 500;
  word-break: break-word;
}

.modal__footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 28px 28px; gap: 12px;
  flex-shrink: 0;
  border-top: 1px solid var(--border);
}
.modal__footer .btn { min-width: 110px; justify-content: center; }

.btn-ghost { background: var(--off-white); color: var(--text-muted); font-weight: 700; box-shadow: none; }
.btn-ghost:hover { background: var(--border); color: var(--navy); transform: none; box-shadow: none; }

#modal-continue[disabled] { opacity: .4; cursor: not-allowed; pointer-events: none; transform: none; box-shadow: none; }

.modal__submit-error {
  display: none;
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(220,38,38,.07);
  border: 1px solid rgba(220,38,38,.25);
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  color: #dc2626;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .modal-overlay { align-items: flex-start; padding: 0; }
  .modal {
    width: calc(100% - 32px);
    height: calc(100% - 120px);
    margin-top: 60px;
    margin-left: 16px;
    margin-right: 16px;
    border-radius: 16px;
  }
  .modal__progress-track { border-radius: 16px 16px 0 0; }
  .modal__header { padding: 16px 20px 0; }
  .modal__body { padding: 0 20px 16px; }
  .modal__step-heading { font-size: 1.2rem; padding: 18px 0 14px; }
  .modal__step-head-group { padding: 18px 0 0; }
  .modal__footer { padding: 12px 20px 20px; }
  .modal__form-grid-2 { grid-template-columns: 1fr; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .trust__inner { grid-template-columns: 1fr; }

  .hiw__steps { grid-template-columns: 1fr; }

  .contact__grid { grid-template-columns: 1fr; gap: 40px; }

  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 48px; }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .contact__form-card { padding: 28px 22px 32px; }
}

@media (max-width: 480px) {
  .hero__content { padding: 70px 0 60px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .cta-banner__actions .btn { width: 100%; max-width: 360px; }
  .trust__item { padding: 28px 24px; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card__thumb { height: 180px; }
  .service-card__body { padding: 22px 22px 26px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
}
