:root {
  --bg: #020814;
  --bg-alt: #050f24;
  --card: #07152b;
  --text: #f5f9ff;
  --muted: #9fb3d9;
  --accent: #71ffbc;
  --accent-strong: #00ff9e;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
  --radius-lg: 20px;
  --radius-md: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #020814;
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", sans-serif;
}

/* smooth scroll */
html {
  scroll-behavior: smooth;
}

/* full-page snap scrolling */
body {
  scroll-snap-type: y mandatory;
}

/* Layout helpers */
.wrap {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

/* ===== Header / nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 8, 20, 0.96), transparent);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: contain;
  background: radial-gradient(circle at top, #06172e 0, #020814 60%);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-main {
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  opacity: 0.85;
  padding: 6px 8px;
  border-radius: 8px;
  transition: opacity 0.18s ease, background 0.18s ease;
}

.nav a:hover {
  opacity: 1;
  background: rgba(20, 34, 69, 0.8);
}

.nav a.is-active {
  background: rgba(20, 34, 69, 0.95);
  opacity: 1;
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* Neon DLV tag in nav */
.neon-dlv-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #020814;
  background: radial-gradient(circle at top, var(--accent-strong), #3cffb1);
  box-shadow:
    0 0 16px rgba(0, 255, 158, 0.7),
    0 0 40px rgba(0, 255, 158, 0.4);
}

/* ===== Full-page section layout ===== */
.page-section {
  position: relative;
  min-height: calc(100vh - 64px); /* minus header height */
  padding-top: 96px;
  padding-bottom: 96px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;

  /* snap to viewport */
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* remove previous fake “line” between pages by killing gradients */
.page-section::before {
  content: none;
}

.section-inner {
  position: relative;
  z-index: 2;
}

/* Section headings */
.section h2 {
  font-size: clamp(26px, 2.6vw, 32px);
  margin: 0 0 12px;
}

.section-intro {
  max-width: 620px;
  color: var(--muted);
  margin: 0 0 24px;
}

/* Hero (page 1) – no background truck, just clean */
.hero {
  padding-top: 110px;
  background: radial-gradient(circle at top, #07152b 0, #020814 55%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: flex-start;
}

.hero-main h1 {
  font-size: clamp(38px, 4.4vw, 52px);
  margin: 10px 0 12px;
}

.hero-sub {
  color: var(--muted);
  max-width: 580px;
  margin: 0 0 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

/* Graffiti DLV word */
.dlv-graffiti {
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  color: #020814;
  background: radial-gradient(circle at top, var(--accent-strong), #3cffb1);
  box-shadow:
    0 0 22px rgba(0, 255, 158, 0.6),
    0 0 60px rgba(0, 255, 158, 0.35);
  transform: translateX(-4px);
  animation: dlvSlide 4s ease-in-out infinite alternate;
}

@keyframes dlvSlide {
  0% {
    transform: translateX(-4px) translateY(0);
  }
  100% {
    transform: translateX(8px) translateY(2px);
  }
}

/* Buttons */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease,
    color 0.14s ease;
}

.btn-primary {
  background: radial-gradient(circle at top, var(--accent-strong), #3cffb1);
  color: #020814;
  box-shadow: 0 10px 36px rgba(0, 255, 158, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 46px rgba(0, 255, 158, 0.45);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(159, 179, 217, 0.7);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(18, 32, 64, 0.85);
}

/* Hero tags & pills */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tag {
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  background: rgba(11, 27, 56, 0.9);
  color: var(--muted);
  border: 1px solid rgba(113, 255, 188, 0.18);
}

.tag-strong {
  font-weight: 600;
  color: var(--accent);
  background: radial-gradient(circle at top, rgba(113, 255, 188, 0.18), transparent);
}

.hero-pill-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  max-width: 680px;
}

.hero-pill {
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: rgba(5, 16, 34, 0.96);
  border: 1px solid rgba(101, 140, 210, 0.45);
  box-shadow: var(--shadow);
}

.hero-pill h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.hero-pill p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

/* NEW: hero micro strip */
.hero-micro-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.hero-micro-card {
  border-radius: 14px;
  padding: 12px 14px 10px;
  background: rgba(4, 14, 30, 0.96);
  border: 1px solid rgba(96, 140, 215, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

.hero-micro-card h4 {
  margin: 0 0 4px;
  font-size: 13px;
}

.hero-micro-card p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

/* Hero right cards */
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: radial-gradient(circle at top, #081a32 0, #040a16 65%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(101, 140, 210, 0.6);
  box-shadow: var(--shadow);
  padding: 18px 20px 16px;
}

.stat-card .label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  color: var(--muted);
  margin: 0 0 6px;
}

.stat-card .value {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 4px;
}

.stat-card .hint {
  color: var(--muted);
  font-size: 11px;
  margin: 0;
}

.corridors {
  margin: 4px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 12px;
}

/* Cards / tiles */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.tile {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(5, 16, 34, 0.96);
  border: 1px solid rgba(101, 140, 210, 0.45);
  box-shadow: var(--shadow);
}


.tile h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.tile p {
  margin: 0 0 10px;
  color: var(--muted);
}

.bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.bullets li {
  margin-bottom: 4px;
}
/* ===== Why DLV – 3-step process card under tiles ===== */
.section--why .why-steps {
  margin-top: 26px;
  max-width: 520px;  /* keeps it on the left, away from the truck */
  padding: 18px 20px 14px;
  border-radius: var(--radius-md);
  background: rgba(5, 16, 34, 0.98);
  border: 1px solid rgba(113, 255, 188, 0.3);
  box-shadow: var(--shadow);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.section--why .why-step {
  padding: 6px 0 4px;
}

.section--why .why-step + .why-step {
  border-top: 1px solid rgba(101, 140, 210, 0.35); /* divider between 01 / 02 / 03 */
}

.section--why .why-step-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

/* Who – extra bottom content */
.who-extra-wrap {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.who-extra-card {
  padding: 16px 16px 14px;
  border-radius: var(--radius-md);
  background: rgba(4, 14, 30, 0.98);
  border: 1px solid rgba(96, 140, 215, 0.55);
  box-shadow: var(--shadow);
}

.who-extra-card h4 {
  margin: 0 0 6px;
  font-size: 14px;
}

.who-extra-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 12px;
  color: var(--muted);
}

.who-extra-card li {
  margin-bottom: 4px;
}

/* Service grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.service {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(5, 16, 34, 0.96);
  border: 1px solid rgba(101, 140, 210, 0.45);
  box-shadow: var(--shadow);
}

.service h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

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

/* Services – equipment badges strip */
.service-badges-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.service-badge {
  padding: 12px 14px 10px;
  border-radius: 999px;
  background: radial-gradient(circle at top, rgba(9, 33, 68, 0.9), rgba(3, 12, 28, 0.98));
  border: 1px solid rgba(113, 255, 188, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.service-badge-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 2px;
}

.service-badge p {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
}

/* Quote section */
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: flex-start;
}

.quote-copy p {
  color: var(--muted);
  max-width: 420px;
}

.quote-form {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(6, 18, 38, 0.98);
  border: 1px solid rgba(97, 148, 230, 0.7);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px 16px;
  margin-bottom: 10px;
}

.field-full {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.quote-form input,
.quote-form textarea {
  border-radius: 8px;
  border: 1px solid rgba(159, 179, 217, 0.65);
  background: rgba(3, 12, 28, 0.98);
  color: var(--text);
  padding: 6px 8px;
  font-size: 13px;
}

.quote-form textarea {
  resize: vertical;
}

/* Quote – guidance block */
.quote-hints {
  margin-top: 18px;
  padding: 12px 14px 10px;
  border-radius: var(--radius-md);
  background: rgba(4, 14, 30, 0.98);
  border: 1px solid rgba(96, 140, 215, 0.55);
  box-shadow: var(--shadow);
}

.quote-hints h4 {
  margin: 0 0 6px;
  font-size: 14px;
}

.quote-hints ul {
  margin: 0 0 6px;
  padding-left: 18px;
  font-size: 12px;
  color: var(--muted);
}

.quote-hints li {
  margin-bottom: 3px;
}

.quote-hints-note {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
}

/* Carriers section */
.carriers {
  max-width: 720px;
}

.carriers-copy p {
  color: var(--muted);
  max-width: 540px;
}

/* Carriers – bottom grid */
.carrier-grid {
  margin-top: 22px;
  padding: 14px 16px 12px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(6, 20, 42, 0.98), rgba(3, 10, 26, 0.98));
  border: 1px solid rgba(96, 140, 215, 0.55);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  font-size: 12px;
}

.carrier-col h4 {
  margin: 0 0 6px;
  font-size: 14px;
}

.carrier-col ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.carrier-col li {
  margin-bottom: 3px;
}

/* Contact */
.contact-layout {
  display: flex;
}

.contact-card {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(5, 16, 34, 0.98);
  border: 1px solid rgba(101, 140, 210, 0.6);
  box-shadow: var(--shadow);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-list li {
  margin-bottom: 6px;
}

/* Contact – meta */
.contact-meta {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(52, 78, 135, 0.7);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px 16px;
  font-size: 12px;
}

.contact-meta h4 {
  margin: 0 0 4px;
  font-size: 13px;
}

.contact-meta p {
  margin: 0;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 22px 0 28px;
  border-top: 1px solid rgba(52, 78, 135, 0.7);
}

.footer-layout {
  font-size: 12px;
  color: var(--muted);
}

/* ===== FULL-BLEED TRUCK BACKGROUNDS ===== */

/* hero already has separate gradient; all other sections get the truck image
   as the ONLY background, full cover.
*/

.section--who,
.section--services,
.section--why,
.section--quote,
.section--contact,
.section--carriers {
  background-color: #020814;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

/* assign images */
.section--who {
  background-image: url("assets/DryVan.png");
}

.section--services {
  background-image: url("assets/Reefer.png");
}

.section--why {
  background-image: url("assets/Flatbed.png");
}

.section--quote {
  background-image: url("assets/StepDeck.png");
}

.section--contact {
  background-image: url("assets/StraightTruck.png");
}

.section--carriers {
  background-image: url("assets/POnly.png");
}

/* we no longer need the .truck-bg layer visually, but HTML still has it.
   make it inert so it doesn’t mess anything up.
*/
.truck-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 25, 0.78);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: min(720px, 100% - 32px);
  background: radial-gradient(circle at top, #071b37 0, #020814 70%);
  border-radius: 18px;
  border: 1px solid rgba(113, 255, 188, 0.4);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
  padding: 26px 24px 18px;
  color: var(--text);
}

.modal-dialog h2 {
  margin: 0 0 6px;
  font-size: 20px;
}

.modal-intro {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.modal-note {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
}

/* Carrier form in modal */
.carrier-step {
  display: none;
}

.carrier-step.is-active {
  display: block;
}

.carrier-step h3 {
  font-size: 17px;
  margin: 0 0 8px;
}

.carrier-step h4 {
  font-size: 13px;
  margin: 12px 0 4px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px 14px;
  margin-bottom: 10px;
}

.field-grid label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.field-grid input,
.carrier-form textarea {
  border-radius: 8px;
  border: 1px solid rgba(159, 179, 217, 0.6);
  background: rgba(3, 12, 28, 0.98);
  color: var(--text);
  padding: 6px 8px;
  font-size: 13px;
}

.carrier-form textarea {
  resize: vertical;
}

.carrier-step-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

#carrierPrevBtn {
  display: none;
}

#carrierSubmitBtn {
  display: none;
}

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

  .hero-aside {
    order: -1;
  }

  .quote-layout {
    grid-template-columns: 1fr;
  }

  .page-section {
    padding-top: 96px;
    padding-bottom: 80px;
  }
}

@media (max-width: 720px) {
  .nav ul {
    display: none;
  }

  .hero {
    padding-top: 80px;
  }

  .tiles,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .modal-dialog {
    padding: 22px 18px 14px;
  }

  .hero-micro-strip {
    grid-template-columns: 1fr;
  }
}
