:root {
  --bg: #0D0D0D;
  --bg-2: #141414;
  --amber: #F5A623;
  --amber-dark: #C88A1A;
  --text: #F5F5F0;
  --text-muted: #888;
  --border: rgba(245,166,35,0.12);
  --card: #111111;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo {
  width: 32px; height: 32px;
  background: var(--amber);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #0D0D0D;
}
.nav-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ─── HERO ─────────────────────────── */
.hero {
  padding: 80px 48px 0;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.65;
  font-weight: 300;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-car-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.car-illustration {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(245,166,35,0.15));
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  right: -10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.badge-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--amber);
  line-height: 1;
}
.badge-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.stat { padding: 0 40px; }
.stat:first-child { padding-left: 0; }
.stat-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--amber);
  letter-spacing: -0.5px;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── SECTION SHARED ───────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--amber);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -1px;
}

/* ─── SERVICES ─────────────────────── */
.services {
  padding: 100px 48px;
  background: var(--bg-2);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--card);
  padding: 36px 28px;
}
.service-icon {
  width: 48px; height: 48px;
  background: rgba(245,166,35,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  margin-bottom: 20px;
}
.service-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── PACKAGES ─────────────────────── */
.packages {
  padding: 100px 48px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.package-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
}
.package-featured {
  border-color: var(--amber);
  background: linear-gradient(135deg, #1A1400 0%, #111111 100%);
}
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #0D0D0D;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
}
.package-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  margin-bottom: 12px;
}
.package-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}
.package-price small {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}
.package-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.package-list {
  list-style: none;
  margin-bottom: 20px;
}
.package-list li {
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.package-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}
.package-note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── COVERAGE ─────────────────────── */
.coverage {
  padding: 100px 48px;
  background: var(--bg-2);
}
.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.coverage-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.coverage-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.city-tag {
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  color: var(--amber);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}
.coverage-map {
  display: flex;
  justify-content: center;
  align-items: center;
}
.map-svg {
  width: 100%;
  max-width: 360px;
}

/* ─── CLOSING ─────────────────────── */
.closing {
  padding: 100px 48px;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 56px);
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}
.closing-rule {
  width: 60px;
  height: 2px;
  background: var(--amber);
  margin: 0 auto 24px;
}
.closing-tagline {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ─── FOOTER ───────────────────────── */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-logo {
  width: 24px; height: 24px;
  background: var(--amber);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #0D0D0D;
}
.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
}
.footer-legal {
  font-size: 12px;
  color: #555;
}

/* ─── RESPONSIVE ───────────────────── */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages { padding: 60px 24px; }
  .packages-grid { grid-template-columns: 1fr; gap: 16px; }
  .coverage { padding: 60px 24px; }
  .coverage-inner { grid-template-columns: 1fr; }
  .closing { padding: 60px 24px; }
  .footer { padding: 28px 24px; flex-wrap: wrap; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 32px; }
  .package-price { font-size: 40px; }
  .nav-tagline { display: none; }
}