/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #1a2332;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Poppins', 'Inter', sans-serif; line-height: 1.2; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: #0d1b2e; margin-bottom: 1rem; }
h3 { font-size: 1.125rem; font-weight: 600; color: #0d1b2e; margin-bottom: 0.5rem; }
p { color: #4a5568; line-height: 1.7; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header p { max-width: 640px; font-size: 1.0625rem; }
.section-header.center p { margin: 0 auto; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0F62FE;
  background: rgba(15,98,254,0.08);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}
.section-eyebrow.light {
  color: #4A9EFF;
  background: rgba(74,158,255,0.15);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #0F62FE, #0050D0);
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(15,98,254,0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15,98,254,0.4);
  background: linear-gradient(135deg, #1D6FF5, #0F62FE);
}
.btn-primary.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: white;
}
.btn-ghost.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  background: #0F62FE;
  color: white !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 7px;
  transition: all 0.2s;
}
.btn-nav-cta:hover { background: #0050D0; }

/* ===== NAV ===== */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(4,13,26,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.nav-header.scrolled {
  background: rgba(4,13,26,0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: white;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero-map-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.map-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4,13,26,0.35) 0%, rgba(4,13,26,0.2) 60%, rgba(4,13,26,0.7) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,212,170,0.1);
  border: 1px solid rgba(0,212,170,0.25);
  color: #00D4AA;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #00D4AA;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-headline .highlight {
  background: linear-gradient(135deg, #4A9EFF, #00D4AA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  max-width: 640px;
}
.hero-stat {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  text-align: center;
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

/* ===== LOGO BAR ===== */
.logo-bar {
  background: #f8fafc;
  border-top: 1px solid #e8eef5;
  border-bottom: 1px solid #e8eef5;
  padding: 2.25rem 0;
}
.logo-bar-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.logo-item {
  font-weight: 700;
  font-size: 0.875rem;
  color: #94a3b8;
  letter-spacing: -0.01em;
  padding: 0.4rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  background: white;
  transition: all 0.2s;
}
.logo-item:hover { color: #64748b; border-color: #cbd5e1; }

/* ===== DASHBOARD PREVIEW ===== */
.dashboard-preview {
  padding: 6rem 0;
  background: white;
}
.mockup-browser {
  background: #0d1b2e;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(15,98,254,0.15), 0 4px 16px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 3rem;
}
.browser-bar {
  background: #1a2d45;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser-dots { display: flex; gap: 6px; }
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28C840; }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 5px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-family: monospace;
}
.mockup-screen { padding: 0; }
.dash-top-bar {
  display: flex;
  gap: 0;
  background: #0f2136;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow-x: auto;
}
.dash-metric {
  flex: 1;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  padding: 0.875rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.dash-metric:last-child { border-right: none; }
.dash-metric-label { font-size: 0.6875rem; color: rgba(255,255,255,0.45); font-weight: 500; margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.dash-metric-val { font-size: 1.25rem; font-weight: 700; color: white; font-family: 'Poppins', sans-serif; }
.dash-metric-val.green { color: #28C840; }
.dash-metric-val.blue { color: #4A9EFF; }
.dash-metric-val.teal { color: #00D4AA; }
.dash-metric-val.orange { color: #FFBD2E; }
.dash-metric-sub { font-size: 0.875rem; color: rgba(255,255,255,0.4); }
.dash-main { display: flex; height: 320px; }
.dash-map {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.map-live-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: #FF3B30;
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.map-live-badge::before {
  content: '';
  width: 5px; height: 5px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.dash-sidebar {
  width: 240px;
  background: #0f2136;
  border-left: 1px solid rgba(255,255,255,0.06);
  padding: 1rem;
  overflow-y: auto;
  flex-shrink: 0;
}
.dash-sidebar-title {
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.dash-sidebar-title.mt { margin-top: 1rem; }
.driver-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.driver-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #0F62FE;
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.driver-avatar.teal { background: #00D4AA; }
.driver-avatar.orange { background: #FFBD2E; color: #1a2332; }
.driver-info { flex: 1; min-width: 0; }
.driver-name { display: block; font-size: 0.75rem; font-weight: 600; color: white; line-height: 1.2; }
.driver-route { display: block; font-size: 0.625rem; color: rgba(255,255,255,0.45); }
.driver-status { font-size: 0.625rem; font-weight: 700; flex-shrink: 0; }
.driver-status.on-time { color: #28C840; }
.driver-status.delayed { color: #FFBD2E; }
.perf-bar-wrap { margin-bottom: 0.625rem; }
.perf-bar-label { font-size: 0.625rem; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; }
.perf-bar-track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.perf-bar-fill {
  height: 100%;
  background: #0F62FE;
  border-radius: 2px;
  transition: width 1s ease;
}
.perf-bar-fill.teal { background: #00D4AA; }
.perf-bar-fill.orange { background: #FFBD2E; }
.perf-bar-pct { font-size: 0.6rem; color: rgba(255,255,255,0.4); float: right; margin-top: -14px; }
.dashboard-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.dash-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.dash-feat-icon {
  width: 44px; height: 44px;
  background: rgba(15,98,254,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F62FE;
  flex-shrink: 0;
}
.dash-feat strong { display: block; color: #0d1b2e; font-size: 0.9375rem; margin-bottom: 0.25rem; }
.dash-feat p { font-size: 0.875rem; margin: 0; }

/* ===== FEATURES GRID ===== */
.features {
  padding: 6rem 0;
  background: #f8fafc;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: white;
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid #e8eef5;
  transition: all 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(15,98,254,0.1);
  border-color: rgba(15,98,254,0.2);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon.blue { background: rgba(15,98,254,0.1); color: #0F62FE; }
.feature-icon.teal { background: rgba(0,212,170,0.1); color: #00A886; }
.feature-icon.orange { background: rgba(255,170,0,0.1); color: #CC8800; }
.feature-icon.purple { background: rgba(124,58,237,0.1); color: #7C3AED; }
.feature-list { margin-top: 1rem; }
.feature-list li {
  font-size: 0.875rem;
  color: #64748b;
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: #00D4AA;
  border-radius: 50%;
}

/* ===== FLEET TRACKING ===== */
.fleet-tracking {
  padding: 6rem 0;
  background: white;
}
.tracking-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.tracking-features { margin: 2rem 0; }
.tracking-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.tracking-feat-icon {
  width: 40px; height: 40px;
  background: rgba(15,98,254,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F62FE;
  flex-shrink: 0;
}
.tracking-feat strong { display: block; color: #0d1b2e; font-size: 0.9375rem; margin-bottom: 0.2rem; }
.tracking-feat p { font-size: 0.875rem; margin: 0; }
.tracking-visual { position: relative; }
.tracking-card-stack { position: relative; }
.track-card {
  background: #0d1b2e;
  border-radius: 14px;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.track-card.main-card { width: 100%; }
.track-card.alert-card {
  position: absolute;
  bottom: -30px;
  left: -20px;
  width: calc(100% - 40px);
  background: #1a1a2e;
  border: 1px solid rgba(255,189,46,0.3);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.track-card.score-card {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  background: #0f2136;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  z-index: 2;
  border: 1px solid rgba(0,212,170,0.2);
}
.track-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.track-card-title { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }
.live-pill {
  background: #FF3B30;
  color: white;
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  letter-spacing: 0.1em;
}
.vehicle-status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.vs-item { text-align: center; background: rgba(255,255,255,0.04); border-radius: 8px; padding: 0.625rem 0.25rem; }
.vs-dot { width: 8px; height: 8px; border-radius: 50%; margin: 0 auto 0.25rem; }
.vs-dot.green { background: #28C840; }
.vs-dot.blue { background: #4A9EFF; }
.vs-dot.orange { background: #FFBD2E; }
.vs-dot.gray { background: #64748b; }
.vs-count { display: block; font-size: 1rem; font-weight: 700; color: white; line-height: 1; margin-bottom: 0.1rem; }
.vs-label { font-size: 0.6rem; color: rgba(255,255,255,0.45); }
.vs-list { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 0.75rem; }
.vs-row { display: flex; align-items: center; gap: 0.75rem; padding: 0.35rem 0; }
.vs-id { font-size: 0.75rem; font-weight: 600; color: white; width: 60px; flex-shrink: 0; }
.vs-speed { font-size: 0.75rem; color: rgba(255,255,255,0.5); flex: 1; }
.vs-battery { font-size: 0.6875rem; font-weight: 600; }
.vs-battery.green { color: #28C840; }
.vs-battery.orange { color: #FFBD2E; }
.alert-icon { color: #FFBD2E; flex-shrink: 0; }
.alert-text strong { display: block; font-size: 0.8125rem; color: white; margin-bottom: 0.15rem; }
.alert-text span { font-size: 0.6875rem; color: rgba(255,255,255,0.5); }
.score-header { font-size: 0.625rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.score-ring { margin: 0 auto 0.5rem; display: flex; justify-content: center; }
.score-sub { font-size: 0.5625rem; color: rgba(255,255,255,0.4); }

/* ===== DRIVER APP ===== */
.driver-app {
  padding: 6rem 0;
  background: linear-gradient(135deg, #040d1a 0%, #0a1628 50%, #081420 100%);
  overflow: hidden;
}
.app-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}
.app-phone-wrap { display: flex; justify-content: center; }
.phone-frame {
  width: 240px;
  background: #0a0a0a;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08), inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}
.phone-notch {
  width: 80px; height: 10px;
  background: #0a0a0a;
  border-radius: 5px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
}
.phone-screen {
  background: #0d1b2e;
  border-radius: 26px;
  overflow: hidden;
  min-height: 440px;
}
.app-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0.875rem;
  font-size: 0.6875rem;
  color: white;
  font-weight: 600;
  background: #080f1a;
}
.app-header-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  background: #0f2136;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.app-logo-sm {
  width: 26px; height: 26px;
  background: #0F62FE;
  border-radius: 6px;
  color: white;
  font-size: 0.5625rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-greeting { flex: 1; font-size: 0.6875rem; font-weight: 600; color: white; }
.app-notif {
  width: 18px; height: 18px;
  background: #FF3B30;
  border-radius: 50%;
  color: white;
  font-size: 0.5625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-map-mini { height: 110px; position: relative; }
.app-eta-chip {
  position: absolute;
  bottom: 8px; right: 8px;
  background: #0F62FE;
  color: white;
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
}
.app-next-stop { padding: 0.75rem 0.875rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.stop-badge { font-size: 0.5rem; font-weight: 800; letter-spacing: 0.12em; color: #0F62FE; margin-bottom: 0.2rem; }
.stop-address { font-size: 0.75rem; font-weight: 600; color: white; margin-bottom: 0.25rem; }
.stop-meta { display: flex; gap: 0.5rem; }
.stop-meta span { font-size: 0.5625rem; color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.06); padding: 0.15rem 0.375rem; border-radius: 3px; }
.app-actions { display: flex; gap: 0.5rem; padding: 0.75rem 0.875rem; }
.app-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.5rem;
  border-radius: 8px;
  border: none;
  font-size: 0.625rem;
  font-weight: 700;
  cursor: pointer;
  color: white;
}
.app-action-btn.nav { background: rgba(15,98,254,0.2); color: #4A9EFF; }
.app-action-btn.confirm { background: rgba(0,212,170,0.15); color: #00D4AA; }
.app-progress { padding: 0.625rem 0.875rem 0.875rem; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.6rem; color: rgba(255,255,255,0.45); margin-bottom: 0.35rem; }
.progress-track { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, #0F62FE, #00D4AA); border-radius: 2px; }

.app-content .section-eyebrow { color: #4A9EFF; background: rgba(74,158,255,0.12); }
.app-content h2 { color: white; }
.app-content > p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.app-features { margin-bottom: 2rem; }
.app-feat {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.app-feat-icon {
  width: 38px; height: 38px;
  background: rgba(15,98,254,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A9EFF;
  flex-shrink: 0;
}
.app-feat strong { display: block; color: white; font-size: 0.9375rem; margin-bottom: 0.2rem; }
.app-feat p { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin: 0; }
.app-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.app-store-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.625rem 1.125rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.app-store-badge:hover { background: rgba(255,255,255,0.12); }

/* ===== CALCULATOR ===== */
.calculator {
  padding: 6rem 0;
  background: #f8fafc;
}
.calc-card {
  background: white;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.calc-inputs { padding: 2.5rem; border-right: 1px solid #e8eef5; }
.calc-field { margin-bottom: 1.75rem; }
.calc-field label { display: block; font-size: 0.875rem; font-weight: 600; color: #374151; margin-bottom: 0.75rem; }
.slider-wrap { position: relative; }
.range-input {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: #e2e8f0;
  outline: none;
  cursor: pointer;
  margin-bottom: 0.375rem;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #0F62FE;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15,98,254,0.4);
  border: 3px solid white;
}
.range-input::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #0F62FE;
  cursor: pointer;
  border: 3px solid white;
}
.slider-labels { display: flex; justify-content: space-between; font-size: 0.6875rem; color: #94a3b8; }
.calc-val-display { font-size: 0.9375rem; font-weight: 700; color: #0F62FE; margin-top: 0.35rem; }
.calc-results {
  padding: 2.5rem;
  background: linear-gradient(160deg, #040d1a, #0a1628);
}
.calc-results-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.calc-result-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.calc-result-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.calc-result-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.calc-result-icon.fuel { background: rgba(15,98,254,0.15); color: #4A9EFF; }
.calc-result-icon.time { background: rgba(0,212,170,0.12); color: #00D4AA; }
.calc-result-icon.ops { background: rgba(124,58,237,0.12); color: #A78BFA; }
.calc-result-label { flex: 1; font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.calc-result-val { font-size: 1.25rem; font-weight: 700; color: white; font-family: 'Poppins', sans-serif; }
.calc-total-wrap {
  background: rgba(15,98,254,0.15);
  border: 1px solid rgba(15,98,254,0.3);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.calc-total-label { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.calc-total-val { font-size: 1.75rem; font-weight: 800; color: #4A9EFF; font-family: 'Poppins', sans-serif; }
.calc-roi-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; line-height: 1.5; }

/* ===== CASE STUDIES ===== */
.case-studies {
  padding: 6rem 0;
  background: #f8fafc;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.case-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.2s;
  position: relative;
}
.case-card:hover { box-shadow: 0 12px 40px rgba(15,98,254,0.1); transform: translateY(-2px); }
.case-card.featured {
  border-color: rgba(15,98,254,0.3);
  background: linear-gradient(160deg, #fff, #f0f6ff);
  box-shadow: 0 8px 30px rgba(15,98,254,0.12);
}
.case-featured-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: linear-gradient(135deg, #0F62FE, #0050D0);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 8px 8px;
}
.case-logo-placeholder { font-weight: 800; font-size: 1rem; color: #0d1b2e; letter-spacing: -0.01em; }
.case-industry { font-size: 0.8125rem; color: #64748b; }
.case-quote { font-size: 0.9375rem; color: #374151; line-height: 1.65; font-style: italic; flex: 1; }
.case-author { display: flex; align-items: center; gap: 0.75rem; }
.case-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #0F62FE;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.case-avatar.teal { background: #00A886; }
.case-avatar.purple { background: #7C3AED; }
.case-author strong { display: block; font-size: 0.9rem; color: #0d1b2e; }
.case-author span { font-size: 0.8125rem; color: #64748b; }
.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  border-top: 1px solid #e8eef5;
  padding-top: 1rem;
}
.case-metric { text-align: center; }
.case-metric-num { display: block; font-family: 'Poppins', sans-serif; font-size: 1.125rem; font-weight: 700; color: #0F62FE; }
.case-metric-label { font-size: 0.6875rem; color: #64748b; }

/* ===== PRICING ===== */
.pricing {
  padding: 6rem 0;
  background: white;
}
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  margin-bottom: 3rem;
}
.toggle-label { font-size: 0.9375rem; font-weight: 600; color: #94a3b8; transition: color 0.2s; }
.toggle-label.active { color: #0d1b2e; }
.save-badge { background: rgba(0,212,170,0.12); color: #00A886; font-size: 0.6875rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 100px; }
.toggle-switch { position: relative; width: 44px; height: 24px; cursor: pointer; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-thumb {
  position: absolute;
  inset: 0;
  background: #e2e8f0;
  border-radius: 12px;
  transition: background 0.2s;
}
.toggle-thumb::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-thumb { background: #0F62FE; }
.toggle-switch input:checked + .toggle-thumb::before { transform: translateX(20px); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}
.pricing-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem;
  border: 1.5px solid #e2e8f0;
  position: relative;
  transition: all 0.2s;
}
.pricing-card:hover { box-shadow: 0 8px 30px rgba(15,98,254,0.1); }
.pricing-card.featured {
  background: linear-gradient(160deg, #0f2136, #040d1a);
  border-color: rgba(15,98,254,0.4);
  box-shadow: 0 16px 50px rgba(15,98,254,0.2);
}
.plan-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0F62FE, #00A886);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}
.plan-name { font-size: 1.125rem; font-weight: 700; color: #0d1b2e; margin-bottom: 0.375rem; }
.pricing-card.featured .plan-name { color: white; }
.plan-desc { font-size: 0.875rem; color: #64748b; margin-bottom: 1.5rem; }
.pricing-card.featured .plan-desc { color: rgba(255,255,255,0.6); }
.plan-price { margin-bottom: 0.375rem; }
.price-amount { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 800; color: #0d1b2e; }
.pricing-card.featured .price-amount { color: white; }
.price-unit { font-size: 0.875rem; color: #94a3b8; }
.plan-min { font-size: 0.8125rem; color: #94a3b8; margin-bottom: 1.5rem; }
.btn-plan {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  margin-bottom: 1.5rem;
}
.btn-plan.outline {
  background: transparent;
  border: 1.5px solid #e2e8f0;
  color: #374151;
}
.btn-plan.outline:hover { border-color: #0F62FE; color: #0F62FE; }
.btn-plan.primary {
  background: linear-gradient(135deg, #0F62FE, #0050D0);
  color: white;
  box-shadow: 0 4px 14px rgba(15,98,254,0.4);
}
.btn-plan.primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(15,98,254,0.5); }
.plan-features { display: flex; flex-direction: column; gap: 0.5rem; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  padding: 0.25rem 0;
}
.feat-yes { color: #374151; }
.feat-no { color: #94a3b8; }
.pricing-card.featured .feat-yes { color: rgba(255,255,255,0.85); }
.pricing-card.featured .feat-no { color: rgba(255,255,255,0.3); }
.feat-yes::before { content: ''; display: inline-block; width: 16px; height: 16px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300D4AA' stroke-width='2.5'%3E%3Cpolyline points='20,6 9,17 4,12'/%3E%3C/svg%3E") center/contain no-repeat; flex-shrink: 0; margin-top: 2px; }
.feat-no::before { content: ''; display: inline-block; width: 16px; height: 16px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/contain no-repeat; flex-shrink: 0; margin-top: 2px; }
.pricing-note { text-align: center; font-size: 0.875rem; color: #94a3b8; }
.pricing-note a { color: #0F62FE; font-weight: 600; }

/* ===== DEMO ===== */
.demo {
  padding: 6rem 0;
  background: #f8fafc;
}
.demo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.demo-content .section-eyebrow { margin-bottom: 0.75rem; }
.demo-content h2 { margin-bottom: 1rem; }
.demo-content > p { margin-bottom: 2rem; }
.demo-bullets { margin-bottom: 2rem; }
.demo-bullet {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: #374151;
  padding: 0.5rem 0;
}
.demo-bullet svg { color: #00A886; flex-shrink: 0; }
.demo-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}
.trust-item svg { color: #0F62FE; }
.demo-form-wrap {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px rgba(15,98,254,0.08);
}
.demo-form h3 { font-size: 1.25rem; color: #0d1b2e; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: 600; color: #374151; margin-bottom: 0.4rem; }
.form-group input, .form-group select {
  width: 100%;
  padding: 0.6875rem 0.875rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #0d1b2e;
  background: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.form-group input:focus, .form-group select:focus {
  border-color: #0F62FE;
  box-shadow: 0 0 0 3px rgba(15,98,254,0.1);
}
.form-group input::placeholder { color: #94a3b8; }
.btn-submit { border: none; cursor: pointer; font-family: inherit; }
.form-disclaimer { font-size: 0.75rem; color: #94a3b8; text-align: center; margin-top: 0.75rem; }
.form-success { text-align: center; padding: 2rem 1rem; }
.success-icon { color: #00A886; margin: 0 auto 1rem; }
.success-icon svg { margin: 0 auto; }
.form-success h3 { font-size: 1.375rem; color: #0d1b2e; margin-bottom: 0.75rem; }
.form-success p { color: #4a5568; margin-bottom: 0.5rem; }
.success-sub { font-size: 0.875rem; color: #94a3b8; }

/* ===== ENTERPRISE CTA ===== */
.enterprise-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #040d1a 0%, #0a1628 60%, #061020 100%);
  position: relative;
  overflow: hidden;
}
.enterprise-cta::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(15,98,254,0.15), transparent 70%);
  pointer-events: none;
}
.enterprise-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}
.enterprise-content h2 { color: white; margin-bottom: 1rem; }
.enterprise-content > p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; max-width: 580px; }
.enterprise-features { margin-bottom: 2.5rem; }
.ent-feat {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  padding: 0.45rem 0;
}
.ent-feat svg { color: #00D4AA; flex-shrink: 0; }
.enterprise-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.enterprise-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.ent-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.ent-stat-num { display: block; font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: white; margin-bottom: 0.25rem; }
.ent-stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }

/* ===== FOOTER ===== */
.footer {
  background: #040d1a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo-text { color: white; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-top: 0.875rem; margin-bottom: 1.25rem; line-height: 1.7; max-width: 300px; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.social-link:hover { background: rgba(15,98,254,0.3); color: white; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.footer-col h4 { font-size: 0.8125rem; font-weight: 700; color: white; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.5); padding: 0.2rem 0; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8125rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tracking-split { grid-template-columns: 1fr; gap: 3rem; }
  .tracking-visual { order: -1; }
  .tracking-card-stack { max-width: 420px; margin: 0 auto; }
  .track-card.alert-card { position: relative; bottom: auto; left: auto; width: 100%; margin-top: 1rem; }
  .track-card.score-card { top: -10px; right: -10px; }
  .app-split { grid-template-columns: 1fr; gap: 3rem; }
  .app-phone-wrap { order: -1; }
  .enterprise-inner { grid-template-columns: 1fr; gap: 3rem; }
  .enterprise-stats { grid-template-columns: repeat(4, 1fr); }
  .demo-split { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(4,13,26,0.98); padding: 1.5rem; gap: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: 0.5rem 0; }
  .btn-nav-cta { width: fit-content; }
  .nav-toggle { display: flex; }
  .hero { padding: 6rem 0 4rem; }
  .hero-stats { flex-direction: column; gap: 0; }
  .hero-stat-divider { width: auto; height: 1px; }
  .dashboard-preview, .features, .fleet-tracking, .driver-app, .calculator, .case-studies, .pricing, .demo, .enterprise-cta { padding: 4rem 0; }
  .dash-main { flex-direction: column; height: auto; }
  .dash-sidebar { width: 100%; border-left: none; border-top: 1px solid rgba(255,255,255,0.06); max-height: 250px; }
  .dash-top-bar { overflow-x: auto; }
  .calc-card { grid-template-columns: 1fr; }
  .calc-inputs { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .form-row { grid-template-columns: 1fr; }
  .enterprise-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .features-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr 1fr; }
  .enterprise-stats { grid-template-columns: 1fr 1fr; }
  .case-metrics { grid-template-columns: repeat(3, 1fr); }
  .logos-row { gap: 0.75rem; }
  .logo-item { font-size: 0.75rem; padding: 0.3rem 0.625rem; }
  .hero-headline { font-size: 2rem; }
}
