﻿/* ============================================================
   KTHEMA GATI — Landing Page Stylesheet
   Brand: Navy Blue #1C3C9A | Black #000000 | White #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary:       #1C3C9A;
  --primary-light: #2851CC;
  --primary-dark:  #122878;
  --primary-glow:  rgba(28, 60, 154, 0.18);
  --black:         #000000;
  --dark:          #0D1117;
  --dark-2:        #1A1F2E;
  --dark-3:        #252D3D;
  --text:          #1A1A2E;
  --text-muted:    #5A6478;
  --text-light:    #9BA3B5;
  --white:         #FFFFFF;
  --off-white:     #F7F9FF;
  --blue-tint:     #EEF2FF;
  --border:        #E2E8F0;
  --border-dark:   #2D3748;

  --shadow-xs:  0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.15);
  --shadow-blue: 0 8px 32px rgba(28,60,154,0.25);

  --r-sm:   8px;
  --r:      14px;
  --r-lg:   24px;
  --r-xl:   36px;
  --r-full: 9999px;

  --nav-h:     92px;
  --section-v: 100px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --t:         0.3s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

.section { padding: var(--section-v) 0; }
.section-sm { padding: 60px 0; }

.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-primary { color: var(--primary); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--blue-tint);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--r-full);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-dark {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: var(--t) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(28,60,154,0.35);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ============================================================
   NAVIGATION  — Premium Dark Edition
   ============================================================ */

/* Top accent glow line */
.navbar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--primary-light) 25%,
    #4B6EF5 50%,
    var(--primary-light) 75%,
    transparent 100%);
  z-index: 2;
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  /* KEY: make navbar itself the flex container so .container is vertically centered */
  display: flex;
  align-items: center;
  /* needed so ::before (accent line) positions against the navbar */
  /* position:fixed already makes it a containing block */
  background: rgba(5, 10, 32, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.055);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(5, 10, 32, 0.99);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5), 0 0 80px rgba(28,60,154,0.06);
  border-bottom-color: rgba(255,255,255,0.08);
}

/* All navbars are dark — remove the separate .dark-nav modifier */
.navbar.dark-nav {
  background: rgba(5, 10, 32, 0.97);
}

/* ---- Inner layout ---- */
.navbar > .container {
  /* stretch the container to fill the navbar so nav-inner can flex inside it */
  width: 100%;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;   /* was height:100% — that broke because .container had no height */
  gap: 24px;
}

/* ---- Logo ---- */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}

.nav-logo:hover { opacity: 0.88; transform: scale(0.98); }

.nav-logo img {
  height: 144px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 14px rgba(40, 80, 200, 0.4));
}

/* ---- Links ---- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.01em;
  border-radius: 6px;
  transition: color var(--t) var(--ease);
  white-space: nowrap;
}

/* Underline slide-in effect */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 15px; right: 15px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-light), #4B6EF5);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.95);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--white);
  font-weight: 600;
}

.nav-link.active::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, #7B9EFF, var(--primary-light));
}

/* Light nav variant (unused now, kept for safety) */
.dark-nav .nav-link         { color: rgba(255,255,255,0.65); }
.dark-nav .nav-link:hover   { color: rgba(255,255,255,0.95); }
.dark-nav .nav-link.active  { color: var(--white); }

/* ---- CTA area ---- */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Thin vertical divider before CTA */
.nav-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.12);
  margin-right: 4px;
}

/* Override btn styles inside nav for a tighter, refined look */
.nav-cta .btn-outline-white {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  font-size: 13.5px;
  padding: 9px 18px;
}

.nav-cta .btn-outline-white:hover {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  background: rgba(255,255,255,0.07);
  transform: none;
}

.nav-cta .btn-primary {
  font-size: 13.5px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #4B6EF5 100%);
  border: 1px solid rgba(75,110,245,0.5);
  box-shadow: 0 0 20px rgba(40,81,204,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
}

.nav-cta .btn-primary:hover {
  background: linear-gradient(135deg, #3060E8 0%, #5A7BFF 100%);
  box-shadow: 0 4px 28px rgba(40,81,204,0.55), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5.5px;
  width: 40px;
  height: 40px;
  padding: 0 6px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}

.hamburger:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
}

.hamburger span {
  display: block;
  height: 1.5px;
  width: 100%;
  border-radius: 2px;
  background: rgba(255,255,255,0.85);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), width 0.3s var(--ease);
}

