/* ============================================
   1Garage Marketing Site
   ============================================ */

:root {
  --primary: #F97316;
  --primary-dark: #EA580C;
  --primary-light: #FB923C;
  --accent: #F59E0B;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-dark: #0F172A;
  --text: #0F172A;
  --text-secondary: #475569;
  --text-tertiary: #94A3B8;
  --border: #E2E8F0;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Container */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
}
.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  padding: 12px 28px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg-alt);
  border-color: var(--text-tertiary);
}

/* ============================================
   Section Helpers
   ============================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: rgba(249, 115, 22, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(249, 115, 22, 0.08), transparent),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(6, 182, 212, 0.06), transparent);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--success);
  background: rgba(16, 185, 129, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, #F97316, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}
.hero-stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Phone Mockup (shared) */
.hero-visual {
  display: flex;
  justify-content: center;
}
.phone-mockup {
  width: 290px;
  height: 580px;
  background: #0F172A;
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.1);
  position: relative;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #0F172A;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-sm {
  width: 270px;
  height: 540px;
  border-radius: 36px;
}
.phone-sm::before {
  width: 90px;
  height: 26px;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #1E293B;
  border-radius: 30px;
  overflow: hidden;
  padding: 48px 16px 16px;
}
.phone-sm .phone-screen {
  border-radius: 26px;
  padding: 44px 14px 14px;
}

/* Hero phone mockup content */
.mock-app { }
.mock-header { margin-bottom: 20px; }
.mock-greeting {
  font-size: 20px;
  font-weight: 800;
  color: #F1F5F9;
}
.mock-subtitle {
  font-size: 12px;
  color: #64748B;
  margin-top: 2px;
}
.mock-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #334155;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
}
.mock-card-icon { font-size: 24px; }
.mock-card-info { flex: 1; }
.mock-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #F1F5F9;
}
.mock-card-sub {
  font-size: 10px;
  color: #94A3B8;
  margin-top: 2px;
}
.mock-score {
  font-size: 16px;
  font-weight: 800;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-score.good {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
}
.mock-reminder {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 14px;
}
.mock-reminder-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.mock-reminder-dot.urgent { background: #F59E0B; }
.mock-reminder-text {
  font-size: 12px;
  color: #F59E0B;
  font-weight: 600;
}

/* ============================================
   Features Grid
   ============================================ */
.features {
  padding: 100px 0;
  background: var(--bg-alt);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================
   Showcase Sections (with phone mockups)
   ============================================ */
.showcase {
  padding: 100px 0;
}
.showcase-alt {
  background: var(--bg-alt);
}
.showcase-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
}
.showcase-row.visible {
  opacity: 1;
  transform: translateY(0);
}
.showcase-row-reverse {
  grid-template-columns: 1fr auto;
}
.showcase-row-reverse .showcase-phone {
  order: 2;
}
.showcase-row-reverse .showcase-content {
  order: 1;
}
.showcase-content {
  max-width: 500px;
}
.showcase-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}
.showcase-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.showcase-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

/* Showcase Phone - Shared header */
.mock-header-sm {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.mock-back {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-light);
}
.mock-greeting-sm {
  font-size: 16px;
  font-weight: 700;
  color: #F1F5F9;
}

/* VIN Scanner Mockup */
.mock-camera {
  background: #0F172A;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.mock-camera-frame {
  width: 100%;
  height: 50px;
  border: 2px solid var(--primary-light);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.mock-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-light);
  box-shadow: 0 0 8px var(--primary-light);
  animation: scanLine 2s ease-in-out infinite;
}
@keyframes scanLine {
  0%, 100% { top: 0; }
  50% { top: 100%; }
}
.mock-camera-label {
  font-size: 10px;
  color: #64748B;
  margin-top: 10px;
}
.mock-vin-result {
  background: #334155;
  border-radius: 12px;
  padding: 12px;
}
.mock-vin-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.mock-vin-detail {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}
.mock-vin-label {
  font-size: 11px;
  color: #64748B;
}
.mock-vin-value {
  font-size: 11px;
  font-weight: 600;
  color: #E2E8F0;
}

