:root {
  --bg: #0A0A0F;
  --panel: rgba(255, 255, 255, 0.02);
  --panel-strong: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.10);
  --text: #ffffff;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --blue: #3b82f6;
  --blue-2: #2563eb;
  --indigo: #4f46e5;
  --container: 1280px;
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #e2e8f0;
  background: var(--bg);
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  overflow: hidden;
}
.blob { position: absolute; border-radius: 999px; filter: blur(120px); }
.blob-a { left: -20%; top: -10%; width: 50%; height: 50%; background: rgba(30, 58, 138, 0.20); }
.blob-b { right: -10%; top: 20%; width: 40%; height: 40%; background: rgba(49, 46, 129, 0.20); }
.blob-c { left: 20%; bottom: -20%; width: 60%; height: 50%; background: rgba(23, 37, 84, 0.30); filter: blur(150px); }
.grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.08;
  mix-blend-mode: overlay;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}
.section-pad { padding: 96px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(10, 10, 15, 0.60);
  backdrop-filter: blur(32px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: opacity .2s ease;
}
.brand:hover { opacity: .82; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: white;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.25);
}
.brand strong { display: block; color: white; line-height: 1.1; }
.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.nav { display: flex; gap: 32px; color: var(--muted); font-size: 14px; font-weight: 600; }
.nav a { transition: color .2s ease; }
.nav a:hover { color: white; }
.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  transition: background .2s ease, transform .2s ease;
}
.header-cta:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }

