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

:root {
  --bg: #0a0a0c;
  --bg-elevated: #111114;
  --bg-card: #16161a;
  --bg-card-hover: #1c1c21;
  --border: #2a2a30;
  --border-light: #1e1e24;
  --text: #e8e8ed;
  --text-secondary: #8a8a96;
  --text-tertiary: #5a5a66;
  --accent: #e8562a;
  --accent-light: #ff7a50;
  --accent-glow: rgba(232, 86, 42, 0.15);
  --accent-2: #2a8aff;
  --green: #22c55e;
  --yellow: #eab308;
  --red: #ef4444;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
  --container: 1200px;
  --nav-height: 64px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ===== Cursor Glow ===== */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232, 86, 42, 0.06) 0%, transparent 70%);
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ===== Layout ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-top: 16px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  background: var(--accent-glow);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(232, 86, 42, 0.2);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 86, 42, 0.3);
}

.btn-ghost {
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border-color: var(--text-tertiary);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 28px;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

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

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--border-light);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  white-space: nowrap;
}

.sts-logo-mark {
  flex-shrink: 0;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 32px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link-login {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-link-login:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: calc(var(--nav-height) + 80px) 0 40px;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
}

.hero-bg canvas {
  width: 100%;
  height: 100%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
  margin-bottom: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

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

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.hero-avatars {
  display: flex;
}
.hero-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
}
.hero-avatars img:first-child {
  margin-left: 0;
}

.hero-proof-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.hero-proof-text strong {
  color: var(--text);
}

/* Dashboard Mock */
.hero-visual {
  max-width: 100%;
}

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

.dash-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border-light);
}

.dash-dots {
  display: flex;
  gap: 6px;
}
.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.dash-dots span:first-child { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #febc2e; }
.dash-dots span:last-child { background: #28c840; }

.dash-title {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.dash-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  min-height: 320px;
}

.dash-map {
  padding: 20px;
  position: relative;
}

.map-svg {
  width: 100%;
  height: 100%;
}

.map-outline {
  fill: none;
  stroke: var(--border);
  stroke-width: 1.5;
}

.route-line {
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: 8 4;
  opacity: 0.4;
  animation: dash-move 3s linear infinite;
}

@keyframes dash-move {
  to { stroke-dashoffset: -24; }
}

.route-2 { stroke: var(--accent-2); animation-duration: 4s; }
.route-3 { stroke: var(--green); animation-duration: 3.5s; }
.route-4 { stroke: var(--yellow); animation-duration: 5s; }

.city-dot {
  fill: var(--border);
  stroke: var(--text-tertiary);
  stroke-width: 1;
}

.truck-dot {
  fill: var(--accent);
  filter: drop-shadow(0 0 6px rgba(232, 86, 42, 0.6));
}

.td-1 { animation: truck-move-1 4s ease-in-out infinite; }
.td-2 { animation: truck-move-2 5s ease-in-out infinite; }
.td-3 { animation: truck-move-3 3.5s ease-in-out infinite; }

@keyframes truck-move-1 {
  0% { transform: translate(200px, 180px); }
  100% { transform: translate(450px, 280px); }
}
@keyframes truck-move-2 {
  0% { transform: translate(600px, 150px); }
  100% { transform: translate(380px, 300px); }
}
@keyframes truck-move-3 {
  0% { transform: translate(300px, 150px); }
  100% { transform: translate(550px, 330px); }
}

.dash-sidebar {
  border-left: 1px solid var(--border-light);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-stat {
  text-align: center;
  padding: 12px 0;
}

.dash-stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.dash-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-top: 2px;
}

.dash-feed {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-secondary);
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
}

.feed-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.feed-green { background: var(--green); }
.feed-yellow { background: var(--yellow); }
.feed-red { background: var(--red); }

.feed-time {
  margin-left: auto;
  color: var(--text-tertiary);
  flex-shrink: 0;
}

/* ===== Logos ===== */
.logos-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.logos-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logos-slide {
  display: flex;
  gap: 60px;
  animation: scroll-logos 25s linear infinite;
  width: max-content;
}

@keyframes scroll-logos {
  to { transform: translateX(-50%); }
}

.logo-item {
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-tertiary);
  opacity: 0.6;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ===== Stats ===== */
.stats-section {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.stat-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-top: 8px;
}

/* ===== Products ===== */
.products-section {
  padding: 120px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: border-color 0.3s, transform 0.3s;
}

.product-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.product-card-large {
  grid-column: 1 / -1;
}

.product-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.product-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.product-card:not(.product-card-large) .product-features {
  grid-template-columns: 1fr;
}

.product-features li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}
.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}
.product-link:hover {
  gap: 10px;
}

/* ===== Platform / Tabs ===== */
.platform-section {
  padding: 120px 0;
  background: var(--bg-elevated);
}

.tab-buttons {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  flex: 1;
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.tab-btn.active {
  background: var(--bg-card);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.tab-btn:hover:not(.active) {
  color: var(--text);
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  animation: fadeIn 0.3s ease;
}
.tab-panel.active {
  display: grid;
}

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

.tab-content h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.tab-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.tab-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.spec-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  font-weight: 600;
}

.spec-value {
  font-size: 0.9rem;
  color: var(--text);
}

/* Integration visual */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 40px;
}

.int-node {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-secondary);
  animation: node-pulse 3s ease calc(var(--delay) * 0.3s) infinite;
}

.center-node {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 700;
}

@keyframes node-pulse {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 20px rgba(232, 86, 42, 0.1); }
}