.hamburger span:nth-child(2) { width: 75%; }

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

/* ---- Mobile nav — full overlay ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: rgba(4, 8, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.06);
  z-index: 998;
  flex-direction: column;
  padding: 20px 24px 36px;
  gap: 4px;
  overflow-y: auto;
  animation: slideDown 0.28s var(--ease) both;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav.open { display: flex; }
.mobile-nav.dark-bg { background: rgba(4, 8, 26, 0.98); }

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 15px 18px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-radius: var(--r-sm);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--t) var(--ease), background var(--t) var(--ease), padding-left var(--t) var(--ease);
}

.mobile-nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  padding-left: 24px;
}

.mobile-nav-link.active {
  color: #7B9EFF;
  font-weight: 600;
}

.mobile-nav-sep {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 12px 0;
}

.mobile-nav .btn {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}

.mobile-nav .btn-primary {
  background: linear-gradient(135deg, var(--primary-light), #4B6EF5);
  box-shadow: 0 4px 20px rgba(40,81,204,0.4);
}

/* ---- SVG Icon system ---- */
/* Icons inherit currentColor from their container */
.feature-icon svg,
.step-icon-wrap svg,
.trust-icon svg,
.award-icon svg,
.contact-item-icon svg,
.social-link svg,
.footer-social svg,
.value-icon svg,
.mission-icon svg {
  display: block;
  flex-shrink: 0;
}

/* Feature card icons: blue at rest → white on card hover */
.feature-icon {
  color: var(--primary);
}
.feature-card:hover .feature-icon {
  color: var(--white);
}

/* Pricing plan check icons */
.check-icon svg { display: block; }

/* Step numbers and icons */
.step-icon-wrap {
  font-size: 0; /* remove any leftover text */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--primary);
}

/* Trust bar */
.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
}

/* Award section (dark bg) */
.award-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #7B9EFF;
}

/* Contact icons */
.contact-item-icon {
  color: var(--primary);
}

/* Social links */
.social-link svg { pointer-events: none; }
.footer-social a { display: flex; align-items: center; justify-content: center; }

/* Store button icons */
.store-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0A0E2A 0%, #0D1560 30%, #122878 60%, #0A0E2A 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.hero-shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #2851CC 0%, transparent 70%);
  top: -200px; right: -100px;
}

.hero-shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #1C3C9A 0%, transparent 70%);
  bottom: -100px; left: -100px;
}

.hero-shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #4B6EF5 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: #4BDE80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.05;
}

