:root {
  --bg: #050505;
  --bg-soft: #111111;
  --card: #ffffff;
  --text: #132033;
  --muted: #607086;
  --accent: #ed1c24;
  --accent-dark: #b90009;
  --blue: #2a2a2a;
  --white: #ffffff;
  --line: rgba(255,255,255,.18);
  --shadow: 0 24px 70px rgba(3, 10, 25, .18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #f5f7fb;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
  background: white;
  padding: 3px;
}
.brand small { display: block; color: #d7d7d7; font-size: 12px; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; }
.nav-links a { text-decoration: none; color: #dce6f5; }
.nav-cta { padding: 10px 16px; border-radius: 999px; background: var(--accent); color: white !important; }
.menu-toggle { display: none; background: transparent; color: white; border: 0; font-size: 28px; }
.hero {
  min-height: 720px;
  padding: 110px 22px 70px;
  background:
    radial-gradient(circle at 18% 15%, rgba(237, 28, 36, .38), transparent 30%),
    linear-gradient(135deg, #050505 0%, #171717 55%, #2a0003 100%);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 42px;
  align-items: center;
  max-width: 100%;
}
.hero-content, .hero-card, .section, .dealer-section, .contact-section, .footer { max-width: 1180px; }
.hero-content { justify-self: end; width: 100%; }
.eyebrow { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: 13px; }
.hero h1 { font-size: clamp(42px, 6vw, 76px); line-height: .98; margin: 12px 0 22px; max-width: 790px; }
.hero-text { color: #c6d2e4; font-size: 19px; line-height: 1.7; max-width: 650px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 999px; padding: 14px 22px; font-weight: 800; text-decoration: none; cursor: pointer; }
.btn.primary { background: var(--accent); color: white; }
.btn.primary:hover { background: var(--accent-dark); }
.btn.secondary { background: rgba(255,255,255,.12); color: white; border: 1px solid var(--line); }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; color: #dce6f5; }
.trust-row span { border: 1px solid var(--line); border-radius: 999px; padding: 9px 13px; background: rgba(255,255,255,.06); }
.hero-visual {
  position: relative;
  justify-self: start;
  width: min(470px, 100%);
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: var(--shadow);
  background: #111;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 5000ms ease;
}
.slide.active { opacity: 1; transform: scale(1); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.80));
}
.hero-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 1px solid var(--line);
  background: rgba(5,5,5,.74);
  backdrop-filter: blur(14px);
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.hero-logo { width: 118px; height: auto; display: block; background: white; border-radius: 16px; padding: 6px; margin-bottom: 12px; }
.hero-card h2 { font-size: 32px; margin: 0 0 10px; }
.hero-card p { color: #dce6f5; line-height: 1.7; }
.section, .dealer-section, .contact-section {
  margin: 0 auto;
  padding: 82px 22px;
}
.section-heading { max-width: 720px; margin-bottom: 28px; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.05; margin: 10px 0 18px; }
p { line-height: 1.7; }
.grid { display: grid; gap: 18px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--card);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 14px 35px rgba(22, 37, 64, .08);
  border: 1px solid #e7ecf4;
}
.card h3 { margin-top: 0; }
.card p { color: var(--muted); }
.dealer-section {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: center;
  background: white;
  border-radius: 34px;
  margin-top: 28px;
  box-shadow: var(--shadow);
}
.dealer-badge {
  min-height: 220px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--accent), #050505 70%);
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}
.dealer-badge span { font-size: 26px; font-weight: 900; }
.dealer-badge strong { display: block; font-size: 48px; }
.dealer-badge small { color: #ffd8dc; font-weight: 800; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.area-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.area-list li { background: white; border: 1px solid #e7ecf4; border-radius: 15px; padding: 14px 16px; font-weight: 700; }
.contact-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  background: var(--bg);
  color: white;
  border-radius: 34px 34px 0 0;
}
.contact-copy p { color: #c6d2e4; }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: white;
  color: var(--text);
  border-radius: 26px;
  padding: 24px;
}
label { font-weight: 800; font-size: 14px; }
input, select, textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d8e0eb;
  border-radius: 13px;
  padding: 13px 14px;
  font: inherit;
}
.full { grid-column: 1 / -1; }
.footer {
  margin: 0 auto;
  padding: 24px 22px 36px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--bg);
  color: #c6d2e4;
}
.footer a { color: white; }
@media (max-width: 850px) {
  .menu-toggle { display: block; }
  .nav-links { display: none; position: absolute; left: 16px; right: 16px; top: 76px; background: #0d1b2e; padding: 18px; border-radius: 18px; flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .hero, .dealer-section, .split, .contact-section { grid-template-columns: 1fr; }
  .hero { padding-top: 72px; min-height: auto; }
  .hero-content, .hero-visual { justify-self: center; }
  .hero-visual { min-height: 480px; }
  .grid.three { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
}
