/* ============================================================
   CRUZE RIDESHARE — Shared Stylesheet
   ============================================================ */

/* === VARIABLES === */
:root {
  --bg:          #000000;
  --bg-surface:  #0a0a0a;
  --bg-card:     #111111;
  --bg-input:    #1a1a1a;
  --border:      #222222;
  --border-lt:   #2e2e2e;
  --text:        #ffffff;
  --text-muted:  #888888;
  --text-subtle: #555555;
  --purple:      #8b5cf6;
  --purple-lt:   #a78bfa;
  --purple-dk:   #7c3aed;
  --purple-bg:   rgba(139, 92, 246, 0.08);
  --purple-glow: rgba(139, 92, 246, 0.22);
  --success:     #22c55e;
  --error:       #ef4444;
  --nav-h:       110px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --max-w:       1120px;
  --transition:  0.2s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* === TYPOGRAPHY === */
h1 { font-size: clamp(40px, 6.5vw, 76px); font-weight: 900; letter-spacing: -2.5px; line-height: 1.04; }
h2 { font-size: clamp(28px, 3.8vw, 48px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; }
h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.3px; }
p  { line-height: 1.65; }

.gradient-text {
  background: linear-gradient(135deg, #fff 35%, var(--purple-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.purple-text { color: var(--purple-lt); }

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 600px) { .container { padding: 0 20px; } }

section { position: relative; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: inherit;
  text-decoration: none;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 0 28px var(--purple-glow);
}
.btn-primary:hover {
  background: var(--purple-lt);
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(139,92,246,0.38);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border-lt);
}
.btn-ghost:hover { color: var(--text); border-color: #555; }

.btn-lg { font-size: 16px; padding: 17px 34px; }

.btn-store {
  background: var(--bg-card);
  border: 1.5px solid var(--border-lt);
  color: var(--text);
  border-radius: var(--radius);
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
  font-family: inherit;
  text-decoration: none;
}
.btn-store:hover { border-color: var(--purple); background: var(--purple-bg); }
.btn-store .store-icon { font-size: 22px; }
.btn-store .store-text { text-align: left; }
.btn-store .store-label { display: block; font-size: 10px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.btn-store .store-name  { display: block; font-size: 15px; font-weight: 700; }

.btn-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.nav-logo {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 16px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--purple-lt); }

.nav-cta {
  background: var(--purple);
  color: #fff !important;
  padding: 11px 22px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  box-shadow: 0 0 20px var(--purple-glow);
}
.nav-cta:hover { background: var(--purple-lt) !important; }

.nav-support {
  background: transparent;
  color: #4ade80;
  border: 1.5px solid rgba(74, 222, 128, 0.35);
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-support:hover {
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.6);
  color: #86efac;
}

/* Nav dropdowns */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 16px;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-wrap:hover .nav-dropdown-trigger,
.nav-dropdown-trigger.active {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.nav-dropdown-trigger.active { color: var(--purple-lt); }

.nav-chevron {
  font-size: 11px;
  opacity: 0.5;
  transition: transform var(--transition);
  display: inline-block;
}
.nav-dropdown-wrap:hover .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;
  min-width: 200px;
  z-index: 300;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.nav-dropdown-inner {
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}

.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap.open .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.nav-dropdown a:hover,
.nav-dropdown a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav-dropdown a.active { color: var(--purple-lt); }

.nav-dropdown-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-bg);
  border-radius: 6px;
  font-size: 14px;
  flex-shrink: 0;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  z-index: 210;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 14px 24px;
  border-radius: var(--radius);
  transition: all var(--transition);
  width: 100%;
  text-align: center;
  max-width: 320px;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-mobile a.active { color: var(--purple-lt); }
.nav-mobile .nav-cta {
  margin-top: 16px;
  background: var(--purple) !important;
  color: #fff !important;
  font-size: 18px;
}

.nav-mobile .nav-support {
  font-size: 18px;
  padding: 14px 24px;
  border-radius: var(--radius);
  width: 100%;
  max-width: 320px;
  text-align: center;
}

@media (max-width: 800px) {
  :root { --nav-h: 80px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .nav-logo img { height: 56px; }
}

/* === HERO LOGO (HOME) === */
.hero-logo {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto -60px;
  opacity: 0.9;
  mix-blend-mode: screen;
  filter: brightness(3.5) contrast(1.3);
  mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, black 20%, transparent 80%);
}

/* === HERO (HOME) === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 10px) 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(139,92,246,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }
.hero-content h1 { margin-bottom: 24px; }
.hero-content p {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-bg);
  border: 1px solid rgba(139,92,246,0.28);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-lt);
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; left: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 20px; max-width: 720px; }
.page-hero p {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.page-hero .hero-badge { margin-bottom: 28px; }

/* === SECTION STYLES === */
.section {
  padding: 100px 0;
}
.section-sm { padding: 72px 0; }
.section-surface {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple);
  margin-bottom: 14px;
}

.section-header {
  margin-bottom: 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* === FEATURE CARDS === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-card:hover {
  border-color: rgba(139,92,246,0.35);
  transform: translateY(-3px);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--purple-bg);
  border: 1px solid rgba(139,92,246,0.22);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.feature-card h3 { margin-bottom: 10px; font-size: 18px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* === STEPS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  counter-reset: steps;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--purple);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  counter-increment: steps;
  transition: transform var(--transition), border-color var(--transition);
}
.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.5);
  border-top-color: var(--purple-lt);
}
.step-card::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 17px; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* === SPLIT SECTION === */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split-reverse .split-media { order: -1; }
}

