/* ================================================================
   BUSINESS PAGE — Konvoyage Mobile Workforce Tracking
   Extracted from inline styles, redesigned Feb 2026
   ================================================================ */

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

:root {
  --bg: #f6f8fb;
  --surface: #fff;
  --surface-border: rgba(0,212,255,.10);
  --cyan: #00d4ff;
  --cyan-hover: #33dfff;
  --cyan-text: #0088bb;
  --blue-deep: #0099cc;
  --dark-base: #0a0e17;
  --dark-surface: #111827;
  --dark-border: rgba(0,212,255,.15);
  --text: #0a0e17;
  --text-body: #334155;
  --text-muted: #8892a4;
  --hover-glow: rgba(0,212,255,.06);
  --card-shadow: 0 1px 3px rgba(0,0,0,.04), 0 4px 12px rgba(0,0,0,.03);
  --card-shadow-hover: 0 4px 16px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
  --card-shadow-elevated: 0 8px 30px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
body.loaded { opacity: 1; transform: translateY(0); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lexend', sans-serif;
  line-height: 1.15;
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: .015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* === ANIMATIONS === */
@keyframes gpsPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--cyan); }
  50% { opacity: .6; transform: scale(.7); box-shadow: 0 0 4px var(--cyan); }
}
@keyframes signalRing {
  0% { transform: translate(-50%,-50%) scale(.8); opacity: .12; }
  100% { transform: translate(-50%,-50%) scale(3); opacity: 0; }
}
@keyframes signalNodeRing {
  0% { transform: translate(-50%,-50%) scale(.6); opacity: .4; }
  100% { transform: translate(-50%,-50%) scale(1.3); opacity: 0; }
}
@keyframes dotTrail {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -28; }
}

.gps-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  display: inline-block;
  animation: gpsPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Scroll reveal — fleet marketing: subtle & fast */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === UTILITY === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

.section-label {
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--cyan-text);
  margin-bottom: .75rem;
}
.section-label-light { color: var(--cyan); }

.section-heading {
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  margin-bottom: 1.25rem;
  color: var(--text);
}
.section-heading-light { color: #fff; }

.section-subtext {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.section-subtext-light { color: #94a3b8; }

section { padding: 7rem 0; }
.section-alt { background: var(--surface); }
.text-center { text-align: center; }

/* === SIGNAL CONNECTORS === */
.signal-connector { display: flex; flex-direction: column; align-items: center; }
.signal-line {
  width: 1px; height: 48px;
  background: repeating-linear-gradient(to bottom, rgba(0,212,255,.12) 0px, rgba(0,212,255,.12) 4px, transparent 4px, transparent 8px);
}
.signal-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: gpsPulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(0,212,255,.3);
}

/* Signal Node */
.signal-node-wrap { display: flex; flex-direction: column; align-items: center; }
.signal-node {
  width: 12px; height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 10px rgba(0,212,255,.4);
}
.signal-node::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 28px; height: 28px;
  border: 1px solid rgba(0,212,255,.3);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  animation: signalNodeRing 3s ease-out infinite;
}
.signal-node::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 44px; height: 44px;
  border: 1px solid rgba(0,212,255,.15);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  animation: signalNodeRing 3s ease-out infinite 1s;
}

/* Signal Fork */
.signal-fork { display: flex; flex-direction: column; align-items: center; }
.signal-fork-svg { margin-top: -1px; }

/* Signal Converge */
.signal-converge { display: flex; flex-direction: column; align-items: center; }
.signal-converge-svg { margin-bottom: -1px; }

/* Section Label Signal */
.section-label-signal { display: inline-flex; align-items: center; gap: 8px; }
.section-label-signal::before {
  content: ''; width: 5px; height: 5px;
  background: var(--cyan); border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 4px rgba(0,212,255,.3);
}
.section-label-signal::after {
  content: ''; width: 24px; height: 1px; flex-shrink: 0;
  background: repeating-linear-gradient(to right, rgba(0,212,255,.25) 0px, rgba(0,212,255,.25) 3px, transparent 3px, transparent 6px);
}

/* Metric connector dots */
.metric-item + .metric-item::before {
  content: ''; width: 4px; height: 4px;
  background: rgba(0,212,255,.2); border-radius: 50%;
  position: absolute; left: -1rem; top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .signal-fork-svg, .signal-converge-svg { display: none; }
  .metric-item + .metric-item::before { display: none; }
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: .9rem;
  letter-spacing: .4px; border: none; cursor: pointer;
  transition: all .2s ease; text-decoration: none; border-radius: 8px;
}
.btn-primary {
  background: var(--cyan); color: var(--dark-base);
  padding: .75rem 1.8rem;
  box-shadow: 0 2px 12px rgba(0,212,255,.15);
}
.btn-primary:hover {
  background: var(--cyan-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,212,255,.25);
}
.btn-primary-lg {
  background: var(--cyan); color: var(--dark-base);
  padding: .95rem 2.4rem; font-size: .95rem;
  box-shadow: 0 4px 24px rgba(0,212,255,.2);
}
.btn-primary-lg:hover {
  background: var(--cyan-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(0,212,255,.3);
}
.btn-ghost {
  background: transparent; color: var(--cyan-text);
  padding: .75rem 1.8rem; border: 1px solid var(--cyan);
}
.btn-ghost:hover { background: rgba(0,212,255,.06); color: var(--blue-deep); }
.btn-ghost-light {
  background: transparent; color: #fff;
  padding: .95rem 2.4rem; font-size: .95rem;
  border: 1px solid rgba(255,255,255,.3);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn-full { width: 100%; }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--card-shadow);
  transition: box-shadow .3s ease;
}
.navbar.scrolled { box-shadow: var(--card-shadow), 0 1px 0 #e8ecf1; }
.navbar-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 1.5rem;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Lexend', sans-serif; font-weight: 800;
  font-size: 1.15rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text);
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: .85rem;
  color: var(--text-muted); transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan-text); }
