/* ============================================
   GAZOLE FLEET — Premium 2025 Redesign
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Exact brand colours from the logo */
  --navy:        #1a2f55;
  --navy-2:      #152444;
  --blue:        #1976d2;
  --blue-mid:    #1565c0;
  --blue-light:  #e3edfb;
  --blue-faint:  #f0f5fd;
  --green:       #3aab47;
  --green-dark:  #2e8a3b;
  --green-light: #e8f5ea;
  --green-faint: #f2faf3;

  --bg:          #ffffff;
  --bg-alt:      #f7f9fc;
  --bg-dark:     #0f1e3d;
  --border:      #e4eaf4;
  --border-2:    #c8d6ed;

  --text-primary:   #1a2f55;
  --text-secondary: #4b5e80;
  --text-muted:     #8898b8;

  --grad-blue:   linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  --grad-green:  linear-gradient(135deg, #3aab47 0%, #2e8a3b 100%);
  --grad-mixed:  linear-gradient(135deg, #1976d2 0%, #12a07a 100%);
  --grad-hero:   linear-gradient(145deg, #0b1a38 0%, #0f2550 45%, #0a2040 100%);

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  24px;
  --radius-2xl: 32px;

  --shadow-xs:    0 1px 3px rgba(26,47,85,0.06);
  --shadow-sm:    0 2px 8px rgba(26,47,85,0.08);
  --shadow-md:    0 6px 24px rgba(26,47,85,0.1);
  --shadow-lg:    0 12px 48px rgba(26,47,85,0.14);
  --shadow-blue:  0 4px 20px rgba(25,118,210,0.28);
  --shadow-green: 0 4px 20px rgba(58,171,71,0.25);
  --shadow-glass: 0 8px 40px rgba(26,47,85,0.08), 0 2px 8px rgba(26,47,85,0.05), inset 0 1px 0 rgba(255,255,255,0.85);

  --glass-light:  rgba(255,255,255,0.82);
  --glass-mid:    rgba(255,255,255,0.65);
  --glass-border: rgba(255,255,255,0.7);
  --glass-border-subtle: rgba(255,255,255,0.4);

  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; opacity: 0.5; }

h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; color: var(--navy); }

.gradient-text {
  background: var(--grad-mixed);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.green-text { color: var(--green); }
.blue-text  { color: var(--blue);  }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; }

.pill-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-light);
  border: 1px solid rgba(25,118,210,0.18);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 18px;
}
.pill-label.green { color: var(--green); background: var(--green-light); border-color: rgba(58,171,71,0.2); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-md);
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  text-decoration: none; border: none; transition: all 0.22s ease;
  white-space: nowrap; font-family: var(--font-body);
}
.btn-blue  { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-blue:hover  { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(25,118,210,0.38); }
.btn-green { background: var(--grad-green); color: #fff; box-shadow: var(--shadow-green); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(58,171,71,0.35); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border-2); }
.btn-outline:hover { background: var(--blue-faint); border-color: var(--blue); color: var(--blue); }
.btn-portal { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); font-weight: 600; }
.btn-portal:hover { background: var(--navy); color: #fff; }
.btn-white  { background: #fff; color: var(--blue); box-shadow: var(--shadow-md); }
.btn-white:hover  { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.55); }
.btn-lg { padding: 15px 30px; font-size: 1rem; border-radius: 14px; }
.btn-sm { padding: 8px 18px; font-size: 0.83rem; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  background: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(28px) saturate(180%); -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 1px 0 rgba(26,47,85,0.06), 0 4px 20px rgba(26,47,85,0.04);
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.88);
  box-shadow: 0 1px 0 rgba(26,47,85,0.08), 0 8px 32px rgba(26,47,85,0.1);
}

.nav-container {
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  height: 66px;
  display: flex; align-items: center; gap: 36px;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }

.nav-links { list-style: none; display: flex; gap: 32px; flex: 1; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }

.nav-cta { display: flex; gap: 10px; margin-left: auto; }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav-burger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

.nav-mobile { display: none; flex-direction: column; padding: 16px 28px 22px; background: #fff; border-top: 1px solid var(--border); }
.nav-mobile a { color: var(--text-secondary); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border); font-weight: 500; font-size: 0.9rem; }
.nav-mobile a:hover { color: var(--navy); }
.nav-mobile.open { display: flex; }

@media (max-width: 820px) { .nav-links, .nav-cta { display: none; } .nav-burger { display: flex; } }

/* ============================================
   HERO — Split layout
   ============================================ */
.hero {
  background: var(--grad-hero);
  min-height: 100vh;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); animation: orbFloat 14s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(25,118,210,0.5) 0%, transparent 70%); top: -180px; left: -80px; animation-delay: 0s; }