.hero-tagline {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* Hero Visual / Car SVG */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.car-scene {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.car-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(40, 80, 200, 0.4) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.car-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 32px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.car-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.car-svg-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: var(--r);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

.floating-badge-1 {
  top: 16px; right: -20px;
  animation-delay: 0s;
}

.floating-badge-2 {
  bottom: 40px; left: -20px;
  animation-delay: 1.5s;
}

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

.floating-badge .fb-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.fb-blue { background: var(--blue-tint); }
.fb-green { background: #DCFCE7; }

.floating-badge .fb-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.floating-badge .fb-text span {
  font-size: 11px;
  color: var(--text-muted);
}

.car-status-bar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-dot {
  width: 8px; height: 8px;
  background: #4BDE80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

.status-text { flex: 1; }

.status-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.status-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.progress-wrap {
  margin-top: 8px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-light), #4B6EF5);
  border-radius: 2px;
  animation: progress-fill 3s ease-in-out infinite alternate;
}

@keyframes progress-fill {
  0% { width: 35%; }
  100% { width: 85%; }
}

/* ============================================================
   HERO DASHBOARD VISUAL
   ============================================================ */
.dash-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dash-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(40,80,200,0.35) 0%, transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}
.dash-chips { display: flex; gap: 10px; position: relative; z-index: 1; }
.dash-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
}
.dash-chip-green { background: rgba(75,222,128,0.1); border-color: rgba(75,222,128,0.25); color: #4BDE80; }
.dash-chip-dot { width: 6px; height: 6px; background: #4BDE80; border-radius: 50%; animation: pulse-dot 2s infinite; }
.dash-main-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.dash-main-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
}
.dash-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-card-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.dash-live-dot { width: 7px; height: 7px; background: #4BDE80; border-radius: 50%; animation: pulse-dot 2s infinite; }
.dash-live-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em; color: #4BDE80;
  background: rgba(75,222,128,0.12); border: 1px solid rgba(75,222,128,0.3);
  border-radius: 999px; padding: 3px 10px;
}
.dash-car-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  margin-bottom: 20px;
}
.dash-car-icon-wrap {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 64px; height: 44px;
  background: rgba(28,60,154,0.4); border-radius: 8px; border: 1px solid rgba(75,110,245,0.3);
}
.dash-car-info { flex: 1; }
.dash-car-info strong { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.dash-car-info span { font-size: 12px; color: rgba(255,255,255,0.45); }
.dash-eta { text-align: center; flex-shrink: 0; }
.dash-eta-value { font-size: 22px; font-weight: 900; color: #fff; font-family: 'Space Grotesk', sans-serif; line-height: 1; }
.dash-eta-value small { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5); }
.dash-eta-label { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.dash-steps-row { display: flex; align-items: center; margin-bottom: 18px; }
.dash-step-item { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; }
.dash-step-item span { font-size: 10px; color: rgba(255,255,255,0.35); white-space: nowrap; }
.dash-step-item.done span { color: rgba(255,255,255,0.65); }
.dash-step-item.active span { color: #7B9EFF; font-weight: 600; }
.dash-step-circle {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3);
}
.dash-step-item.done .dash-step-circle { background: rgba(75,222,128,0.15); border-color: #4BDE80; color: #4BDE80; }
.dash-step-item.active .dash-step-circle { background: rgba(75,110,245,0.2); border-color: #4B6EF5; }
.dash-step-pulse { width: 8px; height: 8px; background: #4B6EF5; border-radius: 50%; animation: pulse-dot 1.5s infinite; }
.dash-step-line { flex: 1; height: 1.5px; background: rgba(255,255,255,0.1); margin-bottom: 16px; }
.dash-step-line.done { background: rgba(75,222,128,0.5); }
.dash-step-line.active { background: linear-gradient(90deg, rgba(75,222,128,0.5), rgba(75,110,245,0.6)); }
.dash-prog-row { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.dash-prog-pct { color: rgba(255,255,255,0.85); font-weight: 700; }
.dash-prog-track { height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; margin-bottom: 18px; }
.dash-prog-fill {
  height: 100%; width: 65%;
  background: linear-gradient(90deg, #2851CC, #4B6EF5, #7B9EFF);
  border-radius: 3px;
  animation: progress-fill 3s ease-in-out infinite alternate;
}
.dash-tech-row { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.07); }
.dash-tech-avatar {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #2851CC, #4B6EF5);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.dash-tech-info { flex: 1; }
.dash-tech-info strong { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.dash-tech-info span { font-size: 11px; color: rgba(255,255,255,0.4); }
.dash-tech-rating { display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; color: #F59E0B; }
.dash-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; position: relative; z-index: 1; }
.dash-metric {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 14px; text-align: center;
  backdrop-filter: blur(12px); transition: background 0.3s ease;
}
.dash-metric:hover { background: rgba(255,255,255,0.1); }
.dash-metric-val { font-size: 20px; font-weight: 900; color: #fff; font-family: 'Space Grotesk', sans-serif; line-height: 1; margin-bottom: 4px; }
.dash-metric-lbl { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 500; }
/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--dark);
  padding: 24px 0;
  border-bottom: 1px solid var(--border-dark);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 500;
}

.trust-icon {
  font-size: 20px;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features { background: var(--white); }

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header .section-subtitle {
  margin: 0 auto;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: var(--t) var(--ease);
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 40px rgba(28,60,154,0.12);
  transform: translateY(-4px);
}

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

.feature-icon {
  width: 52px; height: 52px;
  background: var(--blue-tint);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--t) var(--ease);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--off-white); }

.hiw-header {
  text-align: center;
  margin-bottom: 64px;
}

.hiw-header .section-subtitle { margin: 0 auto; }

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0.3;
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-blue);
  position: relative;
  transition: var(--t) var(--ease);
}

.step:hover .step-number {
  transform: scale(1.1);
  background: var(--primary-light);
}

.step-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 50%, var(--dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  padding: 40px 24px;
  text-align: center;
  transition: var(--t) var(--ease);
}

.stat-card:hover {
  background: rgba(255,255,255,0.07);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: #4B6EF5;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ============================================================
   APP DOWNLOAD / CTA SECTION
   ============================================================ */
.download-section {
  background: var(--white);
  padding: var(--section-v) 0;
}

.download-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.download-content .section-label { color: var(--primary); }

.download-content h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.download-content p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--r);
  transition: var(--t) var(--ease);
  border: 1px solid var(--dark-3);
}

.store-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.store-btn-icon { font-size: 28px; }

.store-btn-text small {
  display: block;
  font-size: 11px;
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.store-btn-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.download-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 260px;
  height: 520px;
  background: var(--dark);
  border-radius: 40px;
  border: 6px solid #2D3748;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 100px;
  height: 28px;
  background: var(--dark);
  border-radius: 0 0 20px 20px;
  margin: 0 auto 0;
  position: relative;
  z-index: 2;
}

.phone-screen {
  flex: 1;
  background: linear-gradient(160deg, #0A0E2A 0%, #1C3C9A 100%);
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 12px;
}

.app-header-mock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.app-header-mock span {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.app-avatar {
  width: 28px; height: 28px;
  background: var(--primary-light);
  border-radius: 50%;
}

.app-card-mock {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px;
}

.app-card-mock .card-label {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.app-card-mock .card-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.app-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.app-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4BDE80;
}

.app-status-text {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

.app-progress-outer {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.app-progress-inner {
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, #4B6EF5, #4BDE80);
  border-radius: 2px;
}

.app-grid-mock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.app-mini-card {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.app-mini-card strong {
  display: block;
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 2px;
}

.phone-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(28,60,154,0.4) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-hero {
  background: linear-gradient(135deg, #0A0E2A 0%, #0D1560 50%, #0A0E2A 100%);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-hero h1 {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.pricing-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto;
}

.pricing-section { background: var(--off-white); padding: var(--section-v) 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--t) var(--ease);
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 48px rgba(28,60,154,0.14);
  transform: translateY(-6px);
}

.pricing-card.featured {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-color: transparent;
  box-shadow: 0 16px 60px rgba(28,60,154,0.35);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 24px 80px rgba(28,60,154,0.45);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.pricing-card.featured .plan-name {
  color: rgba(255,255,255,0.65);
}

.plan-price {
  font-size: 52px;
  font-weight: 900;
  color: var(--dark);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card.featured .plan-price {
  color: var(--white);
}

.plan-price sup {
  font-size: 24px;
  font-weight: 600;
  vertical-align: super;
}

.plan-price sub {
  font-size: 16px;
  font-weight: 400;
  vertical-align: baseline;
  opacity: 0.6;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.pricing-card.featured .plan-desc {
  color: rgba(255,255,255,0.65);
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.pricing-card.featured .plan-divider {
  background: rgba(255,255,255,0.15);
}

.plan-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.pricing-card.featured .plan-feature {
  color: rgba(255,255,255,0.85);
}

.check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card.featured .check-icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.btn-plan {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r);
  transition: var(--t) var(--ease);
  text-align: center;
}

.btn-plan-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-plan-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-plan-white {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-plan-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

/* Comparison table */
.comparison-section {
  background: var(--white);
  padding: var(--section-v) 0;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}

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

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
}

.compare-table thead th {
  background: var(--off-white);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.compare-table thead th.highlight {
  background: var(--primary);
  color: var(--white);
}

.compare-table td { font-size: 14px; color: var(--text-muted); }
.compare-table td.feature-label { font-weight: 500; color: var(--text); }
.compare-table .check { color: #16A34A; font-size: 16px; }
.compare-table .cross { color: #9CA3AF; font-size: 16px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(28,60,154,0.3) 0%, transparent 70%);
  filter: blur(60px);
}

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

.about-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.75;
}

.story-section { background: var(--white); padding: var(--section-v) 0; }

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

.story-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-visual {
  background: var(--blue-tint);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  text-align: center;
}

.story-visual .big-number {
  font-size: 80px;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}

.story-visual p {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Awards Section */
.awards-section {
  background: var(--dark);
  padding: var(--section-v) 0;
  position: relative;
  overflow: hidden;
}

.awards-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.awards-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.awards-header .section-title { color: var(--white); }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.award-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--t) var(--ease);
}

.award-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(28,60,154,0.5);
  transform: translateY(-4px);
}

.award-icon {
  font-size: 52px;
  margin-bottom: 20px;
  display: block;
}

.award-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.award-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.award-year {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  background: rgba(28,60,154,0.4);
  border: 1px solid rgba(28,60,154,0.6);
  border-radius: var(--r-full);
  font-size: 12px;
  color: #7B9EFF;
  font-weight: 600;
}

/* Mission / Vision */
.mission-section { background: var(--off-white); padding: var(--section-v) 0; }

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

.mission-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
}

.mission-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mission-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Values */
.values-section { background: var(--white); padding: var(--section-v) 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-item {
  padding: 28px 24px;
  background: var(--off-white);
  border-radius: var(--r);
  text-align: center;
  transition: var(--t) var(--ease);
}

.value-item:hover {
  background: var(--blue-tint);
  transform: translateY(-4px);
}

.value-emoji { font-size: 32px; margin-bottom: 12px; display: block; }

.value-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.value-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto;
}

.contact-section { background: var(--off-white); padding: var(--section-v) 0; }

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

.contact-info h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--blue-tint);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.contact-item-text span {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-social {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.contact-social h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px; height: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--t) var(--ease);
  color: var(--text-muted);
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

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

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--off-white);
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  transition: var(--t) var(--ease);
  outline: none;
  appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

.form-submit { width: 100%; padding: 16px; font-size: 16px; font-weight: 700; }

/* ============================================================
   PAGE HEADER (shared)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, #0A0E2A 0%, #122878 100%);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-header-inner { position: relative; z-index: 1; }

.page-header h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--t); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand .footer-logo {
  height: 62px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(123,158,255,0.25));
  margin-bottom: 24px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--t) var(--ease);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--t) var(--ease);
}

.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: var(--t);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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

.fade-in {
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.fade-in.visible { opacity: 1; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Page transition */
body { animation: page-in 0.4s var(--ease) both; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-v: 72px; }

  .hero-inner          { grid-template-columns: 1fr; gap: 48px; padding: 60px 0; }
  .hero-visual         { display: none; }
  .hero-content        { max-width: 100%; text-align: center; }
  .hero-actions        { justify-content: center; }
  .hero-stats          { justify-content: center; }

  .features-grid       { grid-template-columns: repeat(2, 1fr); }
  .steps-grid          { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps-grid::before  { display: none; }
  .stats-grid          { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid        { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .download-inner      { grid-template-columns: 1fr; gap: 48px; }
  .download-visual     { display: none; }
  .story-inner         { grid-template-columns: 1fr; gap: 40px; }
  .awards-grid         { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .mission-grid        { grid-template-columns: 1fr; }
  .values-grid         { grid-template-columns: repeat(2, 1fr); }
  .contact-inner       { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --section-v: 56px; }

  .nav-links,
  .nav-divider,
  .nav-cta .btn-outline-white,
  .nav-cta .btn-primary { display: none; }
  .hamburger { display: flex; }

  .nav-logo img { height: 120px; }

  .hero-title { font-size: 38px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-card { padding: 28px 20px; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .store-buttons { flex-direction: column; }
  .pricing-card { padding: 28px 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