.nav-right { display: flex; align-items: center; gap: .75rem; }
.nav-btn-signin {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: .85rem;
  color: var(--text-muted); background: transparent;
  border: 1px solid var(--cyan); padding: .45rem 1.1rem;
  border-radius: 6px; cursor: pointer; transition: all .2s; text-decoration: none;
}
.nav-btn-signin:hover { background: rgba(0,212,255,.06); color: var(--cyan-text); }
.nav-btn-cta {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: .85rem;
  color: var(--dark-base); background: var(--cyan);
  padding: .45rem 1.1rem; border-radius: 6px;
  border: none; cursor: pointer; transition: all .2s; text-decoration: none;
}
.nav-btn-cta:hover { background: var(--cyan-hover); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 1px; transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(255,255,255,.98); backdrop-filter: blur(16px);
  box-shadow: var(--card-shadow); padding: 1.5rem; z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; font-family: 'Lexend', sans-serif; font-weight: 600;
  font-size: 1rem; color: var(--text-muted); padding: .75rem 0;
  border-bottom: 1px solid #f0f2f5; transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--cyan-text); }
.mobile-nav-btns {
  display: flex; gap: .75rem; margin-top: 1rem;
  padding-top: 1rem; border-top: 1px solid #f0f2f5;
}
.mobile-nav-btns a { border-bottom: none; padding: 0; }
@media (max-width: 900px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
}

/* === HERO (dark) === */
.hero {
  padding: 10rem 0 8rem;
  background: var(--dark-base);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 70%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(0,212,255,.03), transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(10,14,23,.6));
  pointer-events: none; z-index: 2;
}
/* Topographic contour pattern instead of grid */
.hero-topo-bg {
  position: absolute; inset: 0; opacity: .03; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='600' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 300q150-100 300 0t300 0' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='1'/%3E%3Cpath d='M0 350q150-80 300 20t300-20' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='1'/%3E%3Cpath d='M0 250q150-120 300-20t300 20' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='1'/%3E%3Cpath d='M0 200q150-60 300 40t300-40' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='1'/%3E%3Cpath d='M0 400q150-40 300-10t300 10' fill='none' stroke='rgba(255,255,255,0.25)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 600px 600px;
}
.hero-inner {
  display: flex; align-items: center; gap: 4rem;
  position: relative; z-index: 3;
}
.hero-text { flex: 0 0 45%; }
.hero-tagline {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: .78rem;
  text-transform: uppercase; letter-spacing: 2.5px; color: var(--cyan);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-weight: 800; font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.08; margin-bottom: 1.5rem; color: #fff;
}
.hero-headline em { font-style: normal; color: var(--cyan); }
.hero-sub {
  font-size: 1.05rem; color: #94a3b8; line-height: 1.75;
  margin-bottom: 2.25rem; max-width: 480px;
}
.hero-ctas { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }

/* Hero data strip (replaces trust badges) */
.hero-data-strip { display: flex; align-items: center; gap: .6rem; flex-wrap: nowrap; }
.hero-data-item {
  color: #64748b; font-family: 'Lexend', sans-serif; font-weight: 600;
  font-size: .62rem; letter-spacing: .8px; text-transform: uppercase; white-space: nowrap;
}
.hero-data-divider { width: 1px; height: 12px; background: rgba(255,255,255,.15); flex-shrink: 0; }
@media (max-width: 900px) {
  .hero-data-strip { flex-wrap: wrap; justify-content: center; }
}