.hero { padding-top: 64px; padding-bottom: 128px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #bfdbfe;
  font-size: 14px;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
  backdrop-filter: blur(12px);
}
.badge svg { color: #60a5fa; }
.hero h1 {
  margin: 32px 0 0;
  max-width: 820px;
  color: white;
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 950;
}
.hero h1 span {
  background: linear-gradient(90deg, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  margin: 24px 0 0;
  max-width: 672px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 15px 30px;
  min-height: 54px;
  font-size: 14px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(90deg, var(--blue-2), var(--indigo));
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.30);
}
.btn-primary:hover { box-shadow: 0 0 42px rgba(37, 99, 235, 0.42); }
.btn-secondary, .btn-card {
  color: white;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover, .btn-card:hover { background: rgba(255,255,255,0.08); }
.btn-full { width: 100%; }

.glass {
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30);
  backdrop-filter: blur(24px);
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 672px; margin-top: 48px; }
.stat-card { padding: 24px; transition: background .2s ease; }
.stat-card:hover { background: rgba(255,255,255,0.04); }
.stat-card svg { width: 28px; height: 28px; margin-bottom: 16px; color: var(--blue); }
.stat-card strong { display: block; color: white; font-size: 30px; line-height: 1; font-weight: 950; }
.stat-card span { display: block; margin-top: 6px; color: var(--muted); font-size: 14px; }

.car-card {
  position: relative;
  aspect-ratio: 1.18 / 1;
  width: 100%;
  max-width: 576px;
  margin: 0 auto;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 40px;
  background: rgba(255,255,255,0.02);
  box-shadow: 0 8px 32px rgba(0,0,0,0.50);
  backdrop-filter: blur(40px);
}
.car-card-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 20%, rgba(59,130,246,0.15), transparent 40%), radial-gradient(circle at 80% 80%, rgba(99,102,241,0.15), transparent 40%);
}
.car-labels {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 32px;
  display: flex;
  justify-content: space-between;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.car-svg-wrap { position: absolute; left: 32px; right: 32px; bottom: 96px; }
.car-svg { width: 100%; filter: drop-shadow(0 20px 40px rgba(59,130,246,.2)); }
.mini-stats {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mini-stats div {
  padding: 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
}
.mini-stats strong { display: block; color: white; font-size: 20px; line-height: 1.1; font-weight: 950; }
.mini-stats span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }

.section-title { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.section-title p, .eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.section-title h2 {
  margin: 0;
  color: white;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 950;
}
.section-title span {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { padding: 32px; transition: background .2s ease; }
.feature-card:hover { background: rgba(255,255,255,0.04); }
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 12px;
  background: rgba(59,130,246,0.10);
  color: #60a5fa;
  font-size: 24px;
  font-weight: 900;
}
.feature-card h3, .step-card h3 { margin: 0; color: white; font-size: 18px; line-height: 1.3; }
.feature-card p, .step-card p { margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.package-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  transition: transform .25s ease, background .2s ease, box-shadow .2s ease;
}
.package-card:hover { transform: translateY(-4px); }
.package-featured {
  border: 1px solid rgba(59,130,246,0.30);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(59,130,246,0.10), transparent), rgba(59,130,246,0.05);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
  backdrop-filter: blur(24px);
}
.popular {
  position: absolute;
  right: 24px;
  top: 24px;
  padding: 6px 12px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(90deg, var(--blue-2), var(--blue));
  box-shadow: 0 10px 30px rgba(59,130,246,0.30);
  font-size: 12px;
  font-weight: 900;
}
.package-card small { color: var(--blue); text-transform: uppercase; letter-spacing: .2em; font-size: 12px; font-weight: 900; }
.package-card h3 { margin: 16px 0 0; color: white; font-size: 25px; line-height: 1.2; font-weight: 950; }
.package-card p { min-height: 72px; margin: 16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.package-card ul { margin: 32px 0; padding: 0; list-style: none; display: grid; gap: 16px; }
.package-card li { display: flex; gap: 12px; color: #cbd5e1; font-size: 14px; line-height: 1.5; }
.package-card li::before { content: "✓"; flex: 0 0 auto; color: var(--blue); font-weight: 900; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { padding: 28px; }
.step-card > strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--blue-2), var(--indigo));
  box-shadow: 0 12px 30px rgba(30,64,175,0.40);
  font-weight: 950;
}

.audience-section { padding: 48px 0; }
.audience-card {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  padding: 56px;
  border: 1px solid rgba(59,130,246,.20);
  border-radius: 40px;
  background: rgba(30,58,138,.10);
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
  backdrop-filter: blur(24px);
}
.audience-glow { position: absolute; right: -80px; top: -80px; width: 256px; height: 256px; border-radius: 999px; background: rgba(59,130,246,.20); filter: blur(80px); }
.audience-card > *:not(.audience-glow) { position: relative; }
.audience-card p { margin: 0; color: #60a5fa; font-size: 12px; font-weight: 900; letter-spacing: .25em; text-transform: uppercase; }
.audience-card h2 { margin: 16px 0 0; color: white; font-size: clamp(30px, 4vw, 42px); line-height: 1.15; letter-spacing: -.04em; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.audience-grid div {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.55;
  backdrop-filter: blur(12px);
}
.audience-grid div::before { content: "✓"; color: var(--blue); margin-right: 10px; font-weight: 900; }

.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 32px; align-items: start; }
.contact-card { padding: 48px; }
.contact-card h2 { margin: 16px 0 0; color: white; font-size: 42px; line-height: 1.1; letter-spacing: -.04em; }
.contact-card > p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.contact-list { display: grid; gap: 16px; margin-top: 40px; }
.contact-list a, .contact-list div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  color: #60a5fa;
  transition: background .2s ease;
}
.contact-list a:hover { background: rgba(255,255,255,.06); }
.contact-list span { color: #e2e8f0; font-weight: 650; }
.form-card {
  display: grid;
  gap: 20px;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: 40px;
  background: rgba(15, 17, 26, .80);
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  backdrop-filter: blur(24px);
}
.form-card h3 { margin: 0; color: white; font-size: 26px; letter-spacing: -.03em; }
.form-card p { margin: -8px 0 8px; color: var(--muted); font-size: 14px; line-height: 1.6; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  background: #0A0A0F;
  color: white;
  padding: 14px 16px;
  outline: none;
  font-size: 14px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,.20);
  transition: border-color .2s ease, box-shadow .2s ease;
}
input::placeholder, textarea::placeholder { color: #475569; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), inset 0 2px 5px rgba(0,0,0,.20); }
textarea { min-height: 128px; resize: vertical; }

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.05);
  background: rgba(10,10,15,.80);
  padding: 40px 0;
  backdrop-filter: blur(24px);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted-2); font-size: 12px; }
.footer-inner strong { display: block; color: white; font-size: 14px; }
.footer-inner span { display: block; margin-top: 4px; }
.footer-inner p { max-width: 680px; margin: 0; line-height: 1.7; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }

@media (max-width: 1080px) {
  .hero-grid, .contact-grid, .audience-card { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-bottom: 90px; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 32px, var(--container)); }
  .nav, .header-cta { display: none; }
  .section-pad { padding: 72px 0; }
  .hero { padding-top: 50px; }
  .hero h1 { font-size: clamp(42px, 15vw, 58px); }
  .stats-grid, .mini-stats, .feature-grid, .steps-grid, .audience-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .car-card { aspect-ratio: auto; min-height: 430px; border-radius: 28px; }
  .car-svg-wrap { bottom: 180px; left: 20px; right: 20px; }
  .mini-stats { left: 20px; right: 20px; }
  .audience-card, .contact-card, .form-card { padding: 28px; border-radius: 28px; }
  .footer-inner { display: grid; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
