:root {
  --bg: #050505;
  --panel: #111;
  --panel-2: #181818;
  --text: #f7f7f7;
  --muted: #b7b7b7;
  --soft: #858585;
  --line: #2b2b2b;
  --white: #fff;
  --radius: 24px;
  --shadow: 0 26px 80px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(180deg, #101010, #050505 38%, #000);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

.page-shell {
  width: min(1320px, calc(100% - 44px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .75fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.hero__copy,
.hero__panel,
.wizard-card,
.notes,
.package-card {
  border: 1px solid var(--line);
  background: rgba(17,17,17,.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__copy {
  padding: clamp(34px, 5vw, 68px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 850px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: .92;
  letter-spacing: -.06em;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.045em;
  margin-bottom: 8px;
}

.lead {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.primary-link {
  background: var(--white);
  color: #000;
}

.secondary-link {
  border: 1px solid var(--line);
  color: var(--white);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero__badges span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--text);
  background: #0b0b0b;
  font-size: 13px;
  font-weight: 750;
}

.hero__panel {
  display: flex;
  align-items: end;
  min-height: 350px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,0)),
    #101010;
}

.panel-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 10px;
}

.hero__panel strong {
  display: block;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .95;
  letter-spacing: -.055em;
}

.hero__panel p {
  color: var(--muted);
  margin: 14px 0 0;
  font-size: 16px;
}

.wizard-card {
  padding: 28px;
  margin-bottom: 28px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  margin-bottom: 22px;
}

.section-title > p,
.section-title div + p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.vehicle-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

select,
input {
  width: 100%;
  background: #070707;
  color: var(--white);
  border: 1px solid #343434;
  border-radius: 16px;
  padding: 16px 14px;
  font: inherit;
  font-weight: 750;
  outline: none;
}

select:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.vehicle-summary {
  margin-top: 18px;
  padding: 16px;
  background: #0b0b0b;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
}

.vehicle-summary strong { color: var(--white); }

.packages { margin-top: 18px; }

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,0) 45%),
    var(--panel);
}

.package-card.featured {
  border-color: #fff;
  transform: translateY(-8px);
}

.badge {
  align-self: start;
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--white);
  color: #000;
  font-size: 12px;
  font-weight: 950;
}

.package-card h3 {
  font-size: clamp(26px, 2.4vw, 36px);
  letter-spacing: -.045em;
  margin-bottom: 5px;
}

.package-card .brandline {
  color: #fff;
  margin-bottom: 14px;
  font-weight: 850;
}

.package-card .desc {
  color: var(--muted);
  margin-bottom: 18px;
}

.package-card ul {
  color: var(--muted);
  padding-left: 18px;
  margin: 0 0 20px;
  font-size: 15px;
}

.package-card li { margin: 5px 0; }

.price-block {
  display: grid;
  gap: 10px;
  margin: auto 0 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #090909;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
}

.row strong {
  color: var(--white);
  text-align: right;
  font-size: 16px;
}

.big-price {
  align-items: end;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.big-price span {
  color: #fff;
  font-weight: 900;
}

.big-price strong {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.04em;
}

.btn {
  width: 100%;
  appearance: none;
  border: 0;
  border-radius: 16px;
  padding: 15px 16px;
  background: var(--white);
  color: #000;
  font-weight: 950;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  text-align: center;
}

.btn.secondary {
  margin-top: 10px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
}

.request-box {
  padding: 18px;
  background: #090909;
  border: 1px dashed #5c5c5c;
  border-radius: 18px;
  color: var(--muted);
  margin: auto 0 18px;
}

.request-box strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-size: 17px;
}

.notes {
  margin-top: 28px;
  padding: 28px;
  color: var(--muted);
}

.notes h2 { color: var(--white); }

.hidden { display: none !important; }

@media (max-width: 980px) {
  .hero,
  .vehicle-form,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    min-height: 200px;
  }

  .section-title {
    display: block;
  }

  .section-title > p,
  .section-title div + p {
    text-align: left;
    max-width: none;
    margin-top: 8px;
  }

  .package-card.featured {
    transform: none;
  }
}
