/* ===============================
   VEROAGENCY - MAIN STYLESHEET
================================ */

:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #3B82F6;
  --accent: #F59E0B;
  --purple: #7C3AED;
  --dark: #0A0F1E;
  --dark-2: #111827;
  --dark-3: #1F2937;
  --text: #374151;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --white: #FFFFFF;
  --light: #F9FAFB;
  --light-2: #F3F4F6;
  --border: #E5E7EB;
  --success: #10B981;

  --gradient-hero: linear-gradient(135deg, #060d1f 0%, #0d1f4e 50%, #0a0f1e 100%);
  --gradient-primary: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  --gradient-text: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* === TYPOGRAPHY === */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37,99,235,0.1);
  color: var(--primary);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--dark-2);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.75;
}

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-subtitle { max-width: 580px; margin: 0 auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,99,235,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.45); }

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

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }

.btn-white {
  background: white;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-full { width: 100%; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(10,15,30,0.96);
  backdrop-filter: blur(24px);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 0.75rem; }

.logo-icon {
  width: 42px; height: 42px;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(37,99,235,0.4);
}

.logo-text { font-size: 1.35rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.logo-text span { color: #60A5FA; }

.nav-menu { display: flex; align-items: center; gap: 2.5rem; }

.nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-link:hover { color: var(--white); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex; align-items: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 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;
  pointer-events: none;
}

.hero-glow {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 55% at 15% 40%, rgba(37,99,235,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 65%, rgba(124,58,237,0.14) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(37,99,235,0.18);
  border: 1px solid rgba(37,99,235,0.35);
  color: #93C5FD;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  background: #60A5FA;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex; gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-number { display: block; font-size: 1.6rem; font-weight: 800; color: var(--white); }
.stat-label { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 2px; }

/* Dashboard Mockup */
.hero-visual { position: relative; }

.dashboard-mockup {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}

.mock-topbar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.9rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.mock-dots { display: flex; gap: 6px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #FF5F57; }
.mock-dot:nth-child(2) { background: #FEBC2E; }
.mock-dot:nth-child(3) { background: #28C840; }

.mock-url {
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 0.3rem 1rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}

.mock-body { padding: 1.2rem; }

.mock-kpis {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem; margin-bottom: 0.8rem;
}

.mock-kpi {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 0.8rem;
}

.mock-kpi-val { font-size: 1.3rem; font-weight: 800; color: white; line-height: 1; }
.mock-kpi-lbl { font-size: 0.6rem; color: rgba(255,255,255,0.35); margin-top: 3px; }
.mock-kpi-sub { font-size: 0.6rem; color: #4ADE80; margin-top: 2px; font-weight: 600; }

.mock-chart {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
}

.mock-chart-label { font-size: 0.65rem; color: rgba(255,255,255,0.3); margin-bottom: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

.mock-bars {
  display: flex; align-items: flex-end;
  gap: 0.4rem; height: 60px;
}

.mock-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  opacity: 0.75;
}
.mock-bar:nth-child(1) { height: 40%; background: var(--gradient-primary); }
.mock-bar:nth-child(2) { height: 65%; background: var(--gradient-primary); }
.mock-bar:nth-child(3) { height: 50%; background: var(--gradient-primary); }
.mock-bar:nth-child(4) { height: 80%; background: var(--gradient-primary); }
.mock-bar:nth-child(5) { height: 60%; background: var(--gradient-primary); }
.mock-bar:nth-child(6) { height: 90%; background: var(--gradient-primary); opacity: 1; }
.mock-bar:nth-child(7) { height: 70%; background: var(--gradient-primary); }

.mock-vehicles { display: flex; flex-direction: column; gap: 0.5rem; }
.mock-vehicle {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.6rem 0.8rem;
  background: rgba(255,255,255,0.04);
  border-radius: 8px; border: 1px solid rgba(255,255,255,0.06);
}
.mock-v-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-v-info { flex: 1; }
.mock-v-name { font-size: 0.7rem; color: rgba(255,255,255,0.75); font-weight: 600; }
.mock-v-status { font-size: 0.6rem; color: rgba(255,255,255,0.3); }
.mock-v-price { font-size: 0.7rem; font-weight: 700; }

/* Float cards */
.float-card {
  position: absolute;
  background: rgba(15,25,50,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.8rem 1.1rem;
  display: flex; align-items: center; gap: 0.75rem;
}

.float-card-1 { top: -18px; right: -16px; animation: floatY 4s ease-in-out infinite; }
.float-card-2 { bottom: 30px; left: -18px; animation: floatY 4s ease-in-out infinite 2s; }

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

.float-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}

.float-main { font-size: 0.85rem; font-weight: 700; color: white; }
.float-sub { font-size: 0.65rem; color: rgba(255,255,255,0.45); }

/* ===========================
   FEATURES
=========================== */
.features { padding: 6rem 0; background: var(--light); }

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,0.18);
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.feature-title { font-size: 1.1rem; font-weight: 700; color: var(--dark-2); margin-bottom: 0.6rem; }
.feature-desc { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

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

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 44px; left: calc(16.66% + 28px); right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(37,99,235,0.1) 100%);
}

.step { text-align: center; }

.step-num {
  width: 88px; height: 88px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; font-weight: 900; color: white;
  margin: 0 auto 1.5rem;
  position: relative; z-index: 1;
  box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}

.step-title { font-size: 1.1rem; font-weight: 700; color: var(--dark-2); margin-bottom: 0.6rem; }
.step-desc { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ===========================
   PRICING
=========================== */
.pricing {
  padding: 6rem 0;
  background: var(--dark);
  position: relative; overflow: hidden;
}

.pricing-glow {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 65% 55% at 15% 50%, rgba(37,99,235,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 65% 55% at 85% 50%, rgba(124,58,237,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.pricing .container { position: relative; z-index: 1; }
.pricing .section-title { color: var(--white); }
.pricing .section-subtitle { color: rgba(255,255,255,0.55); }
.pricing .section-tag { background: rgba(37,99,235,0.2); border-color: rgba(37,99,235,0.35); color: #93C5FD; }

.billing-note {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  color: #34D399;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 600;
  margin-top: 0.75rem;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; align-items: center;
}

.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.pricing-card.popular {
  background: rgba(37,99,235,0.1);
  border-color: rgba(37,99,235,0.4);
  transform: scale(1.04);
}

.pricing-card.popular:hover { transform: scale(1.04) translateY(-5px); }

.popular-bar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient-primary);
}

.popular-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white; font-size: 0.65rem;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.plan-name { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 0.3rem; }
.plan-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; }

.plan-vehicles {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.75rem; font-weight: 600;
  margin-bottom: 1.5rem;
}

.plan-price { margin-bottom: 1.5rem; }
.price-currency { font-size: 1.3rem; font-weight: 700; color: rgba(255,255,255,0.6); vertical-align: top; margin-top: 0.6rem; display: inline-block; }
.price-amount { font-size: 3.5rem; font-weight: 900; color: var(--white); line-height: 1; }
.price-period { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 0.4rem; }
.price-annual { font-size: 0.75rem; color: #34D399; font-weight: 600; margin-top: 0.2rem; }

.plan-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }

.plan-feat {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.7);
}

.feat-check {
  width: 18px; height: 18px; min-width: 18px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #34D399; font-size: 0.6rem; font-weight: 700;
}

.plan-btn {
  width: 100%; padding: 0.9rem;
  border-radius: var(--radius);
  font-weight: 600; font-size: 0.9rem;
  transition: all var(--transition);
  border: 2px solid rgba(255,255,255,0.18);
  color: white; background: rgba(255,255,255,0.07);
  cursor: pointer; font-family: var(--font);
}
.plan-btn:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }

.plan-btn-popular {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}
.plan-btn-popular:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,99,235,0.5); }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials { padding: 6rem 0; background: var(--light); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testi-stars { display: flex; gap: 2px; margin-bottom: 1rem; font-size: 0.85rem; }

.testi-text {
  color: var(--text); line-height: 1.75;
  font-size: 0.9rem; margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: 0.75rem; }

.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}

.author-name { font-size: 0.9rem; font-weight: 700; color: var(--dark-2); }
.author-role { font-size: 0.75rem; color: var(--text-muted); }

/* ===========================
   CONTACT
=========================== */
.contact { padding: 6rem 0; background: var(--white); }

.contact-layout {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 5rem; align-items: start;
}

.contact-info .section-title { font-size: 2rem; }
.contact-info .section-subtitle { margin-bottom: 2.5rem; }

.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-item { display: flex; align-items: flex-start; gap: 1rem; }

.c-icon {
  width: 50px; height: 50px; min-width: 50px;
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}

.c-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; margin-bottom: 3px; }
.c-value { font-size: 0.9rem; color: var(--text); font-weight: 500; line-height: 1.55; }
.c-value a { color: var(--primary); }
.c-value a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.form-title { font-size: 1.3rem; font-weight: 700; color: var(--dark-2); margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--dark-2); margin-bottom: 0.4rem; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem; font-family: var(--font);
  color: var(--text); background: var(--white);
  transition: all var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-textarea { resize: vertical; min-height: 130px; }
.form-select { cursor: pointer; }

/* ===========================
   CTA
=========================== */
.cta-section {
  padding: 6rem 0;
  background: var(--gradient-primary);
  text-align: center; position: relative; overflow: hidden;
}

.cta-section::before {
  content: ''; position: absolute;
  top: -80%; left: -15%; width: 55%; height: 260%;
  background: rgba(255,255,255,0.06);
  border-radius: 50%; pointer-events: none;
}

.cta-section::after {
  content: ''; position: absolute;
  bottom: -80%; right: -10%; width: 45%; height: 220%;
  background: rgba(255,255,255,0.04);
  border-radius: 50%; pointer-events: none;
}

.cta-title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; color: white; margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.78); margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--dark-2); padding: 5rem 0 2rem; }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}

