:root {
  --bg-primary: #050505;
  --bg-surface: #0f0f11;
  --bg-elevated: #1a1a1c;

  --text-primary: #f8f9fa;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;

  --gold: #F2B705;
  --gold-glow: rgba(242, 183, 5, 0.2);
  --gold-gradient: linear-gradient(135deg, #FFD700 0%, #F2B705 100%);
  --green: #22C55E;

  --border-color: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(15, 15, 17, 0.7);
  --glass-bg-scrolled: rgba(15, 15, 17, 0.9);
  --border-color-scrolled: rgba(255, 255, 255, 0.1);
  --mobile-menu-bg: rgba(5, 5, 5, 0.97);
  --hero-glow-fade: rgba(5, 5, 5, 0);
  --svg-icon-filter: brightness(0) invert(1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

body.theme-light {
  --bg-primary: #f2f4f7;
  --bg-surface: #ffffff;
  --bg-elevated: #e4e7ec;

  --text-primary: #101828;
  --text-secondary: #475467;
  --text-muted: #98a2b3;

  --gold: #D99B00;
  --gold-glow: rgba(217, 155, 0, 0.15);
  --gold-gradient: linear-gradient(135deg, #F2B705 0%, #D99B00 100%);
  --green: #16A34A;

  --border-color: rgba(0, 0, 0, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-scrolled: rgba(255, 255, 255, 0.9);
  --border-color-scrolled: rgba(0, 0, 0, 0.15);
  --mobile-menu-bg: rgba(255, 255, 255, 0.97);
  --hero-glow-fade: rgba(255, 255, 255, 0);
  --svg-icon-filter: brightness(0) invert(0.15);
}

.theme-switch {
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  width: 72px;
  height: 32px;
  border-radius: 9999px;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.theme-switch:hover {
  transform: scale(1.03);
}

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

.theme-switch .switch-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 32px;
  height: 26px;
  background: var(--text-primary);
  border-radius: 9999px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

body.theme-light .theme-switch .switch-slider {
  transform: translateX(34px);
  background: var(--gold);
}

.theme-switch .switch-option {
  width: 32px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  z-index: 2;
  transition: color 0.3s;
  color: var(--text-muted);
}

body.theme-dark .theme-switch .option-dark {
  color: var(--bg-primary);
}

body.theme-light .theme-switch .option-light {
  color: #ffffff;
}

#navbar.scrolled {
  background: var(--glass-bg-scrolled);
  border-bottom: 1px solid var(--border-color-scrolled);
}

@media (max-width: 768px) {
  .nav-actions {
    margin-left: auto;
    margin-right: 12px;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 12;
}

.section-padding {
  padding: 100px 0;
}

.bg-surface {
  background-color: var(--bg-surface);
  border: none;
  border-radius: 0;
  margin: 0;
}

.text-gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo img {
  height: 28px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

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

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--mobile-menu-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  z-index: 99;
  padding: 24px 0;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 14px 24px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  display: block;
}

.mobile-menu a:hover {
  color: var(--text-primary);
  background: var(--bg-elevated);
}

.mobile-menu .mobile-cta {
  margin: 20px 24px 8px;
  text-align: center;
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-pill);
  background: var(--text-primary);
  font-weight: 600;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border-color);
  display: inline-block;
}
.btn-secondary:hover {
  background: var(--border-color);
}

.btn-large {
  padding: 14px 28px;
  font-size: 1.05rem;
}

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 90px 0 60px 0;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--gold-glow) 0%, var(--hero-glow-fade) 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.hero-content {
  flex: 0 1 650px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
#contact {
  padding-top: 100px;
  padding-bottom: 0;
}
.hero-pill svg {
  color: var(--gold);
}

.hero-title {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.hero-title > span {
  max-width: 100%;
  white-space: normal;
}

.hero-title-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.25em;
  align-items: center;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
  padding: 16px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: fit-content;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-color);
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-visual {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.device-frame-premium {
  position: relative;
  width: 270px;
  height: 550px;
  background: #000;
  border-radius: 40px;
  border: 8px solid #222;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
  overflow: hidden;
  animation: float-premium 6s ease-in-out infinite;
}

.device-frame-small {
  position: relative;
  width: 230px;
  height: 470px;
  background: #000;
  border-radius: 36px;
  border: 6px solid #222;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
  overflow: hidden;
  animation: float-small 6s ease-in-out infinite 0.5s;
}

@keyframes float-premium {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes float-small {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.device-frame-premium::after,
.device-frame-small::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
  z-index: 3;
}

.device-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-glare {
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 40%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 90vw;
  margin: 0 auto 60px;
}

.section-title {
  font-size: clamp(1.6rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  white-space: normal;
  word-break: break-word;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

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

.step-card {
  padding: 40px 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  background: var(--bg-elevated);
  transform: translateY(-5px);
  border-color: rgba(242, 183, 5, 0.3);
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

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

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

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

.eco-card {
  padding: 36px 28px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.eco-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 183, 5, 0.3);
}

.eco-card-featured {
  border-color: rgba(242, 183, 5, 0.4);
  background: linear-gradient(180deg, rgba(242, 183, 5, 0.06) 0%, var(--bg-primary) 100%);
}

.eco-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  color: var(--gold);
  margin-bottom: 24px;
}

.eco-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.eco-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eco-list li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.eco-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

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

.fleet-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.fleet-card:hover {
  background: var(--bg-elevated);
  transform: translateY(-3px);
  border-color: rgba(242, 183, 5, 0.3);
}

.fleet-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-primary);
}

.fleet-svg-icon {
  width: 32px;
  filter: var(--svg-icon-filter);
}

.fleet-card h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.fleet-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.driver-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.driver-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.driver-benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.driver-benefit-item:hover {
  border-color: rgba(242, 183, 5, 0.3);
  transform: translateX(5px);
}

.benefit-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.driver-benefit-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.driver-benefit-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.driver-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 700px;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.compare-table thead th {
  background: var(--bg-elevated);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  position: sticky;
  top: 0;
}

.compare-table tbody tr:hover {
  background: rgba(242, 183, 5, 0.04);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody td {
  color: var(--text-secondary);
  background: var(--bg-surface);
}

.col-highlight {
  background: rgba(242, 183, 5, 0.08) !important;
  color: var(--text-primary) !important;
  border-left: 1px solid rgba(242, 183, 5, 0.2);
  border-right: 1px solid rgba(242, 183, 5, 0.2);
}

.compare-table thead .col-highlight {
  background: rgba(242, 183, 5, 0.15) !important;
  color: var(--gold) !important;
}

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

.usp-card {
  padding: 32px 28px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.usp-card:hover {
  border-color: rgba(242, 183, 5, 0.3);
  transform: translateY(-4px);
}

.usp-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.usp-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

.investor-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.investor-grid .investor-stat-card:nth-child(1),
.investor-grid .investor-stat-card:nth-child(2),
.investor-grid .investor-stat-card:nth-child(3) {
  grid-column: span 2;
}

.investor-grid .investor-stat-card:nth-child(4),
.investor-grid .investor-stat-card:nth-child(5) {
  grid-column: span 3;
}

.investor-stat-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.investor-stat-card:hover {
  border-color: rgba(242, 183, 5, 0.3);
  transform: translateY(-3px);
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.expansion-roadmap {
  padding: 48px 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}

.expansion-roadmap h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.roadmap-phases {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.roadmap-phase {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}

.roadmap-phase:not(:last-child) .phase-marker::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 20px);
  background: var(--border-color);
}

.phase-marker {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  background: var(--bg-surface);
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
  z-index: 1;
}

.phase-active .phase-marker {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.phase-content strong {
  font-size: 1rem;
  display: block;
  margin-bottom: 4px;
}

.phase-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.investor-cta-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-box-text h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.cta-box-text p {
  color: var(--text-secondary);
}

.footer-section {
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.footer-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.footer-cta p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.download-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  transition: var(--transition);
}

.store-badge:hover {
  background: var(--bg-elevated);
  border-color: rgba(242, 183, 5, 0.3);
}

.badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.badge-text span {
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.badge-text strong {
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-bottom {
  border-top: none;
  padding: 40px 0;
  background: var(--bg-surface);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo {
  height: 36px;
  margin-bottom: 16px;
  opacity: 1;
}

.fb-left p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.fb-links {
  display: flex;
  gap: 60px;
}

.fb-col h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.fb-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

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

.reveal {
  opacity: 1;
}

@media (max-width: 1100px) {
  .steps-grid, .ecosystem-grid, .fleet-grid, .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .section-padding {
    padding: 72px 0;
  }
  .section-header {
    margin-bottom: 48px;
  }
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 20px;
    gap: 40px;
  }
  .hero-content {
    flex: initial;
  }
  .hero-title {
    align-items: center;
    text-align: center;
    font-size: clamp(2.2rem, 7vw, 4rem);
  }
  .hero-title-flex {
    justify-content: center;
  }
  .hero-subtitle {
    margin: 0 auto 24px;
    font-size: 1rem;
  }
  .hero-stats-row {
    margin: 0 auto 32px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-badges {
    justify-content: center !important;
  }
  .steps-grid, .ecosystem-grid, .usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .investor-grid .investor-stat-card {
    grid-column: auto !important;
  }
  .driver-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    justify-content: center;
  }
  .driver-visual {
    order: -1;
  }
  .investor-cta-box {
    flex-direction: column;
    text-align: center;
  }
  .device-frame-premium {
    width: 220px;
    height: 450px;
  }
  .device-frame-small {
    width: 200px;
    height: 410px;
  }
  .footer-section {
    padding-top: 30px;
  }
  .footer-cta {
    margin-bottom: 56px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .section-padding {
    padding: 56px 0;
  }
  .section-header {
    margin-bottom: 36px;
  }
  .steps-grid, .ecosystem-grid, .usp-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .investor-grid .investor-stat-card {
    grid-column: auto !important;
  }
  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .hero-title br {
    display: none;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    display: block;
  }
  .hero-stats-row {
    flex-wrap: nowrap !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    width: 100% !important;
    max-width: 100%;
    margin: 0 auto 24px !important;
    justify-content: space-between;
  }
  .hero-stats-row .hero-stat {
    flex: 1;
  }
  .hero-stats-row .hero-stat strong {
    font-size: 1.1rem !important;
  }
  .hero-stats-row .hero-stat span {
    font-size: 0.6rem !important;
  }
  .hero-stats-row .hero-stat-divider {
    height: 24px;
  }
  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .compare-table {
    font-size: 0.8rem;
    min-width: 100% !important;
  }
  .compare-table th,
  .compare-table td {
    padding: 12px 10px !important;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 36px;
  }
  .fb-links {
    gap: 32px;
    flex-wrap: wrap;
  }
  .download-badges {
    flex-direction: row !important;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }
  .store-badge {
    padding: 10px 16px !important;
    gap: 10px !important;
    flex: 1;
    max-width: 170px;
    justify-content: center;
  }
  .store-badge i {
    font-size: 20px !important;
  }
  .badge-text span {
    font-size: 0.55rem !important;
  }
  .badge-text strong {
    font-size: 0.9rem !important;
  }
  .expansion-roadmap {
    padding: 28px 20px;
  }
  .stat-value {
    font-size: 2.2rem;
  }
  .contact-card {
    padding: 28px 20px;
  }
  .step-card {
    padding: 28px 20px;
  }
  .eco-card {
    padding: 24px 20px;
  }
  .footer-section {
    padding-top: 10px;
  }
  .footer-cta {
    margin-bottom: 40px;
  }
  .device-frame-premium {
    width: 85vw;
    height: calc(85vw * 2.04);
    max-width: 250px;
    max-height: 510px;
    border-radius: 32px;
  }
  .device-frame-small {
    width: 180px;
    height: 370px;
  }
  .road-separator {
    height: 80px;
    margin: -40px 0;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding: 44px 0;
  }
  .hero-title {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .hero-pill {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
  .hero-stats-row {
    gap: 8px !important;
    padding: 10px 12px !important;
  }
  .hero-stats-row .hero-stat strong {
    font-size: 1rem !important;
  }
  .hero-stats-row .hero-stat span {
    font-size: 0.55rem !important;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .driver-benefit-item {
    padding: 16px;
    gap: 14px;
  }
  .store-badge {
    padding: 8px 12px !important;
    max-width: 150px;
  }
  .badge-text strong {
    font-size: 0.82rem !important;
  }
  .contact-card h2 {
    font-size: 1.7rem;
  }
  .contact-details {
    gap: 16px;
  }
  .fb-links {
    flex-direction: column;
    gap: 24px;
  }
  .device-frame-premium {
    width: 85vw;
    height: calc(85vw * 2.04);
    max-width: 240px;
    max-height: 490px;
    border-radius: 28px;
  }
  .device-frame-small {
    width: 155px;
    height: 320px;
  }
  .section-header {
    margin-bottom: 28px;
  }
  .road-separator {
    height: 60px;
    margin: -30px 0;
  }
}

.hero-badges {
  justify-content: flex-start;
}

/* Contact Card Styles */
.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.contact-card h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.contact-desc {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(242, 183, 5, 0.1);
  border: 1px solid rgba(242, 183, 5, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-link, .contact-info {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.contact-link:hover {
  color: var(--gold);
}

.contact-btn {
  margin-top: 16px;
}

@media (max-width: 992px) {
  .contact-details {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .contact-card {
    padding: 36px 28px;
  }
}

@media (max-width: 640px) {
  .contact-details {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-card {
    padding: 28px 20px;
    text-align: center;
  }
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Road Separator */
.road-separator {
  height: 120px;
  width: 100%;
  background: transparent;
  position: relative;
  overflow: hidden;
  margin: -60px 0;
  z-index: 10;
  pointer-events: none;
}

.road-separator svg {
  width: 100%;
  height: 100%;
  display: block;
}

.road-dash {
  stroke-dasharray: 12, 16;
  animation: run-road 1s linear infinite;
}

@keyframes run-road {
  from {
    stroke-dashoffset: 28;
  }
  to {
    stroke-dashoffset: 0;
  }
}
