:root {
  --bg-primary: #1a1a1a;
  --bg-secondary: #262626;
  --bg-accent: #0d0d0d;
  --bg-white: #ffffff;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --accent: #d4a017;
  --accent-dim: rgba(212, 160, 23, 0.12);
  --border: #333333;
  --olive-secondary: #3d4a3a;
  --gunmetal-secondary: #4a4a4a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 160, 23, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 160, 23, 0.05) 0%, transparent 40%),
    linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(212, 160, 23, 0.015) 2px,
    rgba(212, 160, 23, 0.015) 4px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
}

.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.lede {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* HERO CTA BUTTONS */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border: 1px solid;
  transition: background 0.15s, color 0.15s;
}

.cta-btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.cta-btn--primary:hover { background: #b8920f; border-color: #b8920f; }

.cta-btn--ghost {
  background: transparent;
  border-color: rgba(212, 160, 23, 0.4);
  color: var(--accent);
}

.cta-btn--ghost:hover { border-color: var(--accent); background: var(--accent-dim); }

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* FEATURES */
.features {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 4rem;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.features-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-card {
  background: var(--bg-primary);
  padding: 2.5rem;
}

.feature-icon {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* FLEET */
.fleet {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.fleet-content {
  max-width: 1100px;
  margin: 0 auto;
}

.fleet h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.fleet-item {
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--bg-primary);
}

.fleet-vehicle {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.fleet-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(212, 160, 23, 0.08) 0%, transparent 50%),
    var(--bg-primary);
}

.closing-content {
  max-width: 750px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.closing p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

/* SITE NAV */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-accent);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-phone {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-phone:hover { opacity: 0.8; }

.site-nav .nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav .nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

.site-nav .nav-link:hover { color: var(--text-primary); }

.nav-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* FOOTER */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 1.25rem;
}

.footer-phone {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.footer-phone a {
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.footer-phone a:hover { opacity: 0.8; }

.footer-email {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .badge {
    font-size: 0.65rem;
  }
}