:root {
  --bg: #0b1020;
  --bg-alt: #111834;
  --surface: #161f42;
  --text: #eaf0ff;
  --muted: #9aa8cc;
  --brand: #ffb703;
  --brand-2: #4ea8ff;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --container: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 80% -10%, #1a2350 0%, transparent 60%), var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(11, 16, 32, 0.7);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand { font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--muted); font-weight: 600; }
.nav-links a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--brand);
  color: #1a1200;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-sm { padding: 8px 16px; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-block { display: block; width: 100%; text-align: center; }

/* Hero */
.hero { padding: 72px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}
.eyebrow { color: var(--brand-2); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; margin: 0 0 12px; }
.hero h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 16px; }
.lead { color: var(--muted); font-size: 18px; max-width: 46ch; }
.hero-cta { display: flex; gap: 12px; margin: 24px 0; flex-wrap: wrap; }
.trust { list-style: none; display: flex; gap: 20px; padding: 0; margin: 8px 0 0; color: var(--muted); font-size: 14px; flex-wrap: wrap; }

.hero-card {
  background: linear-gradient(160deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  text-align: center;
}
.hero-car { font-size: 96px; line-height: 1; }
.hero-price { font-size: 40px; font-weight: 800; margin: 8px 0 0; }
.hero-price span { font-size: 16px; color: var(--muted); font-weight: 600; }

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title { font-size: clamp(26px, 3.5vw, 38px); letter-spacing: -0.02em; margin: 0 0 8px; text-align: center; }
.section-sub { color: var(--muted); text-align: center; margin: 0 auto 36px; max-width: 52ch; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.18); }
.card.featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand) inset; }
.card-emoji { font-size: 52px; }
.card h3 { margin: 8px 0 6px; font-size: 22px; }
.card p { color: var(--muted); margin: 0 0 14px; }
.card-price { color: var(--text) !important; font-size: 28px; font-weight: 800; margin: 6px 0 18px !important; }
.card-price span { font-size: 14px; color: var(--muted); font-weight: 600; }
.badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #1a1200; font-weight: 700; font-size: 12px;
  padding: 5px 12px; border-radius: 999px;
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; text-align: center;
}
.step-num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-2); color: #041022; font-weight: 800; font-size: 20px;
  margin-bottom: 12px;
}
.step h3 { margin: 4px 0 6px; }
.step p { color: var(--muted); margin: 0; }

/* Booking */
.booking { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.booking .section-title, .booking .section-sub { text-align: left; margin-left: 0; }
.booking-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
  display: grid; gap: 16px;
}
.booking-form label { display: grid; gap: 6px; font-weight: 600; font-size: 14px; }
.booking-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form input, .booking-form select {
  background: var(--bg); border: 1px solid var(--border); color: var(--text);
  padding: 12px 14px; border-radius: 10px; font-size: 15px; font-family: inherit;
}
.booking-form input:focus, .booking-form select:focus { outline: 2px solid var(--brand-2); border-color: transparent; }
.form-note { color: var(--brand-2); font-size: 14px; margin: 0; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 20px; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.muted { color: var(--muted); margin: 4px 0 0; }
.small { font-size: 13px; }

/* Responsive */
@media (max-width: 860px) {
  .hero-grid, .booking { grid-template-columns: 1fr; }
  .cards, .steps { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
}