/* Hero dashboard mockup */
.hero-visual { flex: 0 0 55%; position: relative; }
.dash-mockup {
  width: 560px; max-width: 100%;
  background: var(--dark-surface);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.06);
  overflow: hidden;
  /* Perspective tilt — NO float animation */
  transform: perspective(1200px) rotateY(-4deg);
  /* Overflow right + overlap next section */
  margin-right: -80px;
  margin-bottom: -60px;
  position: relative;
  z-index: 5;
}
.dash-titlebar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dash-titlebar-dot { width: 8px; height: 8px; border-radius: 50%; }
.dash-titlebar-text {
  margin-left: auto;
  font-family: 'Lexend', sans-serif; font-size: .65rem;
  color: #64748b; letter-spacing: .5px;
}
.dash-body { display: flex; height: 340px; }
.dash-sidebar {
  width: 48px; background: rgba(0,0,0,.3);
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 0; gap: 10px; flex-shrink: 0;
}
.dash-sidebar-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
}
.dash-sidebar-icon.active { background: rgba(0,212,255,.2); }
.dash-sidebar-icon svg { width: 14px; height: 14px; }
.dash-content { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.dash-kpis {
  display: flex; gap: 0;
  border-bottom: 1px solid rgba(255,255,255,.06); flex-shrink: 0;
}
.dash-kpi {
  flex: 1; padding: 10px 14px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.dash-kpi:last-child { border-right: none; }
.dash-kpi-val {
  font-family: 'Lexend', sans-serif; font-weight: 800;
  font-size: 1.15rem; color: #fff;
}
.dash-kpi-label {
  font-size: .6rem; color: #64748b;
  text-transform: uppercase; letter-spacing: .5px;
}
.dash-map {
  flex: 1; background: #0d1525;
  position: relative; overflow: hidden;
}
.dash-map::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,212,255,.015) 1px, transparent 1px),
              linear-gradient(to bottom, rgba(0,212,255,.015) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  box-shadow: 0 0 8px rgba(0,0,0,.3);
}
.map-dot-1 { background: var(--cyan); top: 28%; left: 32%; animation: gpsPulse 2s ease-in-out infinite; }
.map-dot-2 { background: #a78bfa; top: 52%; left: 58%; }
.map-dot-3 { background: #34d399; top: 38%; left: 72%; }
.map-dot-4 { background: #f0a0c8; top: 62%; left: 22%; }
.map-dot-5 { background: var(--cyan); top: 18%; left: 55%; opacity: .7; }
.map-dot-6 { background: #34d399; top: 70%; left: 45%; opacity: .7; }
.map-route { position: absolute; inset: 0; pointer-events: none; }
.dash-list { flex-shrink: 0; border-top: 1px solid rgba(255,255,255,.06); }
.dash-list-row {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-bottom: 1px solid rgba(255,255,255,.03);
}
.dash-list-row:last-child { border-bottom: none; }
.dash-list-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dash-list-line { height: 4px; border-radius: 2px; background: rgba(255,255,255,.08); }
.dash-list-lines { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.dash-list-status {
  font-family: 'Lexend', sans-serif; font-size: .55rem; font-weight: 600;
  padding: 2px 6px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .3px;
}
.status-online { background: rgba(52,199,89,.15); color: #34c759; }
.status-moving { background: rgba(0,212,255,.15); color: var(--cyan); }

/* Hero LIVE pill — positioned overlapping top-right of mockup */
.hero-live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  position: absolute;
  top: -16px; right: 16px;
  z-index: 10;
}
.live-dot {
  width: 6px; height: 6px; background: #34c759;
  border-radius: 50%; animation: gpsPulse 2s ease-in-out infinite;
}
.live-label {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: .68rem;
  color: #34c759; letter-spacing: .5px; text-transform: uppercase;
}
.live-count { color: #64748b; font-size: .75rem; }

@media (max-width: 900px) {
  .hero { padding: 8rem 0 4rem; }
  .hero-inner { flex-direction: column; gap: 3rem; }
  .hero-text, .hero-visual { flex: none; width: 100%; }
  .dash-mockup {
    width: 100%; max-width: 480px;
    margin-right: 0; margin-bottom: 0;
    transform: none;
  }
  .hero-live-pill { position: relative; top: auto; right: auto; float: right; margin-top: -12px; }
}

/* === DATA STRIP (replaces social proof) === */
.data-strip {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e8ecf1;
  position: relative;
  z-index: 4;
}
.data-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.data-strip-item {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: .75rem;
  text-transform: uppercase; letter-spacing: 2.5px; color: var(--text-muted);
}
.data-strip-sep { width: 1px; height: 14px; background: #d0d5dd; }
@media (max-width: 600px) {
  .data-strip-sep { display: none; }
  .data-strip-inner { gap: .75rem; }
}

/* === PROBLEM — Alert Card === */
.problem { padding: 7rem 0; background: var(--surface); }
.problem-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2.5rem;
}
.problem-card {
  background: var(--dark-base); border-radius: 16px;
  padding: 2rem 1.75rem; text-align: center;
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.04);
  transition: transform .25s, box-shadow .25s;
}
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #dc2626, #ef4444);
}
.problem-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(220,38,38,.1); }
.problem-card-icon {
  width: 40px; height: 40px; margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: rgba(220,38,38,.1);
}
.problem-card-icon svg { width: 20px; height: 20px; color: #ef4444; }
.problem-card-num {
  font-family: 'Lexend', sans-serif; font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: #fff; line-height: 1; margin-bottom: .5rem;
}
.problem-card-label {
  font-family: 'Lexend', sans-serif; font-weight: 700;
  font-size: .85rem; color: #e2e8f0; margin-bottom: .35rem;
}
.problem-card-sub {
  font-size: .78rem; color: #64748b; line-height: 1.4;
}
.problem-bottom {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-top: 2rem; padding-top: 1.5rem;
}
.problem-statement {
  font-family: 'Lexend', sans-serif; font-weight: 700;
  font-size: 1.05rem; color: var(--text);
}
.problem-link {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: .85rem;
  color: var(--cyan-text); transition: color .2s;
}
.problem-link:hover { color: var(--cyan); }
@media (max-width: 700px) {
  .problem-cards { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
  .problem-bottom { flex-direction: column; gap: .75rem; text-align: center; }
}

/* === FEATURES — Tiered === */
.features { padding: 7rem 0; }
.feature-heroes { margin-top: 2.5rem; }
.feature-hero {
  background: var(--surface); border-radius: 16px;
  padding: 2rem 2.5rem; box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,.03);
  border-left: 3px solid var(--cyan);
  display: flex; align-items: center; gap: 2.5rem;
  transition: transform .2s, box-shadow .2s;
}
.feature-hero:hover { transform: translateY(-2px); box-shadow: var(--card-shadow-hover); }
.feature-hero + .feature-hero { margin-top: 1.25rem; }
.feature-hero-text { flex: 1; }
.feature-hero-text h3 { font-weight: 700; font-size: 1.15rem; margin-bottom: .5rem; }
.feature-hero-text p { font-size: .9rem; color: var(--text-body); line-height: 1.65; }
.feature-hero-visual { flex: 0 0 38%; display: flex; justify-content: center; }

.feature-pills {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem;
  justify-content: center;
}
.feature-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--surface); border: 1px solid #e8ecf1;
  border-radius: 999px; padding: .6rem 1.25rem;
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: .82rem;
  color: var(--text-body); transition: all .2s; cursor: default;
}
.feature-pill:hover {
  background: rgba(0,212,255,.04); border-color: var(--cyan); color: var(--cyan-text);
}
.feature-pill svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--cyan-text); }

@media (max-width: 900px) {
  .feature-hero { flex-direction: column; gap: 1.5rem; }
  .feature-hero-visual { flex: none; width: 100%; }
}

/* === DASHBOARD CHROME WRAP === */
.dash-chrome {
  background: var(--dark-surface); border-radius: 16px;
  box-shadow: var(--card-shadow-elevated); overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.dash-chrome-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dash-chrome-dot { width: 8px; height: 8px; border-radius: 50%; }
.dash-chrome-label {
  margin-left: auto;
  font-family: 'Lexend', sans-serif; font-size: .65rem;
  color: #64748b; letter-spacing: .5px; text-transform: uppercase;
}
.dash-chrome-body { padding: 1.5rem; }

/* === SHOWCASE === */
.showcase { padding: 7rem 0; background: var(--surface); }
.showcase-row {
  display: flex; align-items: center; gap: 4rem; margin-top: 3.5rem;
}
.showcase-row + .showcase-row { margin-top: 5rem; }
.showcase-row-reverse { flex-direction: row-reverse; }
.showcase-text { flex: 1; }
.showcase-text h3 { font-weight: 700; font-size: 1.5rem; margin-bottom: .75rem; }
.showcase-text p { font-size: .95rem; color: var(--text-body); line-height: 1.7; margin-bottom: 1.25rem; }
.showcase-bullets { list-style: none; padding: 0; }
.showcase-bullets li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .92rem; color: var(--text-body); line-height: 1.6; margin-bottom: .6rem;
}
.showcase-check { flex-shrink: 0; margin-top: 3px; }
.showcase-visual { flex: 1; }