.split-text h2 { margin-bottom: 20px; }
.split-text p  { font-size: 16px; color: var(--text-muted); margin-bottom: 16px; }
.split-text .btn-actions { margin-top: 32px; }

.split-media {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icon-list { display: flex; flex-direction: column; gap: 14px; }
.icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.icon-list-item .icon-wrap {
  width: 36px; height: 36px;
  background: var(--purple-bg);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.icon-list-item .icon-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.icon-list-item .icon-text span   { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* === CTA BAND === */
.cta-band {
  background: var(--purple-bg);
  border: 1px solid rgba(139,92,246,0.18);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(24px, 3vw, 36px); }
.cta-band p  { color: var(--text-muted); margin-top: 8px; font-size: 16px; }
.cta-band .btn-actions { flex-shrink: 0; }

@media (max-width: 700px) {
  .cta-band { padding: 44px 32px; flex-direction: column; }
  .cta-band .btn-actions { width: 100%; }
  .cta-band .btn-actions .btn { flex: 1; justify-content: center; }
}

/* === DRIVER TEASER (home) === */
.driver-teaser {
  background: linear-gradient(135deg, rgba(139,92,246,0.12) 0%, rgba(0,0,0,0) 60%);
  border: 1px solid rgba(139,92,246,0.18);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
}
.driver-teaser::after {
  content: '🔑';
  position: absolute;
  right: 64px; top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  opacity: 0.07;
  pointer-events: none;
}
.driver-teaser h2 { max-width: 520px; margin-bottom: 16px; }
.driver-teaser p  { color: var(--text-muted); max-width: 440px; margin-bottom: 36px; font-size: 17px; }

@media (max-width: 700px) {
  .driver-teaser { padding: 48px 28px; }
  .driver-teaser::after { display: none; }
}

/* === DOWNLOAD SECTION (home) === */
.download-section {
  text-align: left;
  padding: 100px 0;
}
.download-section h2 { margin-bottom: 16px; }
.download-section > p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 420px;
  margin: 0 0 44px;
}
.store-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.coming-soon-note {
  font-size: 13px;
  color: var(--text-subtle);
}

/* === REQUIREMENTS (drivers) === */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.req-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.req-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.req-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.req-text span   { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* === VALUES (about) === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color var(--transition), transform var(--transition);
}
.value-card:hover { border-color: rgba(139,92,246,0.35); transform: translateY(-2px); }
.value-icon {
  font-size: 28px;
  margin-bottom: 18px;
}
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* === MISSION BLOCK === */
.mission-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--purple);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 44px 48px;
}
.mission-block p {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.6;
  font-weight: 400;
  color: #ccc;
  max-width: 720px;
}