.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.38); line-height: 1.75; margin-top: 1rem; max-width: 280px; }

.footer-col-title { font-size: 0.75rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 1.25rem; }

.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-link { font-size: 0.875rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-link:hover { color: rgba(255,255,255,0.75); }

.footer-contact-item { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer-contact-item a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-contact-item a:hover { color: rgba(255,255,255,0.75); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}

.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.28); }
.footer-made { font-size: 0.8rem; color: rgba(255,255,255,0.28); }
.footer-made span { color: #F87171; }

/* ===========================
   SIGNUP PAGE
=========================== */
.signup-page {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex; align-items: center;
  padding: 2rem 1.5rem;
  position: relative; overflow: hidden;
}

.signup-page::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 65% 55% at 20% 35%, rgba(37,99,235,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 80% 70%, rgba(124,58,237,0.14) 0%, transparent 60%);
  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;
  pointer-events: none;
}

.signup-wrapper { position: relative; z-index: 1; width: 100%; max-width: 540px; margin: 0 auto; }

.signup-logo { text-align: center; margin-bottom: 2rem; }

.signup-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.signup-card-title { font-size: 1.5rem; font-weight: 800; color: white; text-align: center; margin-bottom: 0.4rem; }
.signup-card-sub { font-size: 0.875rem; color: rgba(255,255,255,0.45); text-align: center; margin-bottom: 2rem; }
.signup-card-sub a { color: #60A5FA; font-weight: 500; }
.signup-card-sub a:hover { text-decoration: underline; }

.plan-select-label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.75rem; }