.orb-2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(58,171,71,0.3) 0%, transparent 70%); bottom: -80px; right: -60px; animation-delay: -5s; }
.orb-3 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(25,118,210,0.25) 0%, transparent 70%); top: 40%; left: 45%; animation-delay: -9s; }
.orb-4 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(15,30,80,0.6) 0%, transparent 70%); top: -200px; right: -150px; animation-delay: -3s; }
.orb-5 { width: 450px; height: 450px; background: radial-gradient(circle, rgba(58,171,71,0.2) 0%, transparent 70%); top: 50%; left: -120px; animation-delay: -7s; }
.orb-6 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(25,118,210,0.3) 0%, transparent 70%); top: 10%; left: 50%; transform: translateX(-50%); animation-delay: -2s; }
.orb-7 { width: 650px; height: 650px; background: radial-gradient(circle, rgba(21,101,192,0.35) 0%, transparent 70%); top: -300px; left: -200px; animation-delay: 0s; }
.orb-8 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(58,171,71,0.18) 0%, transparent 70%); bottom: -200px; right: -100px; animation-delay: -6s; }

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 0%, black 30%, transparent 100%);
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px;
}

.hero-left { display: flex; flex-direction: column; gap: 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(58,171,71,0.15); border: 1px solid rgba(58,171,71,0.35);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; color: #6de07a; letter-spacing: 0.02em;
  margin-bottom: 22px; width: fit-content;
  animation: fadeInUp 0.5s ease both;
}
.badge-dot { width: 7px; height: 7px; background: #6de07a; border-radius: 50%; animation: pulse 2s ease infinite; }

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(109,224,122,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(109,224,122,0); }
}

