:root {
  --green: #B7F34D;
  --green-dark: #8EDB2F;
  --dark: #08090B;
  --card: #111317;
  --blue: #3BA7FF;
  --amber: #FFB020;
  --red: #FF4D4F;
  --text-muted: rgba(255,255,255,.64);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--dark); color: white; }
a { color: inherit; text-decoration: none; }
.page { min-height: 100vh; overflow: hidden; }
.hero-section { position: relative; padding: 24px clamp(20px, 5vw, 48px) 70px; }
.glow { position: absolute; border-radius: 999px; filter: blur(120px); opacity: .55; pointer-events: none; }
.glow-green { width: 520px; height: 520px; background: rgba(183,243,77,.2); left: 50%; top: 0; transform: translateX(-50%); }
.glow-blue { width: 360px; height: 360px; background: rgba(59,167,255,.12); right: 0; top: 180px; }
.navbar { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 14px 20px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.035); backdrop-filter: blur(18px); border-radius: 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { height: 56px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 28px; color: rgba(255,255,255,.7); font-size: 14px; }
.nav-links a:hover { color: var(--green); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 18px; padding: 13px 22px; font-weight: 700; font-size: 14px; transition: .2s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #111; box-shadow: 0 0 30px rgba(183,243,77,.22); }
.btn-secondary { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04); }
.hero-grid { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 90px 0 40px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 52px; }
.hero-logo { height: 86px; width: auto; object-fit: contain; filter: drop-shadow(0 0 30px rgba(183,243,77,.24)); margin-bottom: 28px; }
.badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(183,243,77,.32); background: rgba(183,243,77,.1); color: #D8FF92; padding: 9px 15px; border-radius: 999px; font-size: 14px; }
h1 { margin: 24px 0 0; max-width: 850px; font-size: clamp(46px, 7vw, 76px); line-height: .97; letter-spacing: -0.06em; }
.hero-text { max-width: 680px; color: var(--text-muted); font-size: 18px; line-height: 1.8; margin: 24px 0 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-actions.center { justify-content: center; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 560px; gap: 14px; margin-top: 46px; }
.metrics div { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); border-radius: 22px; padding: 18px; }
.metrics strong { color: var(--green); display: block; font-size: 25px; }
.metrics span { display: block; color: rgba(255,255,255,.52); font-size: 12px; margin-top: 6px; line-height: 1.45; }
.dashboard-card { position: relative; border-radius: 34px; border: 1px solid rgba(255,255,255,.1); background: rgba(17,19,23,.92); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.dashboard-card:before { content: ""; position: absolute; inset: -24px; background: rgba(183,243,77,.08); filter: blur(40px); }
.dashboard-header { position: relative; z-index: 2; border-bottom: 1px solid rgba(255,255,255,.1); padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; }
.dashboard-header strong, .dashboard-header span { display: block; }
.dashboard-header span { color: rgba(255,255,255,.45); font-size: 12px; margin-top: 4px; }
.status { background: rgba(183,243,77,.14); color: var(--green) !important; border-radius: 999px; padding: 6px 12px; }
.map-panel { position: relative; height: 440px; padding: 20px; background: #0B0D10; }
.map-panel:before { content: ""; position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 36px 36px; }
.map-inner { position: relative; height: 100%; border: 1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.22); border-radius: 28px; overflow: hidden; }
.routes { position: absolute; inset: 0; width: 100%; height: 100%; }
.pin { position: absolute; width: 13px; height: 13px; border-radius: 50%; }
.pin-green { left: 13%; top: 18%; background: var(--green); box-shadow: 0 0 24px var(--green); }
.pin-amber { right: 20%; top: 23%; background: var(--amber); box-shadow: 0 0 24px var(--amber); }
.pin-blue { left: 28%; bottom: 24%; background: var(--blue); box-shadow: 0 0 24px var(--blue); }
.pin-red { right: 14%; bottom: 16%; background: var(--red); box-shadow: 0 0 24px var(--red); }
.fleet-card, .events-card { position: absolute; border: 1px solid rgba(255,255,255,.1); background: rgba(17,19,23,.92); backdrop-filter: blur(16px); border-radius: 22px; padding: 16px; }
.fleet-card { left: 22px; top: 22px; display: flex; gap: 12px; align-items: center; }
.fleet-card small { display: block; color: rgba(255,255,255,.65); }
.fleet-card strong { font-size: 28px; }
.truck { color: var(--green); }
.events-card { right: 22px; bottom: 22px; width: 260px; }
.events-card p { margin: 10px 0 0; color: rgba(255,255,255,.62); background: rgba(255,255,255,.045); border-radius: 12px; padding: 11px; font-size: 12px; }
.section { max-width: 1200px; margin: 0 auto; padding: 80px clamp(20px, 5vw, 48px); }
.section-heading { max-width: 760px; }
.section span, .section-row span { color: var(--green); text-transform: uppercase; letter-spacing: .24em; font-size: 13px; font-weight: 800; }
h2 { margin: 16px 0 0; font-size: clamp(34px, 5vw, 54px); line-height: 1.05; letter-spacing: -0.04em; }
.section p { color: var(--text-muted); line-height: 1.75; }
.feature-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-grid div, .product-grid article, .audience-grid div { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.035); border-radius: 24px; padding: 22px; color: rgba(255,255,255,.76); }
.section-row { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 44px; }
.section-row p { max-width: 540px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-grid article { transition: .2s ease; }
.product-grid article:hover { transform: translateY(-5px); background: rgba(255,255,255,.06); }
.product-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 18px; color: var(--green); background: rgba(183,243,77,.12); font-weight: 900; margin-bottom: 22px; }
.product-grid h3 { margin: 0; font-size: 20px; }
.operation-box { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; border: 1px solid rgba(255,255,255,.1); background: #111317; border-radius: 34px; padding: 48px; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.audience-grid strong { font-size: 18px; }
.cta { text-align: center; max-width: 960px; border: 1px solid rgba(183,243,77,.2); background: rgba(183,243,77,.1); border-radius: 34px; margin-bottom: 80px; }
.cta p { max-width: 680px; margin: 18px auto 0; }
@media (max-width: 980px) {
  .hero-grid, .operation-box { grid-template-columns: 1fr; }
  .feature-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .navbar { align-items: flex-start; }
  .nav-logo { height: 46px; }
  .navbar .btn { display: none; }
  .hero-grid { padding-top: 58px; }
  .hero-logo { height: 64px; }
  .metrics, .feature-grid, .product-grid, .audience-grid { grid-template-columns: 1fr; }
  .dashboard-card { display: none; }
  .section-row { display: block; }
  .operation-box { padding: 28px; }
}