.plan-options { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; }

.plan-opt {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.1rem;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  cursor: pointer; transition: all var(--transition);
}
.plan-opt:hover { border-color: rgba(37,99,235,0.5); background: rgba(37,99,235,0.07); }
.plan-opt.active { border-color: var(--primary); background: rgba(37,99,235,0.12); }

.plan-opt-left { display: flex; align-items: center; gap: 0.85rem; }

.plan-opt-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.plan-opt.active .plan-opt-radio { border-color: var(--primary); background: var(--primary); }
.plan-opt.active .plan-opt-radio::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: white; }

.plan-opt-name { font-size: 0.9rem; font-weight: 600; color: white; }
.plan-opt-cars { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.plan-opt-price { font-size: 0.95rem; font-weight: 700; color: #60A5FA; }

.divider { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.divider-line { flex: 1; height: 1px; background: rgba(255,255,255,0.07); }
.divider-text { font-size: 0.7rem; color: rgba(255,255,255,0.28); text-transform: uppercase; letter-spacing: 0.07em; }

.signup-form .form-group { margin-bottom: 1rem; }
.signup-form .form-label { color: rgba(255,255,255,0.65); font-size: 0.82rem; }
.signup-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.signup-form .form-input,
.signup-form .form-select {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: white;
}
.signup-form .form-input::placeholder { color: rgba(255,255,255,0.2); }
.signup-form .form-input:focus,
.signup-form .form-select:focus { border-color: var(--primary); background: rgba(255,255,255,0.09); box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
.signup-form select option { background: var(--dark-2); color: white; }

.terms { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-align: center; margin-top: 1rem; line-height: 1.6; }
.terms a { color: #60A5FA; }

/* ===========================
   LOGIN PAGE
=========================== */
.login-card { max-width: 440px; margin: 0 auto; }

/* ===========================
   ALERTS
=========================== */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500;
  margin-bottom: 1rem;
  display: none;
}
.alert-success { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25); color: #34D399; }
.alert-error { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.25); color: #F87171; }
.alert.show { display: flex; align-items: center; gap: 0.5rem; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-5px); }

  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6,10,25,0.98);
    flex-direction: column; justify-content: center;
    padding: 2rem; gap: 2rem;
    transform: translateX(100%); transition: transform var(--transition);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-link { font-size: 1.2rem; }

  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .signup-form .form-row { grid-template-columns: 1fr; }
  .signup-card { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: center; gap: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ===========================
   ANIMATIONS
=========================== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* === MISC === */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mb-0 { margin-bottom: 0; }

/* ===========================
   FLEET PREVIEW SECTION
=========================== */
.fleet-preview {
  padding: 6rem 0;
  background: var(--dark-2);
  overflow: hidden;
}

.fleet-preview .section-title { color: var(--white); }
.fleet-preview .section-subtitle { color: rgba(255,255,255,0.55); }
.fleet-preview .section-tag { background: rgba(37,99,235,0.2); border-color: rgba(37,99,235,0.35); color: #93C5FD; }

.browser-mockup {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  background: #0c1422;
}

.browser-chrome {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.85rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
}

.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 0.3rem 1rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  max-width: 380px;
  margin: 0 auto;
}

.app-interface { padding: 1.4rem; }

.app-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 0.75rem;
}

.app-nav-items { display: flex; gap: 0.25rem; flex-wrap: wrap; }

.app-nav-item {
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  cursor: default;
  white-space: nowrap;
}
.app-nav-item.active { background: rgba(37,99,235,0.18); color: #60A5FA; }

.app-add-btn {
  font-size: 0.72rem;
  background: var(--gradient-primary);
  color: white; padding: 0.35rem 0.9rem;
  border-radius: 6px; font-weight: 600;
  cursor: default; white-space: nowrap;
  border: none; font-family: var(--font);
}

.app-filter-row { display: flex; gap: 0.6rem; margin-bottom: 1.2rem; flex-wrap: wrap; }

.app-chip {
  padding: 0.28rem 0.8rem;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 600;
  cursor: default;
  border: 1px solid transparent;
  white-space: nowrap;
}
.app-chip.all { background: rgba(37,99,235,0.15); color: #60A5FA; border-color: rgba(37,99,235,0.3); }
.app-chip.available { background: rgba(16,185,129,0.1); color: #34D399; border-color: rgba(16,185,129,0.2); }
.app-chip.rented { background: rgba(245,158,11,0.1); color: #FCD34D; border-color: rgba(245,158,11,0.2); }
.app-chip.maintenance { background: rgba(239,68,68,0.1); color: #F87171; border-color: rgba(239,68,68,0.2); }

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.vehicle-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition);
}
.vehicle-card:hover { border-color: rgba(37,99,235,0.35); background: rgba(255,255,255,0.07); }

.vc-image {
  position: relative; height: 140px; overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.vc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.vehicle-card:hover .vc-image img { transform: scale(1.06); }

.vc-badge {
  position: absolute; top: 0.55rem; left: 0.55rem;
  padding: 0.18rem 0.6rem;
  border-radius: 20px;
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.vc-badge.avail { background: rgba(16,185,129,0.9); color: white; }
.vc-badge.rent { background: rgba(245,158,11,0.9); color: white; }
.vc-badge.maint { background: rgba(239,68,68,0.88); color: white; }

.vc-body { padding: 0.8rem; }
.vc-name { font-size: 0.8rem; font-weight: 700; color: white; margin-bottom: 0.18rem; }
.vc-meta { font-size: 0.62rem; color: rgba(255,255,255,0.32); margin-bottom: 0.6rem; }
.vc-footer { display: flex; align-items: center; justify-content: space-between; }
.vc-price { font-size: 0.82rem; font-weight: 800; color: #60A5FA; }
.vc-btn {
  padding: 0.22rem 0.6rem;
  border-radius: 6px; font-size: 0.6rem; font-weight: 600;
  background: rgba(37,99,235,0.15); color: #60A5FA;
  border: 1px solid rgba(37,99,235,0.25); cursor: default;
  font-family: var(--font);
}

@media (max-width: 900px) {
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .app-nav-item:nth-child(n+4) { display: none; }
}
@media (max-width: 600px) {
  .vehicles-grid { grid-template-columns: 1fr 1fr; }
  .vc-image { height: 110px; }
  .app-nav-items { display: none; }
}

/* ===========================
   HERO FEATURES BADGES
=========================== */
.hero-trust {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 1.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.45); font-weight: 500;
}
.trust-icon { font-size: 0.9rem; }
