/* ============================================================
   JUNK SPEEDERS — Black / Red / White
   ============================================================ */
:root {
  --red: #c81e1e;
  --red-bright: #e02c2c;
  --red-dark: #9c1414;
  --black: #0d0d0d;
  --black-2: #161616;
  --black-3: #1f1f1f;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --gray: #9b9b9b;
  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --nav-h: 72px;
  --ease-pop: cubic-bezier(.34, 1.56, .64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 6px;
  transition: transform .25s var(--ease-pop), box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(200, 30, 30, .45);
}
.btn-red:hover { background: var(--red-bright); box-shadow: 0 8px 26px rgba(200, 30, 30, .6); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-block { display: block; text-align: center; margin-top: 18px; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(13, 13, 13, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s ease, box-shadow .3s ease;
}
.navbar.scrolled {
  background: rgba(13, 13, 13, .97);
  box-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
}
.brand-bolt {
  color: var(--red-bright);
  display: grid;
  place-items: center;
  animation: boltPulse 2.4s ease-in-out infinite;
}
@keyframes boltPulse {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(224,44,44,.6)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 10px rgba(224,44,44,.95)); transform: scale(1.08); }
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.brand-text em { font-style: normal; color: var(--red-bright); }

.nav-links {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 14px;
  border-radius: 6px;
  position: relative;
  transition: color .25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 3px;
  border-radius: 2px;
  background: var(--red-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-pop);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--white); }

.nav-cta { margin-left: 4px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}
.hamburger span {
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(200,30,30,.35), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 110%, rgba(200,30,30,.22), transparent 65%),
    repeating-linear-gradient(-45deg, transparent 0 34px, rgba(255,255,255,.022) 34px 36px);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { opacity: .85; }
  to { opacity: 1; }
}
.hero-inner { position: relative; max-width: 900px; }
.hero-kicker {
  font-weight: 800;
  letter-spacing: 0.35em;
  font-size: 0.85rem;
  color: var(--red-bright);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8.5vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
}
.hero-title span { display: block; }
.hero-title .accent {
  color: var(--red-bright);
  text-shadow: 0 0 40px rgba(224,44,44,.4);
}
.hero-sub {
  margin: 26px auto 0;
  max-width: 620px;
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
}
.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badges {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.badge-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 14px 22px;
  min-width: 130px;
  transition: transform .3s var(--ease-pop), border-color .3s ease;
}
.badge-item:hover { transform: translateY(-4px); border-color: rgba(224,44,44,.6); }
.badge-item strong { display: block; font-size: 1.05rem; color: var(--red-bright); }
.badge-item span { font-size: 0.82rem; color: rgba(255,255,255,.65); }

.scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 48px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 16px;
  display: grid;
  justify-content: center;
  padding-top: 8px;
}
.scroll-hint-arrow {
  width: 5px; height: 10px;
  border-radius: 3px;
  background: var(--red-bright);
  animation: scrollHint 1.6s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-head { text-align: center; margin-bottom: 60px; }
.eyebrow {
  font-weight: 800;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
  color: var(--red-bright);
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  line-height: 1.12;
}
.section-sub {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 1.05rem;
  color: inherit;
  opacity: .8;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s var(--ease-pop);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .25s; }
.reveal.d3 { transition-delay: .4s; }
.reveal.d4 { transition-delay: .55s; }
.reveal.d5 { transition-delay: .7s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: start;
}
.about-text p { margin-bottom: 18px; font-size: 1.05rem; color: #333; }
.about-text strong { color: var(--red-dark); }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--black);
  color: var(--white);
  border-radius: 12px;
  padding: 26px 20px;
  text-align: center;
  border-bottom: 4px solid var(--red);
  transition: transform .3s var(--ease-pop), box-shadow .3s ease;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.stat-num, .stat-pct {
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--red-bright);
}
.stat-card p { margin-top: 6px; font-size: 0.85rem; color: rgba(255,255,255,.75); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  padding: 30px 26px;
  transition: transform .35s var(--ease-pop), border-color .3s ease, box-shadow .3s ease,
              opacity .8s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224,44,44,.65);
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
}
.service-icon { font-size: 2.2rem; margin-bottom: 14px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 10px;
  letter-spacing: .02em;
}
.service-card p { font-size: 0.95rem; color: rgba(255,255,255,.7); }

.dont-remove {
  margin-top: 48px;
  background: var(--black-2);
  border: 1px solid rgba(224,44,44,.45);
  border-left: 6px solid var(--red);
  border-radius: 12px;
  padding: 30px 34px;
}
.dont-remove h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.no-x {
  color: var(--red-bright);
  font-size: 1.4rem;
}
.dont-remove ul { list-style: none; }
.dont-remove li {
  padding: 8px 0;
  color: rgba(255,255,255,.8);
  border-bottom: 1px dashed rgba(255,255,255,.12);
}
.dont-remove li:last-child { border-bottom: none; }
.yes { color: #4caf6d; font-weight: 700; }

/* ---------- Pricing ---------- */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.tier-card {
  position: relative;
  background: var(--white);
  border: 2px solid #e6e6e6;
  border-radius: 16px;
  padding: 38px 28px 30px;
  text-align: center;
  transition: transform .35s var(--ease-pop), box-shadow .35s ease, border-color .3s ease,
              opacity .8s ease;
}
.tier-card:hover { transform: translateY(-8px); box-shadow: 0 20px 44px rgba(0,0,0,.14); }
.tier-featured {
  border-color: var(--red);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 16px 44px rgba(200,30,30,.25);
}
.tier-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-truck {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .05em;
}
.tier-yards {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red-bright);
}
.tier-yards span { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray); }
.tier-price {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 2.6rem;
}
.tier-note { margin-top: 4px; font-size: 0.85rem; opacity: .6; }
.tier-footnote {
  text-align: center;
  margin: 26px auto 0;
  max-width: 640px;
  color: #555;
  font-size: 0.95rem;
}

