/* ══════════════════════════
   HERO SECTION
   ══════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 72px;
}

/* Hero background photo */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: grayscale(20%);
}

/* Animated dot-grid background */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(212,146,10,0.18) 1px, transparent 0);
  background-size: 46px 46px;
  animation: grid-drift 28s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes grid-drift {
  from { background-position: 0 0; }
  to   { background-position: 46px 46px; }
}

/* Radial gradient overlays */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 68% 50%, rgba(212,146,10,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 70% 90% at 5%  90%, rgba(3,8,15,0.7)       0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

/* Inner grid */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 72px var(--section-x) 48px;
  width: 100%;
  flex: 1;
}

/* ─ Hero text ─ */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.eyebrow-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0   rgba(212,146,10,0.6); }
  50%       { box-shadow: 0 0 0 8px rgba(212,146,10,0);   }
}

.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero-gradient-text {
  display: block;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.78;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Trust badges row */
.hero-badges {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.hero-badge svg {
  width: 15px; height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ─ Truck illustration ─ */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-truck-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 65%; height: 65%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,146,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-truck-svg {
  width: 100%;
  filter: drop-shadow(0 16px 48px rgba(212,146,10,0.13));
  animation: truck-float 6.5s ease-in-out infinite;
}
@keyframes truck-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* ─ Stats bar ─ */
.stats-bar {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 24px 16px 26px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--t);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(212,146,10,0.06); }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 32px; }
  .hero-visual { display: none; }
  .stats-bar  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