.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: #fff; line-height: 1.1; margin-bottom: 20px;
  animation: fadeInUp 0.55s 0.08s ease both;
}
.hero-title .blue-accent {
  background: linear-gradient(135deg, #60c8ff 0%, #4dd9c4 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-title .green-accent {
  background: linear-gradient(135deg, #6de07a 0%, #4eefc8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.65); line-height: 1.75;
  margin-bottom: 36px; max-width: 480px;
  animation: fadeInUp 0.55s 0.16s ease both;
}

.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px;
  animation: fadeInUp 0.55s 0.24s ease both;
}

.hero-proof {
  display: flex; align-items: center; gap: 0;
  animation: fadeInUp 0.55s 0.32s ease both;
}
.proof-avatars { display: flex; }
.proof-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: var(--grad-mixed); display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: #fff;
  margin-right: -8px;
}
.proof-text { margin-left: 20px; }
.proof-text strong { display: block; font-size: 0.85rem; color: #fff; font-weight: 600; }
.proof-text span   { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.proof-stars { color: #fbbf24; font-size: 0.8rem; }

/* Hero right — stats + dashboard */
.hero-right {
  display: flex; flex-direction: column; gap: 16px;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.hero-stat-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg); padding: 20px 22px;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.hero-stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}
.hero-stat-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.3);
}
.hero-stat-card .stat-icon { color: #60c8ff; margin-bottom: 10px; }
.hero-stat-card .stat-icon.green { color: #6de07a; }
.hero-stat-num-big {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1;
}
.hero-stat-card .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.hero-stat-card .stat-change {
  font-size: 0.72rem; font-weight: 600; color: #6de07a;
  background: rgba(109,224,122,0.12); padding: 2px 8px; border-radius: 100px;
  display: inline-block; margin-top: 6px;
}

.hero-dash-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.2);
  overflow: hidden; position: relative;
}
.hero-dash-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  pointer-events: none;
}
.hero-dash-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hero-dash-title { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.hero-dash-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.7rem; color: #6de07a;
}
.live-dot { width: 6px; height: 6px; background: #6de07a; border-radius: 50%; animation: pulse 2s ease infinite; }

.hero-dash-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.hero-dash-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem;
}
.dash-row-label { color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 8px; }
.dash-row-value { font-weight: 600; color: #fff; }
.dash-row-value.green { color: #6de07a; }
.dash-row-value.amber { color: #fbbf24; }
.dash-progress { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-top: 4px; overflow: hidden; }
.dash-progress-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, #1976d2, #12a07a); }
.dash-progress-fill.green { background: linear-gradient(90deg, #3aab47, #6de07a); }

.hero-dash-footer {
  padding: 12px 18px; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
}
.live-time-small { margin-left: auto; }

/* ============================================
   FEATURES
   ============================================ */
.features-section {
  background: linear-gradient(160deg, #e8f0fb 0%, #f0f5fd 40%, #e6f5ea 100%);
  position: relative; overflow: hidden;
}
.features-section::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(25,118,210,0.12) 0%, transparent 70%);
  top: -200px; right: -100px; pointer-events: none;
}
.features-section::after {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58,171,71,0.1) 0%, transparent 70%);
  bottom: -100px; left: -80px; pointer-events: none;
}
.features-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.features-header .section-title { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 700; }

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  position: relative; z-index: 1;
}
.feature-item {
  background: var(--glass-light);
  backdrop-filter: blur(40px) saturate(180%) brightness(1.04); -webkit-backdrop-filter: blur(40px) saturate(180%) brightness(1.04);
  border: 0.5px solid rgba(255,255,255,0.75);
  border-radius: var(--radius-xl); padding: 34px 30px;
  box-shadow: var(--shadow-glass);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1); position: relative;
  display: flex; flex-direction: column; gap: 14px; overflow: hidden;
}
.feature-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.1) 100%);
  pointer-events: none; border-radius: inherit;
}
.feature-item:hover {
  background: rgba(255,255,255,0.85);
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 60px rgba(26,47,85,0.14), inset 0 1px 0 rgba(255,255,255,0.8);
  z-index: 1;
}

.feature-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--grad-mixed);
  opacity: 0; transition: opacity 0.3s; border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.feature-item:hover::after { opacity: 1; }

