/* ============================================
   VEHICLE MANAGER - Promotional Site Styles
   ============================================ */

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

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #8b5cf6;
  --accent: #f59e0b;
  --success: #22c55e;
  --danger: #ef4444;
  --bg: #09090b;
  --bg-subtle: #111114;
  --bg-card: #18181b;
  --bg-card-hover: #1e1e22;
  --border: #27272a;
  --border-light: #3f3f46;
  --text: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 60px -12px rgba(99, 102, 241, 0.25);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
code { font-family: var(--font-mono); }

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

/* === Gradient Text === */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-card); color: var(--text); border-color: var(--border-light); }
.btn-demo {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  border: none;
}
.btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: #111;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,255,255,0.15); }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}
.navbar.scrolled {
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-gradient {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}
.hero-particles {
  position: absolute;
  inset: 0;
}
.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* === Device Showcase === */
.hero-visual { position: relative; }
.device-showcase { position: relative; }

/* Laptop Mockup */
.laptop-mockup {
  background: var(--bg-card);
  border-radius: 12px 12px 0 0;
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.laptop-screen { padding: 0; }
.screen-content {
  background: #0f0f13;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.mock-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: #1a1a20;
  border-bottom: 1px solid var(--border);
}
.mock-dots { display: flex; gap: 5px; }
.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mock-dots span:nth-child(1) { background: #ef4444; }
.mock-dots span:nth-child(2) { background: #f59e0b; }
.mock-dots span:nth-child(3) { background: #22c55e; }
.mock-url {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  background: var(--bg);
  padding: 4px 12px;
  border-radius: 6px;
}
.mock-dashboard {
  display: flex;
  min-height: 200px;
}
.mock-sidebar {
  width: 48px;
  background: #141418;
  border-right: 1px solid var(--border);
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.sb-item {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sb-item.active { background: rgba(99, 102, 241, 0.2); }
.sb-icon {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--text-muted);
  opacity: 0.5;
}
.sb-item.active .sb-icon { background: var(--primary); opacity: 1; }
.sb-label { display: none; }

.mock-main {
  flex: 1;
  padding: 12px;
}
.mock-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.mock-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.mock-stat-card.c1 { border-top: 2px solid #f59e0b; }
.mock-stat-card.c2 { border-top: 2px solid #22c55e; }
.mock-stat-card.c3 { border-top: 2px solid var(--primary); }
.mock-stat-card.c4 { border-top: 2px solid #22c55e; }
.msc-icon { font-size: 1.2rem; margin-bottom: 4px; }
.msc-value { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.msc-label { font-size: 0.6rem; color: var(--text-muted); margin-top: 2px; }

.mock-chart {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}
.chart-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
}
.bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, var(--primary), var(--secondary));
  border-radius: 3px 3px 0 0;
  position: relative;
  animation: barGrow 1s ease-out backwards;
  animation-delay: calc(var(--h, 0) * 0.01s);
}
.bar span {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  color: var(--text-muted);
}
@keyframes barGrow { from { height: 0; } }

.laptop-base {
  height: 12px;
  background: linear-gradient(to bottom, var(--bg-card), #222);
  border-radius: 0 0 4px 4px;
  border: 2px solid var(--border);
  border-top: none;
  position: relative;
}
.laptop-base::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 40%;
  height: 4px;
  background: var(--border-light);
  border-radius: 4px 4px 0 0;
}

/* Phone Mockup */
.phone-mockup {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 160px;
  background: #111;
  border-radius: 20px;
  border: 3px solid #333;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 10;
}
.phone-notch {
  width: 60px;
  height: 6px;
  background: #333;
  border-radius: 0 0 8px 8px;
  margin: 0 auto;
}
.phone-screen { padding: 0; }
.phone-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 4px 10px;
  font-size: 0.55rem;
  color: var(--text-muted);
}
.phone-header {
  padding: 6px 12px;
  border-bottom: 1px solid var(--border);
}
.ph-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
}
.phone-body {
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.phone-card {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.pc-emoji { font-size: 0.9rem; }
.pc-info { flex: 1; min-width: 0; }
.pc-name { font-size: 0.6rem; font-weight: 600; color: var(--text); }
.pc-detail { font-size: 0.5rem; color: var(--text-muted); }
.pc-date { font-size: 0.48rem; color: var(--text-muted); white-space: nowrap; }

.phone-nav {
  display: flex;
  justify-content: space-around;
  padding: 6px 0;
  border-top: 1px solid var(--border);
  background: #111;
}
.pn-item {
  font-size: 0.75rem;
  opacity: 0.4;
}
.pn-item.active { opacity: 1; }

/* ===================== FEATURES ===================== */
.features { padding: 120px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent, var(--primary)), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent, var(--primary));
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ===================== PLATFORMS ===================== */
.platforms { padding: 120px 0; background: var(--bg-subtle); }

.platform-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.platform-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.platform-visual {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
  min-height: 240px;
}
.platform-info { padding: 28px; }
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.platform-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; }
.platform-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.platform-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.platform-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Mini browser mockup */
.mini-browser {
  width: 280px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.mb-bar {
  display: flex;
  gap: 4px;
  padding: 8px 10px;
  background: #1a1a20;
  border-bottom: 1px solid var(--border);
}
.mb-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.mb-bar span:nth-child(1) { background: #ef4444; }
.mb-bar span:nth-child(2) { background: #f59e0b; }
.mb-bar span:nth-child(3) { background: #22c55e; }
.mb-content { padding: 10px; }
.mb-nav {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 10px;
  width: 60%;
}
.mb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
}
.mb-cell {
  height: 32px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.mb-chart-area { margin-top: 8px; }
.mb-chart-svg { width: 100%; height: auto; }

/* Mini phone mockup */
.mini-phone {
  width: 140px;
  background: #111;
  border-radius: 20px;
  border: 3px solid #333;
  padding: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.mp-notch {
  width: 50px;
  height: 5px;
  background: #222;
  border-radius: 0 0 6px 6px;
  margin: 0 auto 4px;
}
.mp-screen { padding: 4px; }
.mp-header-bar {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 8px;
  width: 50%;
}
.mp-card-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
.mp-card {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: var(--bg-card);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.mp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mp-lines { flex: 1; }
.mp-lines div {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 3px;
}
.mp-lines div:last-child { width: 60%; }
.mp-tab-bar {
  display: flex;
  justify-content: space-around;
  padding: 6px 0 4px;
  border-top: 1px solid var(--border);
}
.mp-tab {
  width: 16px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
}
.mp-tab.active { background: var(--primary); }

/* Standalone Callout */
.standalone-callout {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.02));
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.callout-icon { flex-shrink: 0; }
.callout-content h3 { font-size: 1.2rem; margin-bottom: 8px; }
.callout-content p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* ===================== INTEGRATIONS ===================== */
.integrations { padding: 120px 0; }
.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.integration-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.integration-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.int-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}
.integration-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.integration-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ===================== STATS ===================== */
.stats {
  padding: 100px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.stat-flags {
  font-size: 0.85rem;
  letter-spacing: 2px;
  line-height: 1.8;
}
.stat-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===================== WORKFLOW / TIMELINE ===================== */
.workflow { padding: 120px 0; }
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), transparent);
}
.timeline-item {
  display: flex;
  gap: 24px;
  padding: 0 0 48px;
  position: relative;
}
.timeline-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}
.timeline-content {
  padding-top: 12px;
}
.timeline-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.timeline-content code {
  background: var(--bg-card);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--primary-light);
  border: 1px solid var(--border);
}

/* ===================== TECH STACK ===================== */
.tech { padding: 120px 0; background: var(--bg-subtle); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.tech-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.tech-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}
.tech-layer {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  margin-bottom: 16px;
}
.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tech-pill {
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.tech-pill:hover {
  background: rgba(99, 102, 241, 0.15);
  color: var(--text);
}

/* ===================== CTA ===================== */
.cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
}
.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* Code block */
.cta-code {
  background: #0d0d11;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  margin-bottom: 32px;
}
.code-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #161620;
  border-bottom: 1px solid var(--border);
}
.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.code-dot.red { background: #ef4444; }
.code-dot.yellow { background: #f59e0b; }
.code-dot.green { background: #22c55e; }
.code-title {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.cta-code pre {
  padding: 20px;
  overflow-x: auto;
}
.cta-code code {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.code-comment { color: var(--text-muted); }
.code-prompt { color: var(--success); }

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== FOOTER ===================== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 600px; margin: 0 auto; }
  .platform-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(16px);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: block; }
  
  .features-grid { grid-template-columns: 1fr; }
  .integration-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .standalone-callout { flex-direction: column; text-align: center; }
  
  .phone-mockup { display: none; }
  
  .footer-content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .mock-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
}
