/* =============================================
   VARIABLES & RESET
============================================= */
:root {
  --blue:        #0047BA;
  --blue-dark:   #003a99;
  --blue-light:  #EEF4FF;
  --blue-mid:    #C8DAF5;
  --green:       #00D26A;
  --green-dark:  #00b359;
  --navy:        #0D1B2A;
  --navy-2:      #162436;
  --white:       #ffffff;
  --off-white:   #F8FAFF;
  --gray-light:  #EDF0F7;
  --gray-mid:    #D0D8E8;
  --text:        #0D1B2A;
  --text-muted:  #5A6A80;
  --ff:          'Inter', sans-serif;
  --ff-display:  'Playfair Display', Georgia, serif;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow-sm:   0 2px 10px rgba(0,71,186,0.07);
  --shadow:      0 4px 24px rgba(0,71,186,0.10);
  --shadow-lg:   0 8px 40px rgba(0,71,186,0.14);
  --transition:  0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* =============================================
   UTILITIES
============================================= */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--ff);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); box-shadow: 0 6px 20px rgba(0,71,186,0.28); }

.btn--green {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
  font-weight: 800;
}
.btn--green:hover { background: var(--green-dark); border-color: var(--green-dark); box-shadow: 0 6px 20px rgba(0,210,106,0.28); }
.btn--green.nav-cta { color: var(--white); font-weight: 800; letter-spacing: 0.04em; }

.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline:hover { background: var(--blue); color: var(--white); }