.fi-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
  transition: all 0.25s;
}
.fi-icon.green-icon { background: var(--green-light); color: var(--green); }
.feature-item:hover .fi-icon { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.feature-item:hover .fi-icon.green-icon { background: var(--green); color: #fff; box-shadow: var(--shadow-green); }

.fi-title { font-size: 1rem; font-weight: 700; color: #0d1e3d; }
.fi-desc  { font-size: 0.88rem; color: #1a2f55; line-height: 1.7; font-weight: 450; }
.fi-tag   {
  display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--blue); background: var(--blue-light); padding: 3px 10px; border-radius: 100px;
  width: fit-content;
}
.fi-tag.green { color: var(--green); background: var(--green-light); }

/* ============================================
   PLATFORM SHOWCASE
   ============================================ */
.showcase-section {
  background: linear-gradient(180deg, #ffffff 0%, #f0f5fd 100%);
  padding: 80px 0 100px;
  overflow: hidden;
}
.showcase-header { text-align: center; margin-bottom: 52px; }
.showcase-sub {
  font-size: 1rem; color: var(--text-secondary); max-width: 580px;
  margin: 14px auto 0; line-height: 1.75;
}

/* Browser chrome */
.app-mockup { max-width: 1060px; margin: 0 auto; }
.app-chrome {
  background: #1a2a4a;
  border-radius: 14px;
  box-shadow: 0 40px 100px rgba(15,30,70,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
}
.chrome-bar {
  background: #0f1e3a; padding: 10px 18px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chrome-dot { width: 10px; height: 10px; border-radius: 50%; }
.chrome-dot.red    { background: #ff5f57; }
.chrome-dot.yellow { background: #febc2e; }
.chrome-dot.green  { background: #28c840; }
.chrome-url {
  flex: 1; background: rgba(255,255,255,0.07); border-radius: 6px;
  padding: 4px 12px; font-size: 0.72rem; color: rgba(255,255,255,0.4);
  text-align: center; font-family: var(--font-body);
}
.chrome-live { display: flex; align-items: center; gap: 5px; font-size: 0.7rem; color: #6de07a; font-weight: 600; }

.app-body { display: grid; grid-template-columns: 180px 1fr; min-height: 420px; }

/* Sidebar */
.app-sidebar {
  background: #0f1e3a; padding: 20px 12px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 6px;
}
.sidebar-logo { padding: 0 8px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 8px; }
.snav-item {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 10px; border-radius: 8px;
  font-size: 0.75rem; color: rgba(255,255,255,0.45); cursor: pointer;
  transition: all 0.2s;
}
.snav-item.active { background: rgba(25,118,210,0.2); color: #60c8ff; }
.snav-item:hover:not(.active) { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.7); }
.snav-item.alert-item { position: relative; }
.alert-badge {
  margin-left: auto; background: #ef4444; color: #fff;
  font-size: 0.62rem; font-weight: 700; border-radius: 100px; padding: 1px 6px;
}

/* Main content */
.app-main { padding: 18px; display: flex; flex-direction: column; gap: 14px; background: #111d36; }
.app-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.app-topbar-title { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.topbar-org { font-size: 0.72rem; color: rgba(255,255,255,0.35); }

/* KPI row */
.kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.kpi-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 14px;
}
.kpi-label { font-size: 0.68rem; color: rgba(255,255,255,0.4); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.kpi-val { font-size: 1.15rem; font-weight: 700; color: #fff; line-height: 1.2; }
.kpi-val.amber { color: #fbbf24; }
.kpi-of { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 400; }
.kpi-trend { font-size: 0.67rem; margin-top: 5px; }
.kpi-trend.up      { color: #6de07a; }
.kpi-trend.down    { color: #60c8ff; }
.kpi-trend.neutral { color: rgba(255,255,255,0.3); }

.app-mid-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.app-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 14px;
}
.app-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.app-card-title { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }
.app-card-badge { font-size: 0.65rem; font-weight: 600; padding: 2px 8px; border-radius: 100px; }
.app-card-badge.green  { background: rgba(58,171,71,0.2); color: #6de07a; }
.app-card-badge.amber  { background: rgba(251,191,36,0.15); color: #fbbf24; }
.app-card-link { font-size: 0.68rem; color: #60c8ff; cursor: pointer; }

/* Fuel chart */
.fuel-chart { position: relative; padding-bottom: 8px; }
.chart-bars {
  display: flex; align-items: flex-end; gap: 8px; height: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 4px;
}
.chart-col { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.chart-bar {
  width: 100%; background: var(--c, #1976d2); border-radius: 4px 4px 0 0;
  height: var(--h, 50%); opacity: 0.6; transition: all 0.3s;
  animation: barGrow 1s ease forwards;
}
.chart-bar.active { opacity: 1; }
@keyframes barGrow { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); } }
.chart-col span { font-size: 0.6rem; color: rgba(255,255,255,0.3); }
.chart-target-line {
  position: absolute; top: 28%; left: 0; right: 0;
  border-top: 1px dashed rgba(239,68,68,0.4);
}
.chart-target-line span { font-size: 0.58rem; color: rgba(239,68,68,0.6); float: right; margin-top: -8px; }

/* Vehicle list */
.vehicle-list { display: flex; flex-direction: column; gap: 8px; }
.veh-row { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; }
.veh-status { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.veh-status.on   { background: #6de07a; }
.veh-status.warn { background: #fbbf24; }
.veh-status.off  { background: rgba(255,255,255,0.2); }
.veh-id   { color: rgba(255,255,255,0.4); width: 72px; font-family: monospace; font-size: 0.68rem; }
.veh-name { color: rgba(255,255,255,0.75); flex: 1; }
.veh-fuel { color: #6de07a; font-weight: 600; }
.veh-fuel.warn { color: #fbbf24; }
.veh-fuel.muted { color: rgba(255,255,255,0.2); }

/* Alerts */
.alerts-card { }
.alert-list { display: flex; flex-direction: column; gap: 7px; }
.alert-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; padding: 7px 10px; border-radius: 7px;
}
.alert-row.amber  { background: rgba(251,191,36,0.1);  color: rgba(255,255,255,0.7); border-left: 2px solid #fbbf24; }
.alert-row.amber svg { color: #fbbf24; flex-shrink: 0; }
.alert-row.red    { background: rgba(239,68,68,0.1);   color: rgba(255,255,255,0.7); border-left: 2px solid #ef4444; }
.alert-row.red svg { color: #ef4444; flex-shrink: 0; }
.alert-row.green  { background: rgba(58,171,71,0.1);   color: rgba(255,255,255,0.5); border-left: 2px solid #6de07a; }
.alert-row.green svg { color: #6de07a; flex-shrink: 0; }

/* ============================================
   PROBLEM / SOLUTION
   ============================================ */
.problem-section { background: var(--bg); }
.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.pain-list { display: flex; flex-direction: column; gap: 12px; }
.pain-item {
  min-height: 104px;
  display: flex; gap: 16px; align-items: center;
  padding: 12px 20px; border-radius: 14px;
  background: var(--bg-alt); border: 1px solid var(--border);
  transition: all 0.25s;
}
.pain-item:hover { border-color: rgba(25,118,210,0.25); background: var(--blue-faint); }
.pain-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pain-item strong { font-size: 0.88rem; color: var(--navy); display: block; margin-bottom: 3px; }
.pain-item span   { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.55; }

.solution-visual {
  margin-top: 108px;
  background: var(--navy); border-radius: var(--radius-2xl); padding: 36px;
  box-shadow: 0 32px 80px rgba(15,30,70,0.2);
  position: relative; overflow: hidden;
}
.solution-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(25,118,210,0.3) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(58,171,71,0.2) 0%, transparent 50%);
}
.solution-visual > * { position: relative; z-index: 1; }

.sv-header { margin-bottom: 24px; }
.sv-badge {
  display: inline-block; background: rgba(58,171,71,0.2); color: #6de07a;
  border: 1px solid rgba(58,171,71,0.3); padding: 5px 14px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 600;
}

.sv-meter-wrap { background: rgba(255,255,255,0.06); border-radius: 14px; padding: 20px; margin-bottom: 20px; }
.sv-meter-label { display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 7px; }
.sv-val-bad  { color: #ef4444; font-weight: 700; }
.sv-val-good { color: #6de07a; font-weight: 700; }
.sv-bar-track { height: 8px; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; }
.sv-bar-fill { height: 100%; border-radius: 100px; }
.sv-bar-fill.bad  { width: 100%; background: linear-gradient(90deg, #ef4444, #f97316); animation: barFill 1.5s ease forwards; }
.sv-bar-fill.good { width: 18%;  background: linear-gradient(90deg, #3aab47, #6de07a); animation: barFill 1.5s 0.3s ease forwards; }
@keyframes barFill { from { width: 0%; } }
.sv-saving-callout {
  display: flex; align-items: center; gap: 10px; margin-top: 16px;
  background: rgba(58,171,71,0.12); border: 1px solid rgba(58,171,71,0.25);
  border-radius: 10px; padding: 12px 14px;
  color: #6de07a; font-size: 0.82rem;
}
.sv-saving-callout strong { color: #fff; }

.sv-ticks { display: flex; flex-direction: column; gap: 10px; }
.sv-tick {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.83rem; color: rgba(255,255,255,0.75);
}
.sv-tick svg { color: #6de07a; flex-shrink: 0; }

/* Responsive */
@media (max-width: 900px) {
  .app-body { grid-template-columns: 1fr; }
  .app-sidebar { display: none; }
  .kpi-row { grid-template-columns: repeat(2,1fr); }
  .app-mid-row { grid-template-columns: 1fr; }
  .ps-grid { grid-template-columns: 1fr; gap: 44px; }
  .pain-list { gap: 18px; }
  .pain-item { padding: 18px 20px; }
  .solution-visual { margin-top: 0; }
}
@media (max-width: 640px) {
  .kpi-row { grid-template-columns: repeat(2,1fr); }
}

/* ============================================
   HOW IT WORKS — Timeline
   ============================================ */
.hiw-section {
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
  position: relative; overflow: hidden;
}
.hiw-section::before {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(25,118,210,0.07) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.hiw-header { text-align: center; margin-bottom: 64px; }
.hiw-header .section-title { font-size: clamp(1.9rem, 3vw, 2.6rem); }

.hiw-timeline {
  display: flex; flex-direction: column; gap: 0;
  max-width: 800px; margin: 0 auto; position: relative;
}
.hiw-timeline::before {
  content: ''; position: absolute;
  left: 27px; top: 28px; bottom: 28px;
  width: 2px; background: linear-gradient(180deg, var(--blue), var(--green));
  border-radius: 1px;
}

.hiw-item {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 28px; padding: 28px 0;
  position: relative;
}

.hiw-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--blue); flex-shrink: 0;
  position: relative; z-index: 2;
  transition: all 0.3s;
}
.hiw-item:hover .hiw-num { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.hiw-item:nth-child(3) .hiw-num,
.hiw-item:nth-child(4) .hiw-num { border-color: var(--green); color: var(--green); }
.hiw-item:nth-child(3):hover .hiw-num,
.hiw-item:nth-child(4):hover .hiw-num { background: var(--green); color: #fff; box-shadow: var(--shadow-green); }

.hiw-content {
  background: var(--glass-light);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 28px 32px;
  box-shadow: var(--shadow-glass);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.hiw-content::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.45) 0%, transparent 60%);
  pointer-events: none; border-radius: inherit;
}
.hiw-item:hover .hiw-content {
  background: rgba(255,255,255,0.88);
  box-shadow: 0 16px 48px rgba(26,47,85,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
  transform: translateX(4px);
}
.hiw-content h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; color: var(--navy); }
.hiw-content p  { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.7; }
.hiw-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 100px;
  margin-bottom: 10px;
}
.hiw-tag.blue  { color: var(--blue);  background: var(--blue-light); }
.hiw-tag.green { color: var(--green); background: var(--green-light); }

/* ============================================
   NUMBERS BAND
   ============================================ */
.numbers-band {
  padding: 80px 0;
  background: var(--grad-hero); position: relative; overflow: hidden;
}
.numbers-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 60%, rgba(25,118,210,0.45) 0%, transparent 45%),
    radial-gradient(circle at 85% 40%, rgba(58,171,71,0.3) 0%, transparent 45%);
}
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,0.08); border-radius: var(--radius-xl);
  overflow: hidden; position: relative; z-index: 2;
}
.number-cell {
  background: rgba(255,255,255,0.06);
  padding: 44px 32px; text-align: center;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.number-cell:last-child { border-right: none; }
.number-cell::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.number-cell:hover {
  background: rgba(255,255,255,0.11);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 0 40px rgba(25,118,210,0.15);
}
.number-val {
  font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #60c8ff, #6de07a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: inline;
}
.number-suffix {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  color: #6de07a; display: inline;
}
.number-label { font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-top: 10px; }
.number-icon  { color: #60c8ff; margin-bottom: 14px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-section {
  background: linear-gradient(160deg, #f0f5fd 0%, #f7f9fc 50%, #eef6ef 100%);
  position: relative; overflow: hidden;
}
.testi-section::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(25,118,210,0.1) 0%, transparent 70%);
  top: -100px; right: 10%; pointer-events: none;
}
.testi-section::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58,171,71,0.09) 0%, transparent 70%);
  bottom: -80px; left: 5%; pointer-events: none;
}
.testi-header  { text-align: center; margin-bottom: 56px; }
.testi-header .section-title { font-size: clamp(1.9rem, 3vw, 2.6rem); }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.testi-card {
  background: var(--glass-light);
  backdrop-filter: blur(40px) saturate(180%) brightness(1.04); -webkit-backdrop-filter: blur(40px) saturate(180%) brightness(1.04);
  border: 0.5px solid rgba(255,255,255,0.75);
  border-radius: var(--radius-xl); padding: 36px 30px;
  box-shadow: var(--shadow-glass);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden;
}
.testi-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.05) 100%);
  pointer-events: none; border-radius: inherit;
}
.testi-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.88);
  box-shadow: 0 24px 64px rgba(26,47,85,0.14), inset 0 1px 0 rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.8);
}
.testi-card::before {
  content: '"'; position: absolute; top: 20px; right: 26px;
  font-size: 6rem; font-family: Georgia, serif; color: var(--blue-light); line-height: 1;
}
.testi-stars { color: #fbbf24; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote { font-size: 0.91rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 26px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-mixed);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: #fff;
}
.testi-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.testi-role { font-size: 0.75rem; color: var(--text-muted); }
.testi-saving {
  position: absolute; bottom: 26px; right: 26px;
  font-size: 0.72rem; font-weight: 700; color: var(--green);
  background: var(--green-light); padding: 4px 12px; border-radius: 100px;
}

/* ============================================
   CTA — Full-bleed card
   ============================================ */
.cta-section { background: linear-gradient(180deg, #f7f9fc 0%, #eef3fb 100%); padding: 80px 0; }
.cta-wrap {
  background: var(--grad-hero); border-radius: var(--radius-2xl);
  padding: 72px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; overflow: hidden;
  box-shadow: 0 32px 80px rgba(15,30,61,0.35), 0 0 0 1px rgba(255,255,255,0.07);
}
.cta-wrap::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 5% 50%, rgba(25,118,210,0.5) 0%, transparent 40%),
    radial-gradient(circle at 95% 50%, rgba(58,171,71,0.35) 0%, transparent 40%);
}
.cta-wrap::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 30%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.25) 70%, transparent 100%);
}
.cta-left { position: relative; z-index: 2; }
.cta-pill {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #6de07a;
  background: rgba(109,224,122,0.12); border: 1px solid rgba(109,224,122,0.25);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 18px;
}
.cta-title { font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 700; color: #fff; margin-bottom: 14px; }
.cta-sub   { font-size: 0.95rem; color: rgba(255,255,255,0.65); margin-bottom: 32px; line-height: 1.75; }

.cta-form { display: flex; flex-direction: column; gap: 12px; }
.cta-input {
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md); padding: 14px 16px;
  color: #fff; font-size: 0.9rem; font-family: var(--font-body);
  outline: none; transition: all 0.2s;
}
.cta-input::placeholder { color: rgba(255,255,255,0.35); }
.cta-input:focus { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.13); }
.cta-fine { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 4px; }
.cta-fine a { color: rgba(255,255,255,0.6); text-decoration: underline; }

.cta-right { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 14px; }
.cta-benefit {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg); padding: 20px 22px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.cta-benefit::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
}
.cta-benefit:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.25);
}
.cta-benefit-icon {
  width: 42px; height: 42px; border-radius: var(--radius-md); flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.cta-benefit-icon svg { color: #60c8ff; }
.cta-benefit-icon.green svg { color: #6de07a; }
.cta-benefit-num   { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: #fff; }
.cta-benefit-label { font-size: 0.79rem; color: rgba(255,255,255,0.5); margin-top: 1px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy-2); padding: 60px 0 30px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.75; margin: 14px 0 20px; max-width: 240px; }
.social-links { display: flex; gap: 9px; }
.social-links a {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); text-decoration: none; transition: all 0.2s;
}
.social-links a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.footer-col h4 {
  font-size: 0.77rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.84rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.28); flex-wrap: wrap; gap: 10px;
}

/* ============================================
   REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; transition-delay: var(--d,0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner      { grid-template-columns: 1fr; gap: 48px; }
  .hero-left       { align-items: center; text-align: center; }
  .hero-sub        { max-width: 560px; }
  .hero-ctas       { justify-content: center; }
  .hero-proof      { justify-content: center; }
  .hero-stat-row   { grid-template-columns: repeat(2, 1fr); }
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid    { grid-template-columns: repeat(2, 1fr); }
  .testi-grid      { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .cta-wrap        { grid-template-columns: 1fr; gap: 40px; padding: 44px; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section         { padding: 72px 0; }
  .features-grid   { grid-template-columns: 1fr; background: transparent; border-radius: 0; gap: 12px; }
  .feature-item    { border-radius: var(--radius-lg); border: 1px solid var(--border); }
  .numbers-grid    { grid-template-columns: 1fr 1fr; }
  .hiw-timeline::before { display: none; }
  .hiw-item        { grid-template-columns: 44px 1fr; gap: 16px; }
  .hiw-num         { width: 44px; height: 44px; font-size: 0.9rem; }
  .cta-wrap        { padding: 28px 22px; border-radius: var(--radius-xl); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand    { grid-column: span 2; }
}