/* Receipt Scanner Mockup */
.mock-receipt {
  margin-bottom: 12px;
}
.mock-receipt-img {
  background: #F8FAFC;
  border-radius: 10px;
  padding: 16px 14px;
  position: relative;
}
.mock-receipt-line {
  height: 6px;
  background: #CBD5E1;
  border-radius: 3px;
  margin-bottom: 8px;
}
.mock-receipt-line.w80 { width: 80%; }
.mock-receipt-line.w60 { width: 60%; }
.mock-receipt-line.w90 { width: 90%; }
.mock-receipt-line.w70 { width: 70%; }
.mock-receipt-line.w50 { width: 50%; }
.mock-receipt-sparkle {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 4px;
}
.mock-extracted {
  background: #334155;
  border-radius: 12px;
  padding: 12px;
}
.mock-extracted-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.mock-extracted-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}
.mock-ex-label {
  font-size: 10px;
  color: #64748B;
}
.mock-ex-value {
  font-size: 10px;
  font-weight: 600;
  color: #E2E8F0;
  text-align: right;
}
.mock-ex-cost {
  color: var(--success) !important;
  font-weight: 800 !important;
}

/* Sell Listing Mockup */
.mock-sell-hero {
  text-align: center;
  padding: 16px 0 12px;
}
.mock-sell-car {
  font-size: 36px;
  margin-bottom: 6px;
}
.mock-sell-name {
  font-size: 14px;
  font-weight: 800;
  color: #F1F5F9;
}
.mock-sell-miles {
  font-size: 11px;
  color: #64748B;
  margin-top: 2px;
}
.mock-sell-section {
  background: #334155;
  border-radius: 12px;
  padding: 12px;
  margin-top: 12px;
}
.mock-sell-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.mock-sell-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}
.mock-check-green {
  font-size: 12px;
  color: var(--success);
  font-weight: 700;
}
.mock-sell-item span:last-child {
  font-size: 11px;
  color: #CBD5E1;
}
.mock-sell-btn {
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 12px;
  border-radius: 10px;
  margin-top: 14px;
}

/* Reminders Mockup */
.mock-reminder-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.mock-rem-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #334155;
  border-radius: 10px;
  padding: 10px 12px;
}
.mock-rem-item.overdue {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.mock-rem-item.upcoming {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.mock-rem-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mock-rem-dot.red { background: var(--danger); }
.mock-rem-dot.yellow { background: var(--warning); }
.mock-rem-dot.green { background: var(--success); }
.mock-rem-info { flex: 1; }
.mock-rem-title {
  font-size: 12px;
  font-weight: 700;
  color: #F1F5F9;
}
.mock-rem-sub {
  font-size: 10px;
  color: #64748B;
  margin-top: 1px;
}
.mock-ai-badge {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: #94A3B8;
  background: rgba(249, 115, 22, 0.08);
  padding: 8px;
  border-radius: 8px;
}
.mock-ai-badge span {
  margin-right: 2px;
}

/* ============================================
   How It Works
   ============================================ */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-alt);
}
.steps {
  max-width: 620px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
}
.step.visible {
  opacity: 1;
  transform: translateY(0);
}
.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.step-connector {
  width: 2px;
  height: 32px;
  background: var(--border);
  margin-left: 23px;
}

/* ============================================
   Vehicle Types
   ============================================ */
.vehicles {
  padding: 100px 0;
}
.vehicle-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vehicle-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.vehicle-type-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.vehicle-type-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.vehicle-type-emoji { font-size: 40px; }
.vehicle-type-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* ============================================
   App Preview (And More)
   ============================================ */