.btn--white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  font-weight: 800;
}
.btn--white:hover { background: var(--off-white); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.section-label {
  display: inline-block;
  font-family: var(--ff);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-label-light {
  display: inline-block;
  font-family: var(--ff);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* =============================================
   NAV
============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links .nav-cta { padding: 10px 22px; font-size: 0.85rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO
============================================= */
.hero {
  background: linear-gradient(160deg, #ffffff 0%, #f0f6ff 50%, #e8f0fe 100%);
  padding: 110px 24px 80px;
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 120%;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0,71,186,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 95% 70%, rgba(0,210,106,0.06) 0%, transparent 45%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse at 10% 90%, rgba(0,71,186,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #e8f0fe 0%, #ddeeff 100%);
  border: 1px solid var(--blue-mid);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,71,186,0.08);
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.82); }
}
.hero-eyebrow-text {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--blue); font-style: italic; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.hero-trust-badge span { font-size: 0.95rem; }

@keyframes van-slide-in {
  0% {
    transform: translateX(120%);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  80% {
    transform: translateX(-18px);
  }
  92% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes shadow-grow {
  0% { opacity: 0; transform: scaleX(0.1); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: scaleX(1); }
}

.hero-van-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero-van-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0,71,186,0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  animation: shadow-grow 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.hero-van-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.25)) drop-shadow(0 8px 20px rgba(0,71,186,0.2));
  position: relative;
  z-index: 1;
  animation: van-slide-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

/* =============================================
   STATS STRIP
============================================= */
.stats-strip {
  background: linear-gradient(135deg, #0047BA 0%, #0062D6 50%, #1a7fe8 100%);
  padding: 44px 24px;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(0,210,106,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}

/* =============================================
   WHAT WE DELIVER
============================================= */
.section-deliver {
  padding: 90px 24px;
  background: var(--white);
}
.deliver-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.deliver-card {
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.deliver-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.deliver-card-icon { font-size: 1.6rem; min-width: 32px; margin-top: 2px; }
.deliver-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.deliver-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   SERVICES / DELIVERY TYPES
============================================= */
.section-services {
  padding: 90px 24px;
  background: linear-gradient(160deg, #0D1B2A 0%, #162436 60%, #0f2035 100%);
  position: relative;
  overflow: hidden;
}
.section-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(0,71,186,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(0,210,106,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.section-services .section-header .section-label { color: var(--green); }
.section-services .section-header h2 { color: var(--white); }
.section-services .section-header p { color: rgba(255,255,255,0.55); }
.services-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: var(--green);
  background: rgba(0,210,106,0.05);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 11px;
  background: rgba(0,210,106,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
}
.service-card p {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* =============================================
   VEHICLE CAPABILITIES
============================================= */
.section-vehicle {
  padding: 90px 24px;
  background: var(--white);
}
.vehicle-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.vehicle-content h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.vehicle-content p {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 26px;
}
.vehicle-specs { display: flex; flex-direction: column; gap: 12px; }
.vehicle-spec {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
}
.vehicle-spec-icon { font-size: 1.3rem; }
.vehicle-spec-body strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}
.vehicle-spec-body span { font-size: 0.8rem; color: var(--text-muted); }

.vehicle-badges {
  background: var(--blue-light);
  border: 1.5px solid var(--blue-mid);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}
.vehicle-badges h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}
.badge-list { display: flex; flex-direction: column; gap: 10px; }
.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--white);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.badge-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  font-weight: 900;
}

/* =============================================
   SERVICE AREA
============================================= */
.section-area {
  background: linear-gradient(135deg, #0D1B2A 0%, #162436 50%, #1a2d42 100%);
  padding: 70px 24px;
  position: relative;
  overflow: hidden;
}
.section-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,71,186,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.area-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.area-text { text-align: left; }
.section-area .section-label { color: var(--green); margin-bottom: 12px; }
.section-area h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.section-area p {
  font-size: 0.975rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  max-width: 480px;
}
.area-map img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: block;
}
.area-cities {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.area-city {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white);
}
.area-city.primary {
  background: var(--blue);
  border-color: var(--blue);
}

/* =============================================
   PAIN POINTS
============================================= */
.section-pain {
  padding: 90px 24px;
  background: var(--off-white);
}
.pain-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pain-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.pain-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.pain-icon { font-size: 1.5rem; margin-bottom: 12px; }
.pain-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  line-height: 1.35;
}
.pain-card p {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   INDUSTRIES
============================================= */
.section-industries {
  padding: 90px 24px;
  background: var(--white);
}
.industries-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.industry-chip {
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.industry-chip:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.industry-icon { font-size: 1.2rem; }

/* =============================================
   CLIENT LOGOS
============================================= */
.section-clients {
  padding: 80px 24px;
  background: linear-gradient(180deg, #F8FAFF 0%, #edf3ff 100%);
}
.clients-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.client-logo {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  height: 88px;
}
.client-logo:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* =============================================
   HOW IT WORKS
============================================= */
.section-why {
  padding: 90px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}
.steps-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  text-align: center;
  padding: 34px 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border: 1.5px solid rgba(0,71,186,0.1);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.step-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0047BA 0%, #1a7fe8 100%);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(0,71,186,0.35);
}
.step-card h3 { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.step-card p { font-size: 0.855rem; color: var(--text-muted); line-height: 1.65; }

/* =============================================
   NOW HIRING
============================================= */
.section-hiring {
  padding: 80px 24px;
  background: linear-gradient(135deg, #0a1520 0%, #0D1B2A 40%, #162436 100%);
  position: relative;
  overflow: hidden;
}
.section-hiring::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 50%, rgba(0,210,106,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(0,71,186,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hiring-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.hiring-centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hiring-centered h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.hiring-centered > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.hiring-perks-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.hiring-perk-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color var(--transition), background var(--transition);
}
.hiring-perk-card:hover {
  border-color: var(--green);
  background: rgba(0,210,106,0.06);
}
.hiring-perk-icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.hiring-perk-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}
.hiring-perk-card span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

/* =============================================
   CTA SECTION
============================================= */
.section-cta {
  padding: 90px 24px;
  background: linear-gradient(145deg, #003a99 0%, #0047BA 40%, #0062D6 80%, #1a7fe8 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,210,106,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 45%);
  pointer-events: none;
}
.section-cta .section-label { color: rgba(255,255,255,0.55); }
.section-cta h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section-cta p {
  font-size: 0.975rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 24px 28px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand p {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.42);
  margin-top: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); }

/* =============================================
   CONTACT & SUBCONTRACTOR PAGES
============================================= */
.page-hero {
  background: var(--navy);
  padding: 120px 24px 72px;
  text-align: center;
}
.page-hero .section-label { color: var(--green); }
.page-hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 0.975rem;
  color: rgba(255,255,255,0.58);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-contact { padding: 80px 24px; background: var(--off-white); }
.contact-layout {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 52px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  transition: border-color var(--transition);
}
.contact-card:hover { border-color: var(--blue-mid); }
.contact-card-icon {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-card-body h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-card-body p,
.contact-card-body a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.contact-card-body a:hover { color: var(--blue); }

.quote-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1.5px solid var(--gray-light);
  box-shadow: var(--shadow);
}
.quote-form-wrap h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px;
}
.quote-form-wrap > p {
  font-size: 0.855rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 13px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--ff);
  font-size: 0.88rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 96px; }
.form-group select { cursor: pointer; }
.form-submit { margin-top: 6px; width: 100%; justify-content: center; }

.form-success {
  display: none;
  background: rgba(0,210,106,0.08);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 12px 15px;
  font-size: 0.855rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 16px;
}
.form-error {
  display: none;
  background: rgba(220,38,38,0.07);
  border: 1px solid #dc2626;
  border-radius: var(--radius);
  padding: 12px 15px;
  font-size: 0.855rem;
  color: #dc2626;
  font-weight: 500;
  margin-bottom: 16px;
}

.check-group { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.855rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
}
.check-item input[type="checkbox"],
.check-item input[type="radio"] {
  width: 16px; height: 16px;
  accent-color: var(--blue);
  cursor: pointer;
  padding: 0;
  border: none;
  flex-shrink: 0;
}

.sub-form-section { padding: 80px 24px; background: var(--off-white); }
.sub-form-inner { max-width: 760px; margin: 0 auto; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .vehicle-inner { grid-template-columns: 1fr; }
  .vehicle-badges { display: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
    border-top: 1px solid var(--gray-light);
  }
  .nav-links.open a { font-size: 1.05rem; color: var(--navy); }
  .nav-hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-map { display: block; margin-top: 32px; }
  .hero { min-height: auto; padding: 100px 24px 60px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .hiring-perks-row { grid-template-columns: repeat(2, 1fr); }
  .area-inner { grid-template-columns: 1fr; gap: 32px; }
  .area-text { text-align: center; }
  .area-cities { justify-content: center; }
}

@media (max-width: 600px) {
  .hiring-perks-row { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .quote-form-wrap { padding: 26px 16px; }
  .hero-buttons { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