/* === CONTACT FORM === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
}
@media (max-width: 500px) { .contact-form-card { padding: 32px 24px; } }

.form-fields { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-input);
  border: 1.5px solid var(--border-lt);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-field select option { background: #1a1a1a; }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #444; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
}
.form-field input.error { border-color: var(--error); }

/* File upload widget */
.file-upload-input { display: none; }
.file-upload-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.file-upload-btn {
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid var(--border-lt);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.file-upload-btn:hover { border-color: var(--purple); color: var(--text); }
.file-upload-name {
  font-size: 14px;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.file-upload-name.has-file { color: var(--text); }
.file-upload-hint { font-size: 12px; color: #555; margin: 0; }

.form-submit {
  width: 100%;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
  box-shadow: 0 0 24px var(--purple-glow);
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}
.form-submit:hover:not(:disabled) {
  background: var(--purple-lt);
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(139,92,246,0.42);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-submit .btn-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
}
.form-submit.loading .btn-text { opacity: 0; }
.form-submit.loading .btn-spinner { display: block; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.form-message {
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.form-message.error {
  display: block;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.28);
  color: #fca5a5;
}
.form-message.success {
  display: block;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.28);
  color: #86efac;
}

.contact-aside h3 { font-size: 18px; margin-bottom: 10px; }
.contact-aside p  { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 28px; }
.contact-aside a  { color: var(--purple-lt); }
.contact-aside a:hover { text-decoration: underline; }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 2px; }

details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
details[open] { border-color: rgba(139,92,246,0.3); }
details[open] summary { color: var(--text); }

summary {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-muted);
  transition: color var(--transition);
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--purple);
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === STATS BAR === */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #fff 40%, var(--purple-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 600px) {
  .stat-item { border-right: none; padding: 12px 28px; }
}

/* === FOOTER === */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-brand .footer-logo img {
  height: 52px;
  width: auto;
  margin-bottom: 12px;
  display: block;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-subtle);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--text-subtle); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-subtle);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--text-muted); }

/* === HERO SPLIT (home) === */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-img { display: none; }
}
.hero-split-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-split-img img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  opacity: 0.92;
}

/* === APP SCREENSHOT SECTION === */
.app-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 860px) {
  .app-preview { grid-template-columns: 1fr; gap: 40px; }
}
.app-preview-img {
  position: relative;
}
.app-preview-img img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(139,92,246,0.15);
}
.app-preview-img::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(139,92,246,0.2), transparent 60%);
  pointer-events: none;
}
.app-preview-text h2 { margin-bottom: 20px; }
.app-preview-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.7; }
.app-preview-text .btn-actions { margin-top: 32px; }

/* === CAR GRAPHIC === */
.car-graphic {
  width: 100%;
  max-width: 600px;
  filter: invert(1) opacity(0.12);
  pointer-events: none;
  position: absolute;
  right: -60px;
  bottom: -40px;
}

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* === EVENT PHOTOS (events) === */
.event-photos-section {
  padding: 80px 0;
  overflow: hidden;
}

.event-feature-text {
  max-width: 600px;
  margin-bottom: 48px;
}
.event-feature-text h2 { margin-bottom: 14px; }
.event-feature-text > p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.event-feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event-bullet {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.event-bullet span { line-height: 1.5; }

.event-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  max-width: 100%;
}

.event-photo img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-lt);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  object-fit: cover;
  display: block;
}

.event-photo-left {
  grid-column: 1;
  grid-row: 1;
}

.event-photo-right {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
}

@media (max-width: 560px) {
  .event-photos-grid { grid-template-columns: 1fr; max-width: 280px; }
  .event-photo-right { grid-column: 1; grid-row: 2; }
  .event-photo img { max-width: 100%; }
}

/* === ZIP CODE SEARCH (events) === */
.zip-search-block {
  max-width: 640px;
}
.zip-search-block h2 { margin-bottom: 12px; }
.zip-search-block > p { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; }

.zip-search-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.zip-input-wrap {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-input);
  border: 1.5px solid var(--border-lt);
  border-radius: var(--radius);
  padding: 0 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.zip-input-wrap:focus-within {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
}
.zip-icon { font-size: 16px; flex-shrink: 0; }
.zip-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  padding: 14px 0;
}
.zip-input::placeholder { color: #444; }

.zip-submit {
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: 0 0 20px var(--purple-glow);
}
.zip-submit:hover {
  background: var(--purple-lt);
  transform: translateY(-1px);
}

.zip-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-subtle);
}

/* === CITY CARDS (events) === */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .cities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cities-grid { grid-template-columns: 1fr; } }

.city-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.city-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-3px);
}
.city-icon { font-size: 32px; margin-bottom: 16px; }
.city-card h3 { font-size: 18px; margin-bottom: 10px; }
.city-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* === SUPPORT MODAL === */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}
@media (max-width: 500px) { .modal { padding: 36px 24px; } }

.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
  font-family: inherit;
}
.modal-close:hover { color: var(--text); }

.modal-icon { font-size: 52px; margin-bottom: 20px; }

.modal h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.modal p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.modal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #22c55e;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 28px rgba(34, 197, 94, 0.3);
}
.modal-cta:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(34, 197, 94, 0.45);
}

.modal-dismiss {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-subtle);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color var(--transition);
}
.modal-dismiss:hover { color: var(--text-muted); }