/* Scorecard */
.scorecard {
  background: var(--surface); border-radius: 16px;
  box-shadow: var(--card-shadow-elevated); padding: 2rem;
  border: 1px solid rgba(0,0,0,.03);
}
.score-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.score-ring { position: relative; width: 80px; height: 80px; flex-shrink: 0; }
.score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-ring-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.score-ring-val {
  font-family: 'Lexend', sans-serif; font-weight: 800; font-size: 1.3rem;
  color: var(--text); line-height: 1;
}
.score-ring-sub { font-size: .6rem; color: var(--text-muted); }
.score-info h4 { font-weight: 700; font-size: 1rem; margin-bottom: .25rem; }
.score-info p { font-size: .78rem; color: var(--text-muted); }
.score-bars { display: flex; flex-direction: column; gap: .75rem; }
.score-bar-item { display: flex; align-items: center; gap: .75rem; }
.score-bar-label {
  font-size: .78rem; color: var(--text-body); width: 80px; flex-shrink: 0; font-weight: 500;
}
.score-bar-track { flex: 1; height: 8px; background: #f0f2f5; border-radius: 4px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 4px; }
.score-bar-val {
  font-family: 'Lexend', sans-serif; font-size: .75rem; font-weight: 700;
  color: var(--text); width: 30px; text-align: right; flex-shrink: 0;
}

/* Report card */
.report-card {
  background: var(--surface); border-radius: 16px;
  box-shadow: var(--card-shadow-elevated); padding: 2rem;
  border: 1px solid rgba(0,0,0,.03);
}
.report-card h4 { font-weight: 700; font-size: .9rem; margin-bottom: 1.25rem; }
.report-stats { display: flex; gap: 1.5rem; margin-bottom: 1.25rem; }
.report-stat { text-align: center; }
.report-stat-val {
  font-family: 'Lexend', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--text);
}
.report-stat-label {
  font-size: .65rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .5px;
}
.report-bars {
  display: flex; align-items: flex-end; gap: 10px;
  height: 80px; margin-bottom: .5rem; padding: 0 .5rem;
}
.report-bar { flex: 1; border-radius: 4px 4px 0 0; min-width: 0; }
.report-bar-labels { display: flex; gap: 10px; padding: 0 .5rem; margin-bottom: 1.25rem; }
.report-bar-labels span { flex: 1; text-align: center; font-size: .65rem; color: var(--text-muted); }
.report-export {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: .75rem;
  color: var(--cyan-text); background: rgba(0,212,255,.06);
  border: 1px solid rgba(0,212,255,.2); border-radius: 6px;
  padding: .4rem .8rem; cursor: pointer;
}

