:root {
  --bg: #070809;
  --surface: #0d0f11;
  --surface-2: #111316;
  --text: #f5f6f7;
  --muted: #92969d;
  --border: rgba(255,255,255,.12);
  --blue: #4d6fff;
  --blue-hover: #6280ff;
  --radius: 22px;
  --container: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(0,0,0,.55), transparent);
}
.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.desktop-nav { display: flex; gap: 34px; margin-left: auto; }
.desktop-nav a { color: #9da0a6; font-size: 14px; transition: color .2s; }
.desktop-nav a:hover { color: white; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-btn {
  width: 54px;
  height: 40px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.12);
  color: #d5d7da;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 28px;
  font-weight: 600;
  transition: transform .2s, background .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: var(--blue-hover); }
.btn-small { min-height: 40px; padding: 0 22px; font-size: 14px; }

.menu-btn { display: none; border: 0; background: transparent; padding: 8px; }
.menu-btn span { display: block; width: 24px; height: 2px; margin: 5px 0; background: white; }
.mobile-menu {
  display: none;
  padding: 16px 24px 22px;
  background: rgba(7,8,9,.96);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: grid; gap: 18px; }
.mobile-menu a { color: #ddd; }

.hero {
  min-height: 860px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3,7,10,.55), rgba(3,7,10,.76) 58%, #070809 100%),
    url("https://images.unsplash.com/photo-1535498730771-e735b998cd64?auto=format&fit=crop&w=2200&q=85") center/cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 38%, transparent 0 24%, rgba(0,0,0,.25) 62%, rgba(0,0,0,.7));
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eyebrow { color: var(--blue); font-size: 14px; font-weight: 500; }
.hero h1 {
  margin: 22px 0 26px;
  max-width: 840px;
  text-align: center;
  font-size: clamp(58px, 6.2vw, 94px);
  line-height: 1.04;
  letter-spacing: -.065em;
}
.hero-copy {
  max-width: 610px;
  margin: 0 0 28px;
  color: #d0d2d4;
  font-size: 18px;
  text-align: center;
}

.booking-card {
  width: min(640px, 100%);
  padding: 28px;
  margin-top: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(9,11,12,.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
}
.booking-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.booking-head h2 { margin: 0; font-size: 24px; letter-spacing: -.04em; }
.booking-head span { color: var(--blue); font-size: 13px; }
.field { position: relative; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; color: #9da0a6; font-size: 12px; margin: 0 0 7px; }
.field input, .field textarea {
  width: 100%;
  color: white;
  background: #000;
  border: 1px solid rgba(255,255,255,.14);
  outline: none;
  border-radius: 28px;
  padding: 0 14px;
  height: 50px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea {
  height: auto;
  min-height: 126px;
  padding: 14px;
  resize: vertical;
  border-radius: 25px;
}
.field input:focus, .field textarea:focus {
  border-color: rgba(77,111,255,.75);
  box-shadow: 0 0 0 3px rgba(77,111,255,.12);
}
.field + .field { margin-top: 14px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.suggestions {
  display: none;
  position: absolute;
  z-index: 10;
  top: 78px;
  left: 0;
  right: 0;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.suggestions.open { display: block; }
.suggestion { padding: 12px 14px; cursor: pointer; color: #ddd; }
.suggestion:hover { background: #1a1c20; }

.quote-row {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quote-label { display: block; color: #92969d; font-size: 12px; margin-bottom: 6px; }
#quoteValue { display: block; color: var(--blue); font-size: 20px; min-height: 24px; }
.fine-print { margin: 14px 0 0; color: #777b82; font-size: 12px; }

.section { padding: 110px 0; }
.fleet-section { background: #000; }
.section-heading { max-width: 720px; margin-bottom: 50px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section h2 {
  margin: 0;
  font-size: clamp(44px, 5.1vw, 70px);
  line-height: 1.02;
  letter-spacing: -.065em;
}
.section-heading p, .coverage-copy p, .contact-copy > p {
  color: var(--muted);
  font-size: 16px;
}
.section-heading p { max-width: 600px; margin: 22px auto 0; }

.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.vehicle-card {
  min-height: 265px;
  padding: 24px 22px;
  background: #0b0d0f;
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.vehicle-top { display: flex; justify-content: space-between; gap: 10px; }
.vehicle-name { font-size: 16px; font-weight: 700; }
.vehicle-model { color: #858990; font-size: 13px; margin-top: 4px; }
.multiplier {
  height: 24px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--blue);
  font-size: 11px;
  display: grid;
  place-items: center;
  white-space: nowrap;
}
.vehicle-image {
  height: 108px;
  display: grid;
  place-items: center;
  margin: 10px 0;
}
.vehicle-image img { width: 90%; height: 100%; object-fit: contain; filter: drop-shadow(0 15px 20px rgba(0,0,0,.55)); }
.vehicle-divider { height: 1px; background: var(--border); margin-top: auto; }
.vehicle-bottom { display: flex; justify-content: space-between; align-items: end; padding-top: 14px; }
.vehicle-meta { color: #858990; font-size: 12px; display: flex; gap: 16px; }
.vehicle-price { text-align: right; }
.vehicle-price span { display: block; color: #777b82; font-size: 11px; }
.vehicle-price strong { color: var(--blue); font-size: 18px; }

.coverage-section { background: #0b0c0e; }
.coverage-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.coverage-copy h2 { font-size: clamp(46px, 5vw, 68px); }
.coverage-copy p { max-width: 560px; margin: 28px 0; line-height: 1.7; }
.zone-result {
  width: min(100%, 520px);
  min-height: 110px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #000;
}
.zone-result span { display: block; color: #858990; font-size: 12px; }
.zone-result strong { display: block; margin: 3px 0; font-size: 24px; }
.zone-result a { color: var(--blue); font-size: 12px; }
.zone-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.zone-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: #ddd;
  border-radius: 28px;
  padding: 11px 18px;
  transition: .2s;
}
.zone-btn:hover, .zone-btn.active { background: var(--blue); border-color: var(--blue); color: white; }

.contact-section { background: #0b0c0e; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-copy h2 { font-size: clamp(46px, 5vw, 68px); }
.contact-copy > p { max-width: 570px; margin: 28px 0; line-height: 1.7; }
.contact-info {
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: #000;
}
.contact-info > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.contact-info > div:last-child { border-bottom: 0; }
.contact-info span { color: #858990; }
.contact-info strong { font-size: 13px; }

.contact-form {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #000;
}
.contact-form .two-col { margin-top: 14px; }
.contact-form .field.full + .field.full { margin-top: 14px; }
.contact-form > .btn { margin-top: 14px; }
.form-status { min-height: 20px; margin-top: 12px; color: var(--blue); font-size: 13px; }

.footer { border-top: 1px solid var(--border); background: #070809; }
.footer-inner { min-height: 80px; display: flex; justify-content: space-between; align-items: center; color: #777b82; font-size: 12px; }
.footer a { color: #aaa; }

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.75); backdrop-filter: blur(8px); }
.modal-card {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #0b0d0f;
  box-shadow: 0 40px 100px rgba(0,0,0,.55);
}
.modal-card h2 { margin: 10px 0 24px; font-size: 34px; letter-spacing: -.05em; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  color: #aaa;
  font-size: 28px;
}
.modal-route { display: grid; gap: 14px; }
.modal-route div { padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.modal-route span { display: block; color: #777b82; font-size: 11px; }
.modal-route strong { display: block; margin-top: 3px; }
.modal-price { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.modal-price span { color: #858990; }
.modal-price strong { color: var(--blue); font-size: 32px; }

@media (max-width: 1050px) {
  .desktop-nav { gap: 18px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-layout, .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .desktop-nav, .nav-actions .lang-btn { display: none; }
  .menu-btn { display: block; }
  .hero { min-height: 950px; }
  .hero-inner { padding-top: 120px; }
  .hero h1 { font-size: clamp(48px, 13vw, 68px); }
  .hero-copy { font-size: 16px; }
  .booking-card { padding: 20px; }
  .two-col { grid-template-columns: 1fr; }
  .section { padding: 78px 0; }
  .fleet-grid { grid-template-columns: 1fr; }
  .coverage-layout, .contact-layout { gap: 40px; }
  .zone-list { justify-content: flex-start; }
  .footer-inner { flex-direction: column; justify-content: center; gap: 10px; padding: 20px 0; }
}
.brand-logo {
  width: 120px;
  max-width: 100%;
  height: auto;
  display: block;
}