:root {
  --bg: #0d0d14;
  --bg-alt: #12121c;
  --fg: #f0ede8;
  --fg-muted: #8a8799;
  --accent: #f5a623;
  --accent-dim: #c07d10;
  --surface: #1a1a28;
  --border: rgba(240, 237, 232, 0.08);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,20,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #0d0d14;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  letter-spacing: -0.02em;
}

.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 5rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pill {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  letter-spacing: 0.02em;
  background: var(--surface);
}

/* CAR VISUAL */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-visual {
  position: relative;
  width: 320px;
  height: 200px;
}

.car-body {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 70px;
  background: linear-gradient(135deg, #2a2a3e 0%, #1e1e2e 100%);
  border-radius: 12px 12px 6px 6px;
  border: 1px solid rgba(255,255,255,0.06);
}

.car-body::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 20px;
  right: 20px;
  height: 38px;
  background: linear-gradient(135deg, #2a2a3e 0%, #1e1e2e 100%);
  border-radius: 8px 8px 0 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-bottom: none;
}

.car-window {
  position: absolute;
  top: -26px;
  left: 28px;
  right: 28px;
  height: 30px;
  background: linear-gradient(180deg, rgba(245,166,35,0.15) 0%, rgba(245,166,35,0.05) 100%);
  border-radius: 6px 6px 0 0;
  border: 1px solid rgba(245,166,35,0.2);
}

.car-wheel {
  position: absolute;
  bottom: 26px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111;
  border: 3px solid #2a2a3e;
  box-shadow: inset 0 0 0 8px #1a1a1a;
}

.car-wheel--front { left: 28px; }
.car-wheel--rear { right: 28px; }

.sparkle {
  position: absolute;
  animation: twinkle 2.5s ease-in-out infinite;
}

.sparkle-1 { top: 20px; right: 60px; animation-delay: 0s; }
.sparkle-2 { top: 60px; right: 20px; animation-delay: 0.8s; }
.sparkle-3 { top: 90px; left: 40px; animation-delay: 1.6s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.van-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* HERO STATS */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* SECTION SHARED */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.15;
}

.section-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-top: 0.75rem;
}

/* HOW SECTION */
.how {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.how-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-connector {
  padding-top: 5.5rem;
  display: flex;
  align-items: flex-start;
}

/* SERVICES */
.services {
  padding: 5rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.service-icon {
  margin-bottom: 1.25rem;
}

.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* DIFFERENCE */
.difference {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

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

.diff-body {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-top: 1.25rem;
}

.diff-points {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.diff-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.diff-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diff-point h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.2rem;
}

.diff-point p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* PRICING */
.pricing {
  padding: 5rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.price-card--featured {
  border-color: var(--accent);
  background: rgba(245,166,35,0.04);
}

.price-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0d0d14;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
}

.price-card-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}

.price-card-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.price-per {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.price-card-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.price-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-card-features span {
  font-size: 0.82rem;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
}

.price-card-features span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.6;
}

.pricing-note {
  max-width: 560px;
  margin: 2rem auto 0;
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 7rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.closing-content {
  max-width: 680px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 3rem;
}

.closing-sig {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.brand-mark-lg {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #0d0d14;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.brand-name-lg {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* NAV RIGHT */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0d0d14;
  background: var(--accent);
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--accent-dim); }

/* FOOTER */
.footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-loc {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    order: -1;
  }
  .hero {
    padding: 3rem 1.25rem 3rem;
  }
  .steps {
    flex-direction: column;
  }
  .step-connector {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .diff-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .how, .services, .difference, .pricing, .closing {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .stat-divider {
    display: none;
  }
}