/* Dispatcher */
.dispatcher {
  background: var(--surface); border-radius: 16px;
  box-shadow: var(--card-shadow-elevated); padding: 1.5rem;
  border: 1px solid rgba(0,0,0,.03);
}
.dispatcher h4 { font-weight: 700; font-size: .9rem; margin-bottom: 1rem; }
.disp-route {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 0; border-bottom: 1px solid #f0f2f5;
}
.disp-route:last-child { border-bottom: none; }
.disp-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.disp-info { flex: 1; min-width: 0; }
.disp-name {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: .82rem; color: var(--text);
}
.disp-path {
  font-size: .72rem; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.disp-progress { width: 100px; flex-shrink: 0; display: flex; align-items: center; gap: 6px; }
.disp-bar-track { flex: 1; height: 6px; background: #f0f2f5; border-radius: 3px; overflow: hidden; }
.disp-bar-fill { height: 100%; border-radius: 3px; background: var(--cyan); }
.disp-pct {
  font-family: 'Lexend', sans-serif; font-size: .72rem; font-weight: 700;
  color: var(--text); width: 28px; text-align: right;
}

@media (max-width: 900px) {
  .showcase-row, .showcase-row-reverse { flex-direction: column; gap: 2.5rem; }
}

/* === SHOWCASE DARK BAND (Reports + Metrics merged) === */
.showcase-dark {
  padding: 5rem 0;
  background: var(--dark-base);
  position: relative;
  overflow: hidden;
}
.showcase-dark::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,212,255,.04), transparent 60%);
  pointer-events: none;
}
.showcase-dark-inner {
  display: flex; align-items: center; gap: 4rem;
  position: relative; z-index: 1;
}
.showcase-dark-text { flex: 1; }
.showcase-dark-text h3 { color: #fff; font-weight: 700; font-size: 1.5rem; margin-bottom: .75rem; }
.showcase-dark-text p { color: #94a3b8; font-size: .95rem; line-height: 1.7; margin-bottom: 1.25rem; }
.showcase-dark-visual { flex: 1; }
/* Dark showcase bullets override */
.showcase-dark .showcase-bullets li { color: #94a3b8; }

/* Metrics row inside dark band */
.metrics-grid {
  display: flex; justify-content: space-around; text-align: center;
  gap: 2rem; position: relative; z-index: 1;
}
.metric-item { flex: 1; position: relative; }
.metric-value {
  font-family: 'Lexend', sans-serif; font-weight: 800; font-size: 2.4rem; color: #fff;
}
.metric-value .gps-dot {
  width: 5px; height: 5px; vertical-align: middle; margin-right: 4px;
  box-shadow: 0 0 4px var(--cyan);
}
.metric-label { font-size: .82rem; color: #64748b; margin-top: .25rem; }

@media (max-width: 900px) {
  .showcase-dark-inner { flex-direction: column; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* === HOW IT WORKS — Vertical Timeline + Visual === */
.how-it-works { padding: 7rem 0; }
.how-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  margin-top: 3rem; align-items: start;
}
.timeline { position: relative; padding-left: 60px; }
.timeline::before {
  content: ''; position: absolute; left: 19px; top: 0; bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(to bottom, rgba(0,212,255,.2) 0px, rgba(0,212,255,.2) 4px, transparent 4px, transparent 8px);
}
.timeline-step {
  display: flex; align-items: flex-start; gap: 1.5rem;
  margin-bottom: 2rem; position: relative;
}
.timeline-node {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,212,255,.08); border: 2px solid var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lexend', sans-serif; font-weight: 800; font-size: .95rem;
  color: var(--cyan-text); flex-shrink: 0;
  position: absolute; left: -60px; z-index: 1;
  background: var(--bg);
}
.timeline-card {
  background: var(--surface); border-radius: 12px;
  padding: 1.5rem 2rem; box-shadow: var(--card-shadow); flex: 1;
}
.timeline-card h3 { font-weight: 700; font-size: 1.05rem; margin-bottom: .5rem; }
.timeline-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* Phone mockup visual on right */
.how-visual { display: flex; justify-content: center; align-items: center; }
.phone-mockup {
  width: 260px; background: var(--dark-base); border-radius: 36px;
  padding: 12px; box-shadow: var(--card-shadow-elevated), 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
}
.phone-notch {
  width: 100px; height: 22px; background: var(--dark-base);
  border-radius: 0 0 14px 14px; margin: 0 auto;
  position: relative; z-index: 2;
}
.phone-screen {
  background: #111827; border-radius: 24px; overflow: hidden;
  min-height: 400px; position: relative;
}
.phone-status-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 16px 4px; font-size: .6rem; color: #64748b;
  font-family: 'Lexend', sans-serif; font-weight: 600;
}
.phone-app-header {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.phone-app-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
  animation: gpsPulse 2s ease-in-out infinite;
}
.phone-app-name {
  font-family: 'Lexend', sans-serif; font-weight: 800;
  font-size: .7rem; color: #fff; letter-spacing: 1px; text-transform: uppercase;
}
.phone-map-area {
  height: 180px; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(0,212,255,.06), transparent 60%),
    linear-gradient(160deg, #111827, #0d1420);
}
.phone-map-grid {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: .06;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.3) 0px, rgba(255,255,255,.3) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.3) 0px, rgba(255,255,255,.3) 1px, transparent 1px, transparent 28px);
}
.phone-map-route {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
}
.phone-map-dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
}
.phone-map-dot::after {
  content: ''; position: absolute; top: -4px; left: -4px; right: -4px; bottom: -4px; border-radius: 50%;
  border: 1.5px solid; opacity: .3;
  animation: phoneDotRing 2.5s ease-out infinite;
}
.phone-map-dot-1 { background: #00d4ff; top: 35%; left: 30%; }
.phone-map-dot-1::after { border-color: #00d4ff; }
.phone-map-dot-2 { background: #a78bfa; top: 55%; left: 65%; width: 8px; height: 8px; }
.phone-map-dot-2::after { border-color: #a78bfa; animation-delay: .8s; }
.phone-map-dot-3 { background: #34d399; top: 25%; left: 72%; width: 7px; height: 7px; }
.phone-map-dot-3::after { border-color: #34d399; animation-delay: 1.6s; }
@keyframes phoneDotRing {
  0% { transform: scale(.8); opacity: .4; }
  100% { transform: scale(2); opacity: 0; }
}
.phone-nav-card {
  margin: 12px; background: rgba(0,212,255,.06); border: 1px solid rgba(0,212,255,.1);
  border-radius: 12px; padding: 12px 14px;
}
.phone-nav-label {
  font-family: 'Lexend', sans-serif; font-weight: 700;
  font-size: .6rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--cyan); margin-bottom: 6px;
}
.phone-nav-dest {
  font-family: 'Lexend', sans-serif; font-weight: 600;
  font-size: .82rem; color: #fff; margin-bottom: 4px;
}
.phone-nav-eta {
  font-size: .7rem; color: #64748b;
}
.phone-nav-eta strong { color: var(--cyan); font-weight: 600; }
.phone-bottom-bar {
  display: flex; justify-content: space-around; align-items: center;
  padding: 10px 16px; border-top: 1px solid rgba(255,255,255,.06);
}
.phone-bottom-icon {
  width: 20px; height: 20px; border-radius: 4px;
  background: rgba(255,255,255,.06);
}
.phone-bottom-icon.active { background: rgba(0,212,255,.15); }
.phone-home-bar {
  width: 100px; height: 4px; background: rgba(255,255,255,.15);
  border-radius: 2px; margin: 6px auto 4px;
}

@media (max-width: 900px) {
  .how-layout { grid-template-columns: 1fr; gap: 3rem; }
  .how-visual { order: -1; }
  .phone-mockup { width: 220px; }
  .phone-screen { min-height: 340px; }
  .phone-map-area { height: 140px; }
}

.how-integrations {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  margin-top: 2rem; justify-content: center;
}
.how-integrations-label { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.how-int-pill {
  font-size: .75rem; color: var(--text-muted); background: var(--bg);
  border: 1px solid #e8ecf1; border-radius: 999px; padding: .3rem .75rem;
}

/* === USE CASES — Responsive Grid (was Scroll Strip) === */
.use-cases { padding: 7rem 0; }
.use-case-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.use-case-card {
  background: var(--surface); border-radius: 16px;
  padding: 1.75rem; box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,.03);
  transition: transform .2s, box-shadow .2s;
}
.use-case-card:hover { transform: translateY(-2px); box-shadow: var(--card-shadow-hover); }
.use-case-card-primary {
  grid-column: span 1;
  border-left: 3px solid var(--cyan);
}
.use-case-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0,212,255,.07);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.use-case-icon svg { width: 24px; height: 24px; color: var(--cyan-text); }
.use-case-card h3 { font-weight: 700; font-size: 1rem; margin-bottom: .5rem; }
.use-case-card p { font-size: .88rem; color: var(--text-body); line-height: 1.6; }
.use-case-tagline {
  text-align: center; margin-top: 1.5rem;
  font-size: .92rem; color: var(--text-muted); max-width: 600px; margin-left: auto; margin-right: auto;
}
@media (max-width: 900px) {
  .use-case-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .use-case-strip { grid-template-columns: 1fr; }
}

/* === SECURITY === */
.security { padding: 7rem 0; background: var(--surface); }
.security-cols {
  display: flex; gap: 4rem; margin-top: 2.5rem; align-items: flex-start;
}
.security-checks { flex: 1; list-style: none; padding: 0; }
.security-checks li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .95rem; color: var(--text-body); line-height: 1.6;
  margin-bottom: 1rem; padding: .5rem; border-radius: 8px;
  transition: background .2s;
}
.security-checks li:hover { background: var(--hover-glow); }
.security-checks li strong { color: var(--text); font-weight: 600; }
.security-check-icon { flex-shrink: 0; margin-top: 3px; }
.security-visual {
  flex: 0 0 340px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
/* Layered security badge */
.security-badge-wrap {
  width: 180px; height: 180px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.security-badge-outer {
  position: absolute; inset: 0;
  border: 2px dashed rgba(0,212,255,.2);
  border-radius: 50%;
}
.security-badge-inner {
  position: absolute; inset: 20px;
  border: 2px solid rgba(0,212,255,.3);
  border-radius: 50%;
}
.security-badge-icon {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
}
.security-badge-icon svg { width: 48px; height: 48px; color: var(--cyan-text); }
.security-badge-text {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: .6rem;
  color: var(--cyan-text); letter-spacing: 2px; text-transform: uppercase;
}
.security-badges {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
  margin-top: 1.5rem;
}
.security-badge {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: .7rem;
  letter-spacing: .3px; padding: .5rem .8rem; border-radius: 6px;
  background: rgba(0,212,255,.06); color: var(--cyan-text);
  border: 1px solid rgba(0,212,255,.15); text-align: center;
}
@media (max-width: 900px) {
  .security-cols { flex-direction: column; gap: 2rem; }
  .security-visual { flex: none; width: 100%; }
}

/* === ROI CALCULATOR (replaces Testimonials) === */
.roi-calc { padding: 7rem 0; background: var(--bg); }
.roi-calc-inner {
  display: flex; gap: 3rem; margin-top: 2.5rem; align-items: flex-start;
}
.roi-inputs { flex: 1; }
.roi-results { flex: 1; }

.roi-slider-group { margin-bottom: 2rem; }
.roi-slider-label {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: .75rem;
}
.roi-slider-label span {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: .88rem;
  color: var(--text);
}
.roi-slider-val {
  font-family: 'Lexend', sans-serif; font-weight: 800; font-size: 1.1rem;
  color: var(--cyan-text);
}
.roi-slider {
  width: 100%; height: 6px; -webkit-appearance: none; appearance: none;
  background: #e0e4ea; border-radius: 3px; outline: none;
  cursor: pointer;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px;
  border-radius: 50%; background: var(--cyan); cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,212,255,.3);
}
.roi-slider::-moz-range-thumb {
  width: 20px; height: 20px; border: none;
  border-radius: 50%; background: var(--cyan); cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,212,255,.3);
}

.roi-select {
  width: 100%; font-family: 'Libre Franklin', sans-serif; font-size: .92rem;
  color: var(--text); background: var(--surface);
  border: 1px solid #e0e4ea; border-radius: 8px;
  padding: .65rem .9rem; outline: none;
  transition: border-color .2s;
}
.roi-select:focus { border-color: var(--cyan); }

.roi-result-card {
  background: var(--surface); border-radius: 16px; padding: 1.5rem 2rem;
  box-shadow: var(--card-shadow); border: 1px solid rgba(0,0,0,.03);
  margin-bottom: 1rem;
}
.roi-result-card h4 {
  font-size: .78rem; color: var(--text-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: .5rem;
}
.roi-result-val {
  font-family: 'Lexend', sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--text);
}
.roi-result-val .roi-accent { color: var(--cyan-text); }
.roi-disclaimer {
  font-size: .78rem; color: var(--text-muted); margin-top: 1rem;
  line-height: 1.5; font-style: italic;
}

@media (max-width: 900px) {
  .roi-calc-inner { flex-direction: column; }
}

/* === COMPARISON === */
.comparison { padding: 7rem 0; background: var(--surface); }
.comparison-table {
  margin-top: 2.5rem; max-width: 820px;
  margin-left: auto; margin-right: auto;
  background: var(--surface); border-radius: 16px;
  box-shadow: var(--card-shadow-elevated); overflow: hidden;
  border: 1px solid rgba(0,0,0,.04);
}
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table thead th {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .5px;
  padding: 1.15rem 1.25rem; text-align: center;
  border-bottom: 2px solid #e8ecf1;
}
.comparison-table thead th:first-child { color: var(--text-muted); text-align: left; font-weight: 600; }
.comparison-table thead th:nth-child(2) {
  color: #fff;
  background: var(--cyan-text);
  border-left: none;
  position: relative;
}
.comparison-table thead th:nth-child(3) { color: var(--text-muted); font-weight: 600; }
.comparison-table tbody tr {
  transition: background .15s;
}
.comparison-table tbody tr:hover {
  background: rgba(0,212,255,.02);
}
.comparison-table tbody td {
  padding: .85rem 1.25rem; font-size: .88rem;
  color: var(--text-body); border-bottom: 1px solid #f0f2f5;
  text-align: center; vertical-align: middle;
}
.comparison-table tbody td:first-child {
  text-align: left; font-weight: 500; color: var(--text);
}
.comparison-table tbody td:nth-child(2) {
  background: rgba(0,212,255,.04); font-weight: 600; color: var(--text);
  border-left: 2px solid var(--cyan); border-right: 2px solid var(--cyan);
}
.comparison-table tbody td:nth-child(3) { color: var(--text-muted); font-size: .85rem; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:last-child td:nth-child(2) {
  border-bottom: 2px solid var(--cyan);
  border-radius: 0 0 0 0;
}
.comp-check { color: var(--cyan-text); vertical-align: middle; margin-right: 4px; }
.comp-x { color: #dc2626; opacity: .5; }
@media (max-width: 600px) {
  .comparison-table { font-size: .8rem; }
  .comparison-table thead th,
  .comparison-table tbody td { padding: .65rem .6rem; font-size: .78rem; }
}

/* === PRICING === */
.pricing { padding: 7rem 0; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2.5rem; align-items: stretch;
}
.pricing-card {
  background: var(--surface); border-radius: 16px;
  box-shadow: var(--card-shadow); padding: 2.5rem 2rem;
  border: 1px solid rgba(0,0,0,.03);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s; position: relative;
}
.pricing-card:hover { transform: translateY(-2px); box-shadow: var(--card-shadow-hover); }
.pricing-card-featured {
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--cyan), var(--blue-deep)) 1;
  box-shadow: var(--card-shadow-elevated);
  transform: scale(1.05);
  z-index: 1;
}
.pricing-card-featured:hover { transform: scale(1.05) translateY(-2px); box-shadow: var(--card-shadow-elevated); }
.pricing-popular {
  position: absolute; top: -1px; right: 1.5rem;
  background: var(--cyan); color: var(--dark-base);
  font-family: 'Lexend', sans-serif; font-weight: 700;
  font-size: .7rem; letter-spacing: .5px;
  padding: .3rem .8rem; border-radius: 0 0 8px 8px;
  text-transform: uppercase;
}
.pricing-tier {
  font-family: 'Lexend', sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--text); margin-bottom: .5rem;
}
.pricing-price {
  font-family: 'Lexend', sans-serif; font-weight: 800;
  font-size: 2.2rem; color: var(--text); margin-bottom: .25rem;
}
.pricing-price span { font-size: .85rem; font-weight: 500; color: var(--text-muted); }
.pricing-desc {
  font-size: .85rem; color: var(--text-muted);
  margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid #f0f2f5;
}
.pricing-features { list-style: none; padding: 0; margin-bottom: 2rem; flex: 1; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .88rem; color: var(--text-body); margin-bottom: .6rem; line-height: 1.5;
}
.pricing-features svg { flex-shrink: 0; margin-top: 3px; }
.pricing-note { text-align: center; margin-top: 2rem; font-size: .88rem; color: var(--text-muted); }
.pricing-note a { color: var(--cyan-text); font-weight: 500; }
.pricing-note a:hover { text-decoration: underline; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-2px); }
}

