/* ===== Reset & Base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0a0f;
  color: #e5e7eb;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ===== Background ===== */
.bg-gradient {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(239, 68, 68, 0.25), transparent 60%),
    radial-gradient(900px 500px at 10% 20%, rgba(59, 130, 246, 0.18), transparent 60%),
    radial-gradient(1000px 700px at 50% 110%, rgba(168, 85, 247, 0.18), transparent 60%),
    linear-gradient(180deg, #07070b 0%, #0a0a14 100%);
}
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

/* ===== Layout ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02) 50%, transparent); }

/* ===== Navigation ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 24px;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; letter-spacing: 0.02em;
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-logo {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover;
  background: white;
  box-shadow: 0 6px 18px rgba(239, 68, 68, 0.35);
  border: 2px solid rgba(255,255,255,0.1);
}
.brand-text { color: white; font-size: 18px; }
.brand-dot { color: #ef4444; }
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: #9ca3af;
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.nav-cta { font-size: 14px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 12px;
  font-weight: 600; font-size: 15px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  box-shadow: 0 10px 30px -8px rgba(239, 68, 68, 0.6);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -8px rgba(239, 68, 68, 0.8);
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: white;
  border-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.btn-lg { padding: 16px 28px; font-size: 16px; border-radius: 14px; }

/* ===== Hero ===== */
.hero {
  padding-top: 160px; padding-bottom: 80px;
  position: relative; overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5; font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
}
.pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 12px #ef4444;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.03em;
  color: white; margin-bottom: 24px;
}
.grad-red {
  background: linear-gradient(135deg, #ef4444, #f97316, #f59e0b);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-blue {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px; color: #9ca3af; max-width: 560px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-meta {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding: 20px 24px; border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-value { color: white; font-size: 15px; font-weight: 500; }
.meta-value strong { color: #ef4444; font-weight: 700; }
.meta-label { font-size: 12px; color: #6b7280; text-transform: uppercase; letter-spacing: 0.08em; }
.meta-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

/* Hero visual */
.hero-visual {
  position: relative; height: 480px;
  display: grid; place-items: center;
}
.orbit {
  position: absolute; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.08);
  animation: spin 40s linear infinite;
}
.orbit-1 { width: 380px; height: 380px; }
.orbit-2 { width: 280px; height: 280px; animation-duration: 25s; animation-direction: reverse; border-color: rgba(239,68,68,0.15); }
.orbit-3 { width: 180px; height: 180px; animation-duration: 15s; border-color: rgba(59,130,246,0.15); }
@keyframes spin { to { transform: rotate(360deg); } }

.truck-card {
  position: relative;
  width: min(100%, 380px);
  padding: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  animation: float 6s ease-in-out infinite;
}

.logo-showcase {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at center, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
  box-shadow:
    0 40px 80px -20px rgba(239, 68, 68, 0.4),
    0 0 120px rgba(239, 68, 68, 0.15),
    inset 0 0 0 1px rgba(255,255,255,0.2);
  animation: float 6s ease-in-out infinite;
  padding: 20px;
}
.logo-showcase::before {
  content: '';
  position: absolute; inset: -20px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(239,68,68,0.3), rgba(59,130,246,0.3), rgba(168,85,247,0.3), rgba(239,68,68,0.3));
  filter: blur(40px);
  opacity: 0.6;
  z-index: -1;
  animation: spin 20s linear infinite;
}
.logo-showcase img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.truck-card-top {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: #10b981; margin-bottom: 12px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981; box-shadow: 0 0 10px #10b981;
  animation: pulse 1.5s infinite;
}
.truck-svg { width: 100%; margin: 12px 0 20px; }
.truck-card-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1);
}
.truck-card-stats > div { display: flex; flex-direction: column; gap: 2px; }
.stat-k { font-size: 11px; color: #6b7280; text-transform: uppercase; letter-spacing: 0.08em; }
.stat-v { font-size: 14px; color: white; font-weight: 600; }

/* Marquee */
.marquee {
  margin-top: 80px; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  background: linear-gradient(90deg, rgba(239,68,68,0.05), rgba(59,130,246,0.05));
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 14px; letter-spacing: 0.12em;
  color: #9ca3af;
}
.marquee-track span { padding: 0 8px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Section Headers ===== */
.section-head { margin-bottom: 60px; max-width: 720px; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600;
  color: #ef4444; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.02em; color: white;
}

/* ===== About ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.about-text p {
  font-size: 17px; color: #9ca3af; margin-bottom: 20px;
}
.about-text strong { color: white; font-weight: 600; }
.feature-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.feat-card {
  padding: 24px; border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.feat-1::before { background: radial-gradient(circle at top left, rgba(239,68,68,0.15), transparent 60%); }
.feat-2::before { background: radial-gradient(circle at top right, rgba(59,130,246,0.15), transparent 60%); }
.feat-3::before { background: radial-gradient(circle at bottom right, rgba(168,85,247,0.15), transparent 60%); }
.feat-4::before { background: radial-gradient(circle at bottom left, rgba(16,185,129,0.15), transparent 60%); }
.feat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(239,68,68,0.2), rgba(239,68,68,0.05));
  border: 1px solid rgba(239,68,68,0.3);
  color: #ef4444;
}
.feat-2 .feat-icon { background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(59,130,246,0.05)); border-color: rgba(59,130,246,0.3); color: #3b82f6; }
.feat-3 .feat-icon { background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(168,85,247,0.05)); border-color: rgba(168,85,247,0.3); color: #a855f7; }
.feat-4 .feat-icon { background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0.05)); border-color: rgba(16,185,129,0.3); color: #10b981; }
.feat-icon svg { width: 22px; height: 22px; }
.feat-card h3 { color: white; font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.feat-card p { color: #9ca3af; font-size: 14px; }

/* ===== Services ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-card {
  padding: 36px 28px; border-radius: 24px;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(239,68,68,0.15), transparent 40%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(239,68,68,0.4); }
.service-card:hover::after { opacity: 1; }
.service-card:nth-child(2)::after { background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 40%); }
.service-card:nth-child(2):hover { border-color: rgba(59,130,246,0.4); }
.service-card:nth-child(3)::after { background: radial-gradient(circle, rgba(168,85,247,0.15), transparent 40%); }
.service-card:nth-child(3):hover { border-color: rgba(168,85,247,0.4); }
.service-num {
  display: inline-block; font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700; color: #ef4444;
  padding: 4px 10px; border-radius: 8px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  margin-bottom: 20px;
}
.service-card:nth-child(2) .service-num { color: #3b82f6; background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.2); }
.service-card:nth-child(3) .service-num { color: #a855f7; background: rgba(168,85,247,0.1); border-color: rgba(168,85,247,0.2); }
.service-card h3 { color: white; font-size: 22px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.service-card p { color: #9ca3af; font-size: 15px; }

/* ===== Contact ===== */
.contact-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: 28px; overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
}
.contact-info { padding: 48px; }
.contact-row {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-row:last-child { border-bottom: none; }
.contact-row:first-child { padding-top: 0; }
.contact-icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.25);
  color: #ef4444;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-label { font-size: 12px; color: #6b7280; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-value { color: white; font-size: 16px; }
.contact-value a { color: white; transition: color 0.2s; }
.contact-value a:hover { color: #ef4444; }

.contact-cta {
  padding: 48px; position: relative;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.contact-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.2), transparent 50%);
  pointer-events: none;
}
.contact-cta h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px; font-weight: 700; color: white;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 12px;
  position: relative;
}
.contact-cta p { color: rgba(255,255,255,0.9); font-size: 16px; margin-bottom: 28px; position: relative; }
.contact-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }
.contact-cta .btn-primary {
  background: white; color: #ef4444;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.3);
}
.contact-cta .btn-primary:hover { background: #f3f4f6; }
.contact-cta .btn-ghost { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: white; }
.contact-cta .btn-ghost:hover { background: rgba(255,255,255,0.25); }

/* ===== Legal ===== */
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.legal-card {
  padding: 36px; border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.legal-card h3 {
  color: white; font-family: 'Space Grotesk', sans-serif;
  font-size: 24px; font-weight: 700; margin-bottom: 16px;
}
.legal-card p { color: #9ca3af; margin-bottom: 16px; font-size: 15px; }
.legal-card ul { list-style: none; padding: 0; }
.legal-card li {
  color: #9ca3af; font-size: 15px; padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.legal-card li:last-child { border-bottom: none; }
.legal-card li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 16px; height: 2px; background: #ef4444; border-radius: 2px;
}
.legal-note { margin-top: 20px; font-size: 14px; color: #6b7280; }
.legal-note a { color: #ef4444; }

/* ===== Footer ===== */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.3);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 2fr;
  gap: 32px; align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-text { font-size: 20px; }
.footer-logo {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; background: white;
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { color: #6b7280; font-size: 14px; margin-top: 4px; }
.footer-meta { display: flex; gap: 16px; justify-content: center; }
.footer-meta span {
  font-size: 12px; color: #9ca3af; padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.footer-copy { color: #6b7280; font-size: 13px; text-align: right; }

/* ===== Reveal animations ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 400px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .footer-copy { text-align: center; }
  .nav-links { display: none; }
  .section { padding: 80px 0; }
  .hero { padding-top: 120px; }
  .hero-meta { gap: 16px; }
  .meta-divider { display: none; }
}
@media (max-width: 600px) {
  .nav-cta { display: none; }
  .contact-info, .contact-cta { padding: 32px 24px; }
  .feature-cards { grid-template-columns: 1fr; }
  .legal-card { padding: 28px 24px; }
}
