:root {
  --bg: #111827;
  --bg-alt: #0f1922;
  --surface: #1a2332;
  --accent: #f59e0b;
  --accent-dim: #d97706;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --border: rgba(245, 158, 11, 0.15);
}

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

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; }
.brand-mark { display: flex; align-items: center; gap: 10px; }
.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: #111827;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s;
  margin-left: 16px;
}
.nav-cta:hover { background: var(--accent-dim); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
    linear-gradient(rgba(245, 158, 11, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 158, 11, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 60px 60px, 60px 60px;
  mask-image: radial-gradient(ellipse at 70% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 50%, black 30%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
  width: fit-content;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.headline-accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero-description {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
}
.stat-label { font-size: 12px; color: var(--text-muted); }
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.shine-orbs { position: relative; width: 100%; max-width: 340px; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.orb-1 { width: 200px; height: 200px; background: var(--accent); top: 20%; left: -20%; }
.orb-2 { width: 140px; height: 140px; background: #3b82f6; top: 50%; right: -10%; }
.orb-3 { width: 80px; height: 80px; background: var(--accent); bottom: 10%; left: 30%; }
.car-abstract {
  position: relative;
  z-index: 1;
  background: rgba(26, 35, 50, 0.8);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 40px 20px;
  backdrop-filter: blur(8px);
}
.car-svg { width: 100%; height: auto; }

/* SECTIONS */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 56px;
}

/* WHY */
.why { padding: 100px 24px; background: var(--bg-alt); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.why-card {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: background 0.2s;
}
.why-card:hover { background: rgba(245, 158, 11, 0.05); }
.why-icon {
  width: 44px; height: 44px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.why-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.why-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* SERVICES */
.services { padding: 100px 24px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color 0.2s;
}
.service-card--featured {
  border-color: var(--accent);
  background: rgba(245, 158, 11, 0.04);
}
.service-tag {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.service-tag--secondary { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.service-tag--premium { background: rgba(168, 85, 247, 0.15); color: #c084fc; }
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.service-price {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.service-price strong { color: var(--accent); font-size: 22px; font-family: 'Syne', sans-serif; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.services-note {
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}

/* PROCESS */
.process { padding: 100px 24px; background: var(--bg-alt); }
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}
.step { flex: 1; padding: 0 24px; }
.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.step p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.step-connector { flex-shrink: 0; }
.process-note {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.process-note strong { color: var(--accent); }

/* CLOSING */
.closing {
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}
.closing-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.closing-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.closing-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-body {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.closing-vision {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 32px;
  background: rgba(245, 158, 11, 0.04);
}
.closing-vision p {
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.closing-cta {
  display: inline-block;
  background: var(--accent);
  color: #111827;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 12px;
  transition: background 0.2s, transform 0.1s;
  margin-top: 8px;
}
.closing-cta:hover { background: var(--accent-dim); }
.closing-cta:active { transform: scale(0.98); }

/* FOOTER */
.footer { padding: 48px 24px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; }
.footer-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; }
.footer-tagline { color: var(--text-muted); font-size: 14px; margin-bottom: 8px; }
.footer-copy { color: #64748b; font-size: 12px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-connector { transform: rotate(90deg); }
  .step { padding: 0; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero { padding-top: 100px; }
  .hero-stats { gap: 16px; }
  .stat-value { font-size: 18px; }
}