.price-list { margin-top: 70px; }
.price-list h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 24px;
}
.table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.price-list table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--white);
}
.price-list th {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
}
.price-list td {
  padding: 12px 18px;
  border-bottom: 1px solid #ececec;
  font-size: 0.95rem;
}
.price-list td:nth-child(2), .price-list td:nth-child(4) {
  font-weight: 700;
  color: var(--red-dark);
  white-space: nowrap;
}
.price-list tr:nth-child(even) td { background: #fafafa; }
.price-list tr:hover td { background: #fff2f2; }

.surcharge-box {
  margin-top: 48px;
  background: var(--off-white);
  border: 1px solid #e2e2e2;
  border-left: 6px solid var(--red);
  border-radius: 12px;
  padding: 30px 34px;
}
.surcharge-box h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 8px; }
.surcharge-box > p { color: #555; margin-bottom: 16px; }
.surcharge-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 26px;
}
.surcharge-list li {
  position: relative;
  padding-left: 24px;
  color: #333;
  font-size: 0.95rem;
}
.surcharge-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}

/* ---------- Estimator ---------- */
.estimator {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.truck-stage { line-height: 0; }
#truckSvg { width: 100%; height: auto; display: block; }

/* road + speed animation */
.road-dash { animation: roadMove 1.1s linear infinite; }
@keyframes roadMove { to { stroke-dashoffset: -110; } }

.wheel { animation: wheelSpin 1.4s linear infinite; }
@keyframes wheelSpin { to { transform: rotate(360deg); } }

.truck-bob { animation: truckBob 1.15s ease-in-out infinite; }
@keyframes truckBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.sl { animation: speedDash 0.9s linear infinite; opacity: 0; }
.sl2 { animation-delay: .3s; }
.sl3 { animation-delay: .6s; }
@keyframes speedDash {
  0% { transform: translateX(60px); opacity: 0; }
  25% { opacity: .8; }
  100% { transform: translateX(-90px); opacity: 0; }
}

/* junk pop-in */
.junk {
  opacity: 0;
  transform: translateY(-70px) scale(.6);
  transform-box: fill-box;
  transform-origin: center bottom;
  transition: transform .5s var(--ease-pop), opacity .3s ease;
}
.junk.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.estimator-controls { padding: 34px 38px 40px; }
.control-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.control-label { font-weight: 700; font-size: 1.05rem; }
.fill-readout { font-weight: 800; color: var(--red-bright); font-size: 1.05rem; }
.fill-pct { color: rgba(255,255,255,.55); font-weight: 600; font-size: 0.9rem; }

#junkSlider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(to right, var(--red-bright) 0%, var(--red-bright) var(--fill, 25%), #3a3a3a var(--fill, 25%), #3a3a3a 100%);
  outline: none;
  cursor: pointer;
}
#junkSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 5px solid var(--red-bright);
  box-shadow: 0 2px 12px rgba(224,44,44,.6);
  transition: transform .2s var(--ease-pop);
}
#junkSlider::-webkit-slider-thumb:hover { transform: scale(1.15); }
#junkSlider::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 5px solid var(--red-bright);
  box-shadow: 0 2px 12px rgba(224,44,44,.6);
}
.slider-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,.45);
  font-weight: 600;
}

.estimate-readout {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 14px;
}
.est-block {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.est-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 6px;
}
.est-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.est-value small { font-size: 0.9rem; }
.est-price-block {
  border-color: rgba(224,44,44,.6);
  background: rgba(200,30,30,.12);
}
.est-price { color: var(--red-bright); font-size: 2.2rem; }
.est-disclaimer {
  margin-top: 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.5);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-card {
  background: var(--white);
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  padding: 34px 28px;
  text-align: center;
  transition: transform .35s var(--ease-pop), box-shadow .3s ease, opacity .8s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.contact-icon { font-size: 2.4rem; margin-bottom: 12px; }
.contact-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 14px; }
.contact-card p { color: #666; font-size: 0.92rem; }
.placeholder-slot {
  background: repeating-linear-gradient(-45deg, #fff4f4 0 12px, #ffe9e9 12px 24px);
  border: 2px dashed var(--red);
  border-radius: 10px;
  color: var(--red-dark);
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 16px 12px;
  margin-bottom: 14px;
  animation: placeholderPulse 2.2s ease-in-out infinite;
}
@keyframes placeholderPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,30,30,.25); }
  50% { box-shadow: 0 0 0 8px rgba(200,30,30,0); }
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.area-tags span {
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}
.area-tags span:last-child { background: var(--red); }

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 50px 0 40px;
  text-align: center;
  border-top: 4px solid var(--red);
}
.footer-inner { display: grid; justify-items: center; gap: 10px; }
.footer-tag { color: rgba(255,255,255,.65); font-size: 0.95rem; }
.footer-copy { color: rgba(255,255,255,.35); font-size: 0.8rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-tiers { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .tier-featured { order: -1; }
  .contact-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .estimate-readout { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(13,13,13,.98);
    flex-direction: column;
    padding: 18px 24px 26px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s var(--ease-pop), opacity .3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { padding: 14px 10px; font-size: 1.05rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .surcharge-list { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .estimator-controls { padding: 24px 20px 30px; }
  .hero-badges { gap: 10px; }
  .badge-item { min-width: 110px; padding: 12px 16px; }
}