/* === FAQ === */
.faq { padding: 7rem 0; background: var(--bg); }
.faq-list { max-width: 800px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid #e8ecf1; }
.faq-item.open { border-left: 3px solid var(--cyan); padding-left: 1rem; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; cursor: pointer;
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: .95rem;
  color: var(--text); background: none; border: none;
  width: 100%; text-align: left; gap: 1rem; transition: color .2s;
}
.faq-question:hover { color: var(--cyan-text); }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform .3s ease; color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--cyan-text); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer-inner {
  padding: 0 0 1.25rem; font-size: .92rem;
  color: var(--text-body); line-height: 1.7;
}

/* === DEMO CTA (dark) === */
.demo-section {
  padding: 7rem 0;
  background: var(--dark-base);
  position: relative; overflow: hidden;
}
.demo-section::before {
  content: ''; position: absolute; top: 50%; left: 70%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,212,255,.04), transparent 60%);
  pointer-events: none;
}
.demo-inner {
  display: flex; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.demo-text { flex: 1; }
.demo-text h2 {
  font-weight: 800; font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  color: #fff; margin-bottom: 1rem;
}
.demo-text p { color: #94a3b8; font-size: .95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.demo-value-props { list-style: none; padding: 0; margin-bottom: 2rem; }
.demo-value-props li {
  display: flex; align-items: center; gap: .6rem;
  color: #94a3b8; font-size: .92rem; margin-bottom: .6rem;
}
.demo-value-props li svg { flex-shrink: 0; color: var(--cyan); }
.demo-form-wrap { flex: 1; }
.demo-form { text-align: left; }
.demo-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: .78rem;
  color: #94a3b8; letter-spacing: .3px;
}
.form-group input, .form-group select {
  font-family: 'Libre Franklin', sans-serif; font-size: .92rem;
  color: #fff; background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,.1); border-radius: 8px;
  padding: .65rem .9rem;
  transition: border-color .2s, box-shadow .2s; outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,212,255,.12);
}
.form-group input::placeholder { color: #64748b; }
.form-group select option { background: var(--dark-surface); color: #fff; }
.form-honeypot { display: none !important; }
.demo-submit {
  width: 100%;
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: .95rem;
  letter-spacing: .4px; background: var(--cyan); color: var(--dark-base);
  border: none; border-radius: 8px; padding: .85rem;
  cursor: pointer; transition: all .2s;
  box-shadow: 0 2px 12px rgba(0,212,255,.15);
}
.demo-submit:hover { background: var(--cyan-hover); box-shadow: 0 4px 20px rgba(0,212,255,.25); }
.demo-submit:disabled { opacity: .6; cursor: not-allowed; }
.grecaptcha-badge { visibility: hidden; }
.demo-recaptcha-notice {
  font-size: .62rem; color: rgba(148,163,184,.45); text-align: center;
  margin-top: .6rem; line-height: 1.5; letter-spacing: .15px;
}
.demo-recaptcha-notice a {
  color: rgba(148,163,184,.55); text-decoration: underline;
  text-decoration-color: rgba(148,163,184,.25); text-underline-offset: 2px; transition: color .2s;
}
.demo-recaptcha-notice a:hover { color: rgba(0,212,255,.7); }
.demo-message { margin-top: 1rem; text-align: center; font-size: .92rem; min-height: 1.5em; }
.demo-message.success { color: #22a652; }
.demo-message.error { color: #ff6b6b; }
.demo-success-box { text-align: center; padding: 2rem 0; }
.demo-success-box h3 { font-weight: 700; font-size: 1.3rem; margin-bottom: .5rem; color: #fff; }
.demo-success-box p { color: #94a3b8; font-size: .95rem; }
.demo-reassurance {
  text-align: center; margin-top: 1rem; font-size: .82rem; color: #64748b;
}

/* Signal rings behind demo form */
.signal-rings {
  position: absolute; top: 50%; right: 20%;
  transform: translate(-50%,-50%); pointer-events: none; z-index: 0;
}
.signal-ring-circle {
  position: absolute; border: 1px solid rgba(0,212,255,.08);
  border-radius: 50%; width: 200px; height: 200px; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: signalRing 4s ease-out infinite;
}
.signal-ring-circle:nth-child(2) { animation-delay: 1.3s; }
.signal-ring-circle:nth-child(3) { animation-delay: 2.6s; }

@media (max-width: 900px) {
  .demo-inner { flex-direction: column; gap: 2.5rem; }
  .demo-fields { grid-template-columns: 1fr; }
  .demo-text, .demo-form-wrap { width: 100%; }
}

/* === FOOTER === */
.footer { padding: 3rem 0; border-top: 1px solid #e8ecf1; }
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand { font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text-muted); }
.footer-copy { font-size: .82rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: .85rem; color: var(--text-muted); transition: color .2s; }
.footer-links a:hover { color: var(--cyan-text); }
.footer-dot-wrap { display: flex; justify-content: center; padding-bottom: 1rem; }
@media (max-width: 600px) { .footer-inner { flex-direction: column; text-align: center; } }

/* === 2-COLUMN PRICING GRID === */
.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .pricing-grid-2 { grid-template-columns: 1fr; max-width: 420px; }
}

/* === FEATURE COMING SOON BADGE === */
.feature-coming-soon {
  display: inline-block;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .5px;
  color: var(--cyan-text);
  border: 1px solid rgba(0,136,187,.2);
  border-radius: 999px;
  padding: .35rem .9rem;
  margin-top: .75rem;
}

/* === MAP NAME LABELS (hero mockup) === */
.map-label {
  position: absolute;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: .5rem;
  color: #fff;
  background: rgba(0,0,0,.5);
  padding: 2px 5px;
  border-radius: 3px;
  white-space: nowrap;
  pointer-events: none;
}
.map-label-1 { top: 22%; left: 32%; transform: translateX(-50%); }
.map-label-2 { top: 46%; left: 58%; transform: translateX(-50%); }
.map-label-3 { top: 32%; left: 72%; transform: translateX(-50%); }

/* === 4-COLUMN COMPARISON TABLE === */
.comparison-table thead th:nth-child(4) { color: var(--text-muted); font-weight: 600; }
.comparison-table tbody td:nth-child(4) { color: var(--text-muted); font-size: .85rem; }

/* === DASHBOARD MOCKUP RESPONSIVE === */
@media (max-width: 900px) {
  /* Hide team panel on tablet, show map full-width */
  .dash-chrome [style*="width:200px"] { display: none !important; }
  .dash-chrome [style*="width:48px"] { display: none !important; }
}
@media (max-width: 600px) {
  /* Stack KPI strip on mobile */
  .dash-chrome [style*="display:flex;gap:0;border-bottom"] { flex-wrap: wrap; }
  .dash-chrome [style*="display:flex;gap:0;border-bottom"] > div { flex: 1 1 50%; }
}

/* === MANAGER BENEFIT CARDS RESPONSIVE === */
@media (max-width: 900px) {
  .showcase [style*="grid-template-columns:repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .showcase [style*="grid-template-columns:repeat(4"] { grid-template-columns: 1fr !important; }
}

/* === MOBILE === */
@media (max-width: 480px) {
  section { padding: 4rem 0; }
  .section-heading { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  .hero-headline { font-size: clamp(1.8rem, 7vw, 2.4rem); }
}

/* === MOCKUP ANIMATIONS === */

/* Pulsing SVG dots in dashboard/tracking mockups */
.mock-dot-pulse {
  animation: gpsPulse 2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.mock-dot-pulse:nth-child(2) { animation-delay: .3s; }
.mock-dot-pulse:nth-child(3) { animation-delay: .6s; }
.mock-dot-pulse:nth-child(4) { animation-delay: .9s; }
.mock-dot-pulse:nth-child(5) { animation-delay: 1.2s; }
.mock-dot-pulse:nth-child(6) { animation-delay: 1.5s; }

/* Marching-ant routes in mockups */
.mock-route-march {
  animation: dotTrail 1.5s linear infinite;
}

/* Expanding radar ring around active member */
.mock-ring-expand {
  animation: phoneDotRing 2.5s ease-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

/* Destination dot gentle pulse (slower, subtler) */
.mock-dest-pulse {
  animation: gpsPulse 3s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* Hero map dots — stagger the existing ones */
.map-dot-2, .map-dot-3, .map-dot-4, .map-dot-5, .map-dot-6 {
  animation: gpsPulse 2s ease-in-out infinite;
}
.map-dot-2 { animation-delay: .4s; }
.map-dot-3 { animation-delay: .8s; }
.map-dot-4 { animation-delay: 1.2s; }
.map-dot-5 { animation-delay: .2s; }
.map-dot-6 { animation-delay: .6s; }

/* Hero route marching */
.map-route path {
  animation: dotTrail 1.5s linear infinite;
}

/* Phone route marching */
.phone-map-route path {
  animation: dotTrail 1.5s linear infinite;
}

/* === CONVOY ANIMATION BUBBLES === */

/* SVG convoy bubbles in Command Center */
.biz-convoy-bubble {
  transition: opacity 0.4s ease;
}

/* Hero map HTML speech bubbles */
.hero-map-bubble {
  position: absolute;
  background: rgba(15,15,20,0.88);
  border-radius: 6px;
  padding: 4px 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 5;
  white-space: nowrap;
  border: 1px solid rgba(0,212,255,0.2);
}
.hero-map-bubble-name {
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: .5rem;
  display: block;
  line-height: 1.3;
}
.hero-map-bubble-msg {
  font-family: 'Libre Franklin', sans-serif;
  font-size: .48rem;
  color: #7a7872;
  display: block;
  line-height: 1.3;
}
.hero-map-bubble-2 {
  border-color: rgba(52,211,153,0.2);
}