/* Code block */
.code-block {
  background: #0d0d10;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border-light);
}

.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.code-dot.red { background: #ff5f57; }
.code-dot.yellow { background: #febc2e; }
.code-dot.green { background: #28c840; }

.code-filename {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  font-family: var(--mono);
  margin-left: 8px;
}

.code-block pre {
  padding: 20px;
  overflow-x: auto;
}

.code-block code {
  font-family: var(--mono);
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.code-block .kw { color: #c792ea; }
.code-block .str { color: #c3e88d; }
.code-block .cmt { color: #546e7a; }

/* Alerts demo */
.alerts-demo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.alert-card {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  animation: alert-slide-in 0.5s ease backwards;
}
.alert-card:nth-child(2) { animation-delay: 0.15s; }
.alert-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes alert-slide-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.alert-warning { border-left: 3px solid var(--yellow); }
.alert-danger { border-left: 3px solid var(--red); }
.alert-info { border-left: 3px solid var(--accent-2); }

.alert-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.alert-body strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.alert-body p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.alert-meta {
  font-size: 0.72rem;
  color: var(--text-tertiary);
}

/* Security badges */
.security-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  align-items: center;
}

.sec-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
}

/* ===== How It Works ===== */
.how-section {
  padding: 120px 0;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step-card {
  flex: 1;
  padding: 32px;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 40px;
  color: var(--border);
  flex-shrink: 0;
}

.step-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

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

/* ===== Solutions ===== */
.solutions-section {
  padding: 120px 0;
  background: var(--bg-elevated);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: border-color 0.3s, transform 0.3s;
}

.solution-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.solution-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.solution-icon {
  color: var(--accent);
}

.solution-header h3 {
  font-size: 1.25rem;
}

.solution-card > p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.solution-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.metric-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===== Testimonial ===== */
.testimonial-section {
  padding: 100px 0;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 24px;
}

.testimonial-card blockquote {
  font-size: 1.35rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* ===== Bento Grid ===== */
.bento-section {
  padding: 120px 0;
  background: var(--bg-elevated);
}

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

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color 0.3s;
}

.bento-card:hover {
  border-color: var(--border);
}

.bento-wide {
  grid-column: span 2;
}

.bento-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

.bento-visual {
  margin-top: 28px;
}

/* ETA Timeline */
.eta-timeline {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 0;
}

.eta-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.eta-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--bg-card);
  outline: 2px solid var(--border);
}

.eta-passed .eta-dot {
  background: var(--green);
  outline-color: rgba(34, 197, 94, 0.3);
}

.eta-current .eta-dot {
  background: var(--accent);
  outline-color: rgba(232, 86, 42, 0.3);
}

.eta-dot.pulse {
  animation: eta-pulse 2s ease infinite;
}

@keyframes eta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 86, 42, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(232, 86, 42, 0); }
}

.eta-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.4;
}

.eta-label small {
  color: var(--text-tertiary);
  font-size: 0.72rem;
}

.eta-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  min-width: 40px;
}

.eta-active-line {
  background: linear-gradient(90deg, var(--green), var(--accent));
}

/* Geofence demo */
.geofence-demo {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.geo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed var(--border);
}

.ring-outer {
  inset: 0;
  animation: geo-breathe 4s ease infinite;
}

.ring-inner {
  inset: 30px;
  border-color: var(--accent);
  opacity: 0.4;
  animation: geo-breathe 4s ease 1s infinite;
}

@keyframes geo-breathe {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.05); opacity: 0.6; }
}

.geo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-secondary);
}

.geo-truck {
  position: absolute;
  color: var(--accent);
  animation: orbit 6s linear infinite;
}

.geo-truck-1 {
  top: 10px;
  left: 50%;
}

@keyframes orbit {
  from { transform: rotate(0deg) translateX(80px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
}

/* ===== Pricing ===== */
/* ===== Contact Sales ===== */
.contact-section {
  padding: 120px 0;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.contact-reasons {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-reasons li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-reasons li svg {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 1px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238a8a96' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-top: 4px;
}

/* ===== Testimonials Row ===== */
.testimonials-row {
  padding: 80px 0;
  background: var(--bg-elevated);
}

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

.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.test-stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.test-card > p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.test-author strong {
  display: block;
  font-size: 0.85rem;
}

.test-author span {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 120px 0;
}

.cta-card {
  background: linear-gradient(135deg, rgba(232, 86, 42, 0.1) 0%, rgba(42, 138, 255, 0.05) 100%);
  border: 1px solid rgba(232, 86, 42, 0.2);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 16px;
}

.cta-content > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* ===== Footer ===== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 16px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  color: var(--text-tertiary);
  transition: color 0.2s;
}
.footer-social a:hover {
  color: var(--text);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 5px 0;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* ===== Animations ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .dash-body {
    grid-template-columns: 1fr;
  }
  .dash-sidebar {
    border-left: none;
    border-top: 1px solid var(--border-light);
    flex-direction: row;
    flex-wrap: wrap;
  }
  .dash-stat { flex: 1; min-width: 100px; }
  .dash-feed { width: 100%; }

  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-card-large {
    grid-column: auto;
  }
  .product-features {
    grid-template-columns: 1fr;
  }

  .tab-panel {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-wide {
    grid-column: span 2;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .test-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    flex-direction: column;
    gap: 0;
  }
  .step-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-link-login {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: calc(var(--nav-height) + 40px) 0 20px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tab-buttons {
    flex-wrap: wrap;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-wide {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .cta-card {
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