.app-preview {
  padding: 100px 0;
  background: var(--bg-alt);
}
.preview-content {
  max-width: 640px;
}
.preview-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.preview-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
}
.preview-feature.visible {
  opacity: 1;
  transform: translateY(0);
}
.preview-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.preview-feature strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.preview-feature p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 100px 0;
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(10px);
}
.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}
.faq-question svg {
  flex-shrink: 0;
  color: var(--text-tertiary);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   Video Demo
   ============================================ */
.video-demo {
  padding: 100px 0;
  background: var(--bg-dark);
  color: #fff;
}
.video-demo .section-badge {
  background: rgba(249, 115, 22, 0.2);
}
.video-demo .section-title { color: #F1F5F9; }
.video-demo .section-subtitle { color: #94A3B8; }
.video-wrapper {
  max-width: 440px;
  margin: 0 auto;
}
.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.video-poster {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 60px 40px;
  background: linear-gradient(135deg, #1E293B, #334155);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.video-poster:hover {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.2);
}
.video-poster-logo {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}
.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-poster:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.5);
}
.video-play-btn svg {
  margin-left: 4px;
}
.video-poster-text {
  font-size: 15px;
  font-weight: 600;
  color: #94A3B8;
}
.demo-animation {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: linear-gradient(135deg, #1E293B, #334155);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
}
.demo-phone {
  display: flex;
  justify-content: center;
}
.phone-demo {
  width: 240px;
  height: 460px;
  border-radius: 32px;
}
.phone-demo::before {
  width: 80px;
  height: 22px;
}
.phone-demo .phone-screen {
  border-radius: 24px;
  padding: 38px 12px 12px;
}
.demo-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.demo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
}
.demo-slide.active {
  opacity: 1;
}
.demo-step-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-light);
  margin-bottom: 8px;
}
.demo-field {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  background: #475569;
  border-radius: 6px;
  margin-bottom: 4px;
  font-size: 11px;
}
.demo-field span:first-child { color: #94A3B8; }
.demo-typed {
  color: #F1F5F9;
  font-weight: 600;
}
.demo-progress {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.demo-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--primary);
  border-radius: 2px;
}
.demo-steps-nav {
  display: flex;
  gap: 12px;
}
.demo-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #64748B;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.demo-step-dot.active {
  background: var(--primary);
  color: #fff;
}
.demo-step-dot:hover {
  background: rgba(255,255,255,0.15);
}
.demo-step-dot.active:hover {
  background: var(--primary-dark);
}

/* ============================================
   Download CTA
   ============================================ */
.download {
  padding: 100px 0;
  background: var(--bg-alt);
}
.download-inner {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-dark), #1E293B);
  border-radius: 24px;
  padding: 64px 40px;
  color: #fff;
}
.download-app-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.download-inner h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}
.download-inner p {
  font-size: 16px;
  color: #94A3B8;
  margin-bottom: 36px;
}
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 14px;
  transition: all 0.2s ease;
}
.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.store-badge small {
  display: block;
  font-size: 10px;
  color: var(--text-tertiary);
  line-height: 1;
}
.store-badge strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: #94A3B8;
  padding: 64px 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo {
  color: #F1F5F9;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: #64748B;
}
.footer-links {
  display: flex;
  gap: 64px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #F1F5F9;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: #64748B;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #CBD5E1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
}
.powered-by {
  color: #475569;
}
.powered-by strong {
  color: #64748B;
}

/* ============================================
   Animations
   ============================================ */
.feature-card,
.step,
.vehicle-type-card,
.preview-feature,
.faq-item,
.showcase-row {
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.feature-card:nth-child(2) { transition-delay: 0.05s; }
.feature-card:nth-child(3) { transition-delay: 0.1s; }
.feature-card:nth-child(4) { transition-delay: 0.15s; }
.feature-card:nth-child(5) { transition-delay: 0.2s; }
.feature-card:nth-child(6) { transition-delay: 0.25s; }
.feature-card:nth-child(7) { transition-delay: 0.3s; }
.feature-card:nth-child(8) { transition-delay: 0.35s; }
.feature-card:nth-child(9) { transition-delay: 0.4s; }
.feature-card:nth-child(10) { transition-delay: 0.45s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-title { font-size: 42px; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .vehicle-types-grid { grid-template-columns: repeat(4, 1fr); }
  .showcase-row { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { text-align: center; }

  .hero { padding: 120px 0 60px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-title { font-size: 36px; }
  .hero-subtitle {
    max-width: 100%;
    font-size: 16px;
  }
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-mockup {
    width: 240px;
    height: 480px;
    border-radius: 32px;
  }
  .phone-mockup::before {
    width: 80px;
    height: 24px;
  }
  .phone-screen {
    border-radius: 24px;
    padding: 40px 12px 12px;
  }
  .phone-sm {
    width: 240px;
    height: 480px;
    border-radius: 32px;
  }

  .section-title { font-size: 28px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .vehicle-types-grid { grid-template-columns: repeat(2, 1fr); }

  .showcase-row,
  .showcase-row-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .showcase-row .showcase-phone,
  .showcase-row-reverse .showcase-phone {
    order: -1;
    justify-self: center;
  }
  .showcase-row-reverse .showcase-content { order: 2; }
  .showcase-content { max-width: 100%; }
  .showcase-bullets { align-items: center; }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
  .footer-links { gap: 40px; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .download-inner { padding: 48px 24px; }
  .download-inner h2 { font-size: 24px; }
  .download-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stat-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .vehicle-types-grid { grid-template-columns: repeat(2, 1fr); }
}
