:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: #161e2e;
  --bg-card-hover: #1c2640;
  --accent: #00e5a0;
  --accent-dim: #00c88a;
  --accent-glow: rgba(0, 229, 160, 0.15);
  --accent-glow-strong: rgba(0, 229, 160, 0.3);
  --text-primary: #f0f4f8;
  --text-secondary: #8899aa;
  --text-muted: #5a6a7a;
  --border: rgba(255,255,255,0.06);
  --border-accent: rgba(0, 229, 160, 0.2);
  --danger: #ff4d6a;
  --warning: #ffb020;
  --info: #3b82f6;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ========== GRID BACKGROUND ========== */
.grid-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(10, 14, 23, 0.85);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-icon::after {
  content: '';
  width: 10px; height: 10px;
  border: 2.5px solid var(--bg-primary);
  border-radius: 50%;
  position: relative;
}

.logo-text {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text-primary); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-dim);
  box-shadow: 0 0 30px var(--accent-glow-strong);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 0.65rem 0;
}

.btn-ghost:hover { opacity: 0.8; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -100px;
  left: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}

h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #00b8d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.hero-stat {
  border-left: 2px solid var(--border);
  padding-left: 1rem;
}

.hero-stat-number {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Hero Dashboard Mockup */
.hero-visual {
  position: relative;
}

.dashboard-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--border);
}

.dash-dots {
  display: flex; gap: 6px;
}

.dash-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
}

.dash-dots span:first-child { background: var(--danger); opacity: 0.8; }
.dash-dots span:nth-child(2) { background: var(--warning); opacity: 0.8; }
.dash-dots span:nth-child(3) { background: var(--accent); opacity: 0.8; }

.dash-title-bar {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.dash-body {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.dash-widget {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
}

.dash-widget-title {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}

.dash-widget-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
}

.dash-widget-value.green { color: var(--accent); }
.dash-widget-value.blue { color: var(--info); }
.dash-widget-value.orange { color: var(--warning); }
.dash-widget-value.red { color: var(--danger); }

.dash-widget-change {
  font-size: 0.7rem;
  margin-top: 0.3rem;
}

.dash-widget-change.up { color: var(--accent); }
.dash-widget-change.down { color: var(--danger); }

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
  margin-top: 0.5rem;
}

.mini-chart .bar {
  flex: 1;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.6;
  animation: barGrow 1.5s ease-out forwards;
}

@keyframes barGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.dash-wide {
  grid-column: 1 / -1;
}

.activity-rows {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.activity-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
}

.activity-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--bg-primary);
}

.activity-name {
  color: var(--text-secondary);
  flex: 1;
}

.activity-status {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
}

.status-active { background: rgba(0,229,160,0.15); color: var(--accent); }
.status-break { background: rgba(255,176,32,0.15); color: var(--warning); }
.status-offline { background: rgba(255,77,106,0.15); color: var(--danger); }

/* Floating notification */
.float-notif {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: floatIn 0.8s ease-out 0.5s both;
  z-index: 2;
}

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

.float-notif-icon {
  width: 32px; height: 32px;
  background: var(--accent-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.float-notif-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.float-notif-text strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.8rem;
}

/* ========== SECTION GENERAL ========== */
section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  letter-spacing: -0.3px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.feature-tag {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--border-accent);
  border-radius: 4px;
}

