/* =============================================
   STREAMLINE LLC — Redesign v2
   ============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1A1A1A; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---- LAYOUT ---- */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-alt { background: #F5F4F0; }

/* ---- TOP BAR ---- */
.topbar { background: #111110; color: rgba(255,255,255,0.55); font-size: 0.78rem; padding: 9px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.topbar a:hover { color: #F97316; }
.topbar-right { display: flex; gap: 12px; align-items: center; }

/* ---- HEADER ---- */
.header {
  background: #fff;
  border-bottom: 1px solid #E8E6E0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a { font-size: 0.875rem; font-weight: 500; color: #444; transition: color 0.2s; }
.nav a:hover { color: #111110; }
.nav-cta {
  background: #111110;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: 6px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #F97316 !important; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: #111110; border-radius: 2px; transition: all 0.25s; }

/* ---- HERO ---- */
.hero {
  background: #111110;
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  transform: scale(1.02);
}
/* Subtle dot grid texture on top of photo */
.hero-texture {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,17,16,0.92) 45%, rgba(17,17,16,0.55) 100%);
  pointer-events: none;
}
/* Orange accent stripe */
.hero-stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #F97316;
}

/* ---- IMAGE BREAK ---- */
.img-break {
  position: relative;
  height: 360px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.img-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,17,16,0.88) 0%, rgba(17,17,16,0.65) 100%);
  display: flex;
  align-items: center;
}
.img-break-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.img-break-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F97316;
}
.img-break-h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hero-inner { position: relative; z-index: 1; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #F97316;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #F97316;
}
.hero-h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}
.hero-h1 .line {
  display: block;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero-h1 .line-em { color: #F97316; }
.hero-p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: #F97316;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 28px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  border: 2px solid #F97316;
}
.btn-primary:hover { background: #EA6A0A; transform: translateY(-1px); }
.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ---- STATS BAR ---- */
.statsbar { background: #1A1A1A; padding: 0; }
.statsbar-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 40px;
  text-align: center;
}
.stat-val {
  font-size: 1.75rem;
  font-weight: 900;
  color: #F97316;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.stat-div { width: 1px; background: rgba(255,255,255,0.08); margin: 16px 0; }

/* ---- SECTION HEADER ---- */
.sec-head { margin-bottom: 60px; }
.sec-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #F97316;
  margin-bottom: 12px;
}
.sec-head h2, h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #111110;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.sec-head-light h2.h2-light, .h2-light { color: #fff; }
.sec-tag-light { color: #F97316 !important; }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #E8E6E0;
  border: 2px solid #E8E6E0;
  border-radius: 12px;
  overflow: hidden;
}
.svc-card {
  background: #fff;
  padding: 40px 32px;
  transition: background 0.2s;
}
.svc-card:hover { background: #FFFAF6; }
.svc-icon { width: 48px; height: 48px; margin-bottom: 20px; }
.svc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111110;
  margin-bottom: 10px;
}
.svc-card p { font-size: 0.875rem; color: #666; line-height: 1.7; }

/* ---- CLIENTS ---- */
.clients-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.clients-intro h2 { margin-bottom: 16px; }
.clients-sub { color: #666; font-size: 0.95rem; line-height: 1.75; margin-bottom: 32px; }
.clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #E0DDD7;
  border: 2px solid #E0DDD7;
  border-radius: 10px;
  overflow: hidden;
}
.client-card {
  background: #fff;
  padding: 28px 26px;
  transition: background 0.2s;
}
.client-card:hover { background: #FFFAF6; }
.cc-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  color: #F97316;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.client-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111110;
  margin-bottom: 7px;
}
.client-card p { font-size: 0.82rem; color: #777; line-height: 1.65; }

/* ---- WHY LAYOUT ---- */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.why-left h2 { margin-bottom: 20px; }
.why-sub { color: #666; font-size: 0.95rem; line-height: 1.75; margin-bottom: 24px; }
.why-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
  aspect-ratio: 16/9;
}
.why-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.why-img-wrap:hover .why-img { transform: scale(1.03); }
.why-right { display: flex; flex-direction: column; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid #E8E6E0;
}
.why-item:last-child { border-bottom: none; }
.why-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F97316;
  margin-top: 8px;
  flex-shrink: 0;
}
.why-item h4 { font-size: 0.95rem; font-weight: 700; color: #111110; margin-bottom: 6px; }
.why-item p { font-size: 0.875rem; color: #666; line-height: 1.7; }

/* ---- HOW IT WORKS ---- */
.how-section { background: #111110; }
.how-section .sec-tag { color: #F97316; }
.how-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.how-card {
  flex: 1;
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
}
.how-step {
  font-size: 0.72rem;
  font-weight: 800;
  color: #F97316;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.how-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.how-card p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.how-arrow {
  color: #F97316;
  font-size: 1.6rem;
  padding: 0 24px;
  margin-top: 56px;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ---- QUOTE FORM ---- */
.quote-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.quote-left h2 { margin-bottom: 16px; }
.quote-sub { color: #666; font-size: 0.95rem; line-height: 1.75; margin-bottom: 36px; }
.quote-contact { display: flex; flex-direction: column; gap: 0; }
.qc-row {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #E8E6E0;
  font-size: 0.875rem;
}
.qc-row:last-child { border-bottom: none; }
.qc-label { font-weight: 700; color: #111110; min-width: 68px; }
.qc-row a, .qc-row span { color: #555; transition: color 0.2s; }
.qc-row a:hover { color: #F97316; }

/* ---- FORMS ---- */
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.8rem; font-weight: 600; color: #333; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E0DDD7;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  color: #1A1A1A;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: #F97316;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.field textarea { resize: vertical; }
.req { color: #F97316; }
.btn-submit {
  background: #111110;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 15px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}
.btn-submit:hover { background: #2a2a28; transform: translateY(-1px); }
.btn-submit-orange { background: #F97316 !important; }
.btn-submit-orange:hover { background: #EA6A0A !important; }
.form-note { text-align: center; font-size: 0.78rem; color: #999; margin-top: 4px; }

/* ---- DRIVERS ---- */
.drivers-section { background: #111110; }
.drivers-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.drivers-left h2 { margin-bottom: 16px; }
.drivers-sub { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.75; margin-bottom: 32px; }
.drivers-list { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.drivers-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.drivers-list li:last-child { border-bottom: none; }
.dl-dot { width: 7px; height: 7px; border-radius: 50%; background: #F97316; flex-shrink: 0; }
.drivers-list strong { color: #fff; }
.reqs-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 18px 20px;
}
.reqs-title { font-size: 0.78rem; font-weight: 700; color: #F97316; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.reqs-box p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.drivers-right {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 40px;
}
.drivers-right h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 28px; }
.form-dark .field label { color: rgba(255,255,255,0.6); }
.form-dark .field input,
.form-dark .field select,
.form-dark .field textarea {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}
.form-dark .field input::placeholder,
.form-dark .field textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-dark .field input:focus,
.form-dark .field select:focus,
.form-dark .field textarea:focus {
  border-color: #F97316;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}
.form-dark .field select option { background: #222; color: #fff; }

/* ---- FOOTER ---- */
.footer { background: #0D0D0C; padding: 72px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo { height: 38px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: #F97316; color: #F97316; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.footer-col a, .footer-col span { font-size: 0.875rem; color: rgba(255,255,255,0.4); transition: color 0.2s; line-height: 1.5; }
.footer-col a:hover { color: #F97316; }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.25); flex-wrap: wrap; gap: 8px; }
.footer-bottom-inner div { display: flex; gap: 20px; }
.footer-bottom-inner a:hover { color: rgba(255,255,255,0.5); }

/* ============================================================
   HOTSHOT EXPANSION — editorial sections
   ============================================================ */

/* SPLIT — Two Services overview */
.split { padding: 110px 0 80px; background: #F5F4F0; }
.split-head { text-align: center; margin-bottom: 64px; }
.split-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 800;
  color: #F97316; letter-spacing: 0.22em; text-transform: uppercase;
  background: rgba(249,115,22,0.08); padding: 8px 18px; border-radius: 30px;
  border: 1px solid rgba(249,115,22,0.25); margin-bottom: 20px;
}
.split-h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 900;
  line-height: 1.02; letter-spacing: -0.03em; color: #111110;
  margin: 0 auto; max-width: 900px;
}
.split-h2 em { color: #F97316; font-style: normal; }
.split-sub {
  margin-top: 24px; font-size: 1.125rem; line-height: 1.6;
  color: #555; max-width: 720px; margin-left: auto; margin-right: auto;
}
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  max-width: 1200px; margin: 0 auto;
}
.split-grid.split-grid-3 {
  grid-template-columns: 1fr 1fr 1fr; max-width: 1440px; gap: 28px;
}
@media (max-width: 1100px) {
  .split-grid.split-grid-3 { grid-template-columns: 1fr; }
}
.split-card {
  position: relative; padding: 56px 48px 48px; border-radius: 24px;
  background: #fff; border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column; min-height: 480px;
  text-decoration: none; color: inherit;
}
.split-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.18); }
.split-card-num {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; margin-bottom: 28px;
}
.split-card h3 {
  font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 900;
  line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 20px; color: #111110;
}
.split-card p {
  font-size: 1.0625rem; line-height: 1.65; color: #555;
  margin-bottom: 32px; flex: 1;
}
.split-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding: 24px 0; border-top: 1px solid #E8E6E0; border-bottom: 1px solid #E8E6E0;
  margin-bottom: 24px;
}
.split-stat-val {
  display: block; font-size: 1.75rem; font-weight: 900;
  line-height: 1; letter-spacing: -0.02em; margin-bottom: 6px;
}
.split-stat-lbl { font-size: 0.82rem; color: #777; font-weight: 500; }
.split-cta {
  font-size: 1rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 10px;
}
.split-cta-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: transform 0.2s;
}
.split-card:hover .split-cta-arrow { transform: translateX(4px); }

/* Dump truck variant — neutral stone */
.split-card.is-dump { background: linear-gradient(180deg, #FAFAF7 0%, #F2F0EA 100%); border-color: #E0DDD2; }
.split-card.is-dump .split-card-num { color: #555; }
.split-card.is-dump .split-stat-val { color: #111110; }
.split-card.is-dump .split-cta { color: #111110; }
.split-card.is-dump .split-cta-arrow { background: #111110; color: #fff; }

/* Hotshot variant — premium orange */
.split-card.is-hotshot {
  background: linear-gradient(160deg, #111110 0%, #1f1611 60%, #2a1709 100%);
  border-color: #F97316; color: #fff;
}
.split-card.is-hotshot p { color: rgba(255,255,255,0.7); }
.split-card.is-hotshot h3 { color: #fff; }
.split-card.is-hotshot .split-card-num { color: #F97316; }
.split-card.is-hotshot .split-stats { border-color: rgba(249,115,22,0.2); }
.split-card.is-hotshot .split-stat-val { color: #F97316; }
.split-card.is-hotshot .split-stat-lbl { color: rgba(255,255,255,0.5); }
.split-card.is-hotshot .split-cta { color: #F97316; }
.split-card.is-hotshot .split-cta-arrow { background: #F97316; color: #fff; }
.split-card.is-hotshot::after {
  content: 'NEW'; position: absolute; top: 24px; right: 24px;
  background: #F97316; color: #fff; font-size: 0.65rem; font-weight: 900;
  padding: 5px 12px; border-radius: 12px; letter-spacing: 0.18em;
}

/* Box truck variant — warm cream w/ orange accent border */
.split-card.is-box {
  background: linear-gradient(165deg, #FFFAF2 0%, #FFE9CC 100%);
  border-color: #F97316; color: #111110;
}
.split-card.is-box p { color: #4a3a26; }
.split-card.is-box h3 { color: #111110; }
.split-card.is-box .split-card-num { color: #B45309; }
.split-card.is-box .split-stats { border-color: rgba(249,115,22,0.25); }
.split-card.is-box .split-stat-val { color: #B45309; }
.split-card.is-box .split-stat-lbl { color: #6b5a3f; }
.split-card.is-box .split-cta { color: #B45309; }
.split-card.is-box .split-cta-arrow { background: #F97316; color: #fff; }
.split-card.is-box::after {
  content: 'NEW'; position: absolute; top: 24px; right: 24px;
  background: #F97316; color: #fff; font-size: 0.65rem; font-weight: 900;
  padding: 5px 12px; border-radius: 12px; letter-spacing: 0.18em;
}

/* HOTSHOT SECTION — full dark inverse */
.hotshot {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(249,115,22,0.18), transparent 60%),
              linear-gradient(180deg, #0a0a0a 0%, #14100c 100%);
  color: #fff;
  padding: 120px 0;
}
.hotshot .sec-tag { color: #F97316; }
.hotshot h2 { color: #fff; font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.03em; }
.hotshot h2 em { color: #F97316; font-style: normal; }
.hotshot .sec-head { text-align: center; max-width: 820px; margin: 0 auto 64px; }
.hotshot .sec-intro {
  font-size: 1.2rem; line-height: 1.55; color: rgba(255,255,255,0.7);
  margin-top: 28px;
}
.hotshot .sec-intro strong { color: #fff; }

/* BOX TRUCK SECTION — warm light cream w/ orange accents */
.boxtruck {
  background: linear-gradient(180deg, #FFFBF3 0%, #FFF1DC 100%);
  color: #111110;
  padding: 120px 0;
  border-top: 1px solid rgba(249,115,22,0.15);
  border-bottom: 1px solid rgba(249,115,22,0.15);
}
.boxtruck .sec-tag { color: #B45309; }
.boxtruck h2 { color: #111110; font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.03em; }
.boxtruck h2 em { color: #F97316; font-style: normal; }
.boxtruck .sec-head { text-align: center; max-width: 820px; margin: 0 auto 64px; }
.boxtruck .sec-intro {
  font-size: 1.2rem; line-height: 1.55; color: #4a3a26;
  margin-top: 28px;
}
.boxtruck .sec-intro strong { color: #111110; }
.boxtruck .hot-card {
  background: #fff; border: 1px solid rgba(249,115,22,0.18);
  color: #111110;
}
.boxtruck .hot-card h3 { color: #111110; }
.boxtruck .hot-card p { color: #555; }
.boxtruck .hot-subhead { color: #111110; }
.boxtruck .hot-subhead .eyebrow { color: #B45309; }
.boxtruck .hot-subhead h3 { color: #111110; }
.boxtruck .hot-subhead p { color: #4a3a26; }
.boxtruck .transit-card {
  background: #fff; border: 1px solid rgba(249,115,22,0.15); color: #111110;
}
.boxtruck .transit-card.is-expedited { background: #F97316; color: #fff; }
.boxtruck .transit-route { color: #555; }
.boxtruck .transit-time { color: #111110; }
.boxtruck .transit-mi { color: #888; }
.boxtruck .transit-card.is-expedited .transit-route,
.boxtruck .transit-card.is-expedited .transit-time,
.boxtruck .transit-card.is-expedited .transit-mi { color: #fff; }
.boxtruck .transit-note { color: #6b5a3f; }
.boxtruck .usecase-wrap {
  background: #fff; border: 1px solid rgba(249,115,22,0.22);
}
.boxtruck .usecase-card { background: #FFFBF3; border-color: rgba(249,115,22,0.15); }
.boxtruck .usecase-card h5 { color: #111110; }
.boxtruck .usecase-card p { color: #555; }
.boxtruck .usecase-head .eyebrow { color: #B45309; }
.boxtruck .usecase-head h3 { color: #111110; }
.boxtruck .usecase-head h3 em { color: #F97316; font-style: normal; }
.boxtruck .hot-cta { color: #111110; }
.boxtruck .hot-cta-phone { color: #4a3a26; }
.boxtruck .hot-cta-phone a { color: #B45309; }

/* Hotshot service cards */
.hotshot-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.2);
  border-radius: 18px; overflow: hidden; margin-bottom: 96px;
}
.hot-card {
  background: #0f0c08; padding: 44px 32px;
  transition: background 0.2s;
}
.hot-card:hover { background: #1a1208; }
.hot-card .svc-icon { width: 56px; height: 56px; margin-bottom: 24px; }
.hot-card h3 {
  font-size: 1.375rem; font-weight: 800; color: #fff;
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.hot-card p { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* Hotshot subhead blocks */
.hot-subhead { text-align: center; margin-bottom: 48px; }
.hot-subhead .eyebrow {
  font-size: 0.78rem; font-weight: 800; color: #F97316;
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 12px;
}
.hot-subhead h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 900;
  color: #fff; letter-spacing: -0.025em; line-height: 1.1; margin: 0;
}
.hot-subhead p { color: rgba(255,255,255,0.55); font-size: 1.0625rem; margin-top: 14px; }

/* Transit times — big editorial grid */
.transit-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 1100px; margin: 0 auto;
}
.transit-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 28px 24px;
  transition: all 0.2s;
}
.transit-card:hover { background: rgba(249,115,22,0.06); border-color: rgba(249,115,22,0.3); }
.transit-route { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 500; margin-bottom: 10px; }
.transit-time {
  font-size: 2.5rem; font-weight: 900; color: #F97316;
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px;
}
.transit-mi { font-size: 0.85rem; color: rgba(255,255,255,0.4); font-weight: 500; }
.transit-card.is-expedited {
  background: linear-gradient(135deg, rgba(249,115,22,0.18), rgba(249,115,22,0.06));
  border-color: rgba(249,115,22,0.4);
}
.transit-card.is-expedited .transit-route { color: #F97316; font-weight: 700; }
.transit-card.is-expedited .transit-time { color: #fff; font-size: 1.75rem; }
.transit-card.is-expedited .transit-mi { color: rgba(255,255,255,0.55); }
.transit-note {
  text-align: center; color: rgba(255,255,255,0.45);
  font-size: 0.95rem; margin-top: 28px; max-width: 740px; margin-left: auto; margin-right: auto;
}

/* Why hotshot — comparison cards */
.compare-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1100px; margin: 0 auto;
}
.compare-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 36px 32px;
}
.compare-eyebrow {
  font-size: 0.75rem; font-weight: 800; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 16px;
}
.compare-card h4 {
  font-size: 1.5rem; font-weight: 800; color: #fff;
  letter-spacing: -0.015em; line-height: 1.2; margin: 0 0 16px;
}
.compare-card p {
  font-size: 1rem; color: rgba(255,255,255,0.6);
  line-height: 1.7; margin: 0;
}

/* When-to-call use cases */
.usecase-wrap {
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(249,115,22,0.02));
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 24px; padding: 56px 48px;
  max-width: 1100px; margin: 0 auto;
}
.usecase-head { text-align: center; margin-bottom: 40px; }
.usecase-head .eyebrow {
  font-size: 0.78rem; font-weight: 800; color: #F97316;
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 10px;
}
.usecase-head h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900;
  color: #fff; letter-spacing: -0.025em; line-height: 1.1; margin: 0;
}
.usecase-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.usecase-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 24px;
}
.usecase-icon { font-size: 1.75rem; margin-bottom: 12px; line-height: 1; }
.usecase-card h5 {
  font-size: 1.0625rem; font-weight: 700; color: #fff;
  margin: 0 0 8px; letter-spacing: -0.005em;
}
.usecase-card p {
  font-size: 0.95rem; color: rgba(255,255,255,0.6);
  line-height: 1.55; margin: 0;
}

/* Hotshot CTA */
.hot-cta { text-align: center; margin-top: 64px; }
.hot-cta .btn-primary {
  font-size: 1.0625rem; padding: 20px 40px; letter-spacing: 0.02em;
}
.hot-cta-phone {
  margin-top: 18px; color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
}
.hot-cta-phone a { color: #F97316; text-decoration: none; font-weight: 800; }

/* Dump truck section — bigger editorial */
.section#services .sec-head { text-align: center; margin-bottom: 64px; }
.section#services .sec-tag { font-size: 0.78rem; letter-spacing: 0.22em; color: #F97316; }
.section#services h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.section#services .clients-sub { font-size: 1.125rem; max-width: 720px; margin: 24px auto 0; text-align: center; }
.section#services .svc-card { padding: 48px 32px; }
.section#services .svc-card h3 { font-size: 1.375rem; margin-bottom: 14px; }
.section#services .svc-card p { font-size: 1rem; color: #555; line-height: 1.65; }

/* ---- RESPONSIVE additions ---- */
@media (max-width: 960px) {
  .split-grid { grid-template-columns: 1fr; gap: 24px; }
  .hotshot-grid { grid-template-columns: repeat(2, 1fr); }
  .transit-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .section#services .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .split { padding: 72px 0 56px; }
  .split-card { padding: 40px 28px; min-height: 0; }
  .split-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hotshot { padding: 80px 0; }
  .hotshot-grid { grid-template-columns: 1fr; }
  .transit-grid { grid-template-columns: 1fr 1fr; }
  .transit-card { padding: 20px 18px; }
  .transit-time { font-size: 1.9rem; }
  .usecase-grid { grid-template-columns: 1fr; }
  .usecase-wrap { padding: 40px 24px; }
}

/* ---- UTILITY ---- */
.desk-only { display: block; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .how-grid { flex-wrap: wrap; }
  .how-card { min-width: 200px; }
  .how-arrow { display: none; }
  .quote-layout { grid-template-columns: 1fr; gap: 48px; }
  .drivers-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .img-break { background-attachment: scroll; height: 280px; }
  .nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid #E8E6E0; padding: 8px 0; z-index: 99; }
  .nav.open { display: flex; }
  .nav a { padding: 14px 28px; border-bottom: 1px solid #F5F4F0; font-size: 0.95rem; }
  .nav a:last-child { border: none; margin: 12px 28px; text-align: center; }
  .burger { display: flex; }
  .header { position: relative; }
  .hero { padding: 80px 0 72px; }
  .section { padding: 64px 0; }
  .stat { padding: 22px 24px; }
  .stat-val { font-size: 1.4rem; }
  .stat-div { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .desk-only { display: none; }
  .drivers-right { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .topbar-right { display: none; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline-light { text-align: center; }
}