/* ========== HOW IT WORKS ========== */
.how-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.step {
  position: relative;
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.step-icon {
  width: 56px; height: 56px;
  background: var(--bg-primary);
  border: 1px solid var(--border-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 1.5rem auto 1rem;
}

.step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.step-connector {
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 2rem;
  height: 1px;
  background: var(--border-accent);
}

.step:last-child .step-connector { display: none; }

/* ========== INDUSTRIES ========== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.industry-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.industry-img {
  height: 180px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.industry-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--bg-card));
}

.industry-body {
  padding: 1.5rem;
}

.industry-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.industry-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.industry-metrics {
  display: flex;
  gap: 1.5rem;
}

.industry-metric {
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.industry-metric strong {
  display: block;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.1rem;
}

.industry-metric span {
  color: var(--text-muted);
}

/* ========== DASHBOARD PREVIEW ========== */
.preview-section { overflow: hidden; }

.preview-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

.preview-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}

.preview-tab {
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  font-family: var(--font-body);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.preview-tab:hover { color: var(--text-secondary); }
.preview-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.preview-content {
  padding: 2rem;
  min-height: 400px;
}

.preview-pane { display: none; }
.preview-pane.active { display: block; }

/* Asset tracking pane */
.asset-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

.floor-map {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  min-height: 300px;
}

.floor-map-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--accent);
  font-size: 0.7rem;
}

.live-badge .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 4px;
  height: 220px;
}

.map-cell {
  background: rgba(255,255,255,0.02);
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.03);
  position: relative;
}

.map-cell.zone {
  background: rgba(0, 229, 160, 0.05);
  border-color: rgba(0, 229, 160, 0.1);
}

.map-cell.zone-b {
  background: rgba(59,130,246,0.05);
  border-color: rgba(59,130,246,0.1);
}

.map-cell.zone-c {
  background: rgba(255,176,32,0.05);
  border-color: rgba(255,176,32,0.1);
}

.map-blip {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.map-blip.asset { background: var(--accent); box-shadow: 0 0 8px var(--accent-glow-strong); }
.map-blip.person { background: var(--info); box-shadow: 0 0 8px rgba(59,130,246,0.4); }
.map-blip.alert { background: var(--danger); box-shadow: 0 0 8px rgba(255,77,106,0.4); animation: pulse 1s infinite; }

.asset-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.asset-list-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.asset-item {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.asset-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.asset-icon.green { background: rgba(0,229,160,0.15); }
.asset-icon.blue { background: rgba(59,130,246,0.15); }
.asset-icon.orange { background: rgba(255,176,32,0.15); }

.asset-info {
  flex: 1;
}

.asset-name {
  font-size: 0.8rem;
  font-weight: 600;
}

.asset-loc {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.asset-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}

.asset-status-dot.online { background: var(--accent); }
.asset-status-dot.warning { background: var(--warning); }
.asset-status-dot.offline { background: var(--danger); }

/* Employee pane */
.emp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.emp-card {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
}

.emp-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.emp-avatar {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--bg-primary);
}

.emp-name { font-size: 0.9rem; font-weight: 600; }
.emp-role { font-size: 0.75rem; color: var(--text-muted); }

.emp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.emp-stat {
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 0.6rem;
}

.emp-stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.emp-stat-value {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

/* Route Optimization pane */
.route-demo {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

.route-map {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  min-height: 300px;
}

.route-visual {
  position: relative;
  height: 240px;
}

.route-node {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--bg-primary);
  z-index: 2;
}

.route-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.route-stats {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.route-stat-card {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
}

.route-stat-card h4 {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.route-comparison {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.route-old {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.route-arrow { color: var(--accent); font-size: 1rem; }

.route-new {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.route-saved {
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 0.3rem;
}

/* ========== PRICING ========== */
.pricing-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 60px var(--accent-glow);
}

.pricing-card.featured::before {
  content: attr(data-featured-label);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-primary);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-plan {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.pricing-amount span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border: none; }

.check {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ========== CTA ========== */
.cta-section {
  text-align: center;
  padding: 8rem 2rem;
}

.cta-section .section-title {
  font-size: 3rem;
}

.cta-section .section-desc {
  max-width: 600px;
  margin: 1rem auto 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ========== FOOTER ========== */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text-primary); }

.footer-contact {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .asset-grid { grid-template-columns: 1fr; }
  .route-demo { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .emp-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-actions { flex-direction: column; }
}

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
