:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #6b7280;
  --accent: #ff6b00;
  --accent-2: #1f3fa6;
  --border: #e5e7eb;
  --radius: 14px;
  --shadow: 0 18px 50px -24px rgba(15, 23, 42, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(248, 250, 252, 0.85);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-weight: 600;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: #e5edff;
  color: var(--accent-2);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #0b0f1a;
  color: #fff;
  border-radius: calc(var(--radius) * 2);
  margin-top: 22px;
  box-shadow: 0 25px 50px -30px rgba(0, 0, 0, 0.35);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image, url("../YRlmJNYkY4K-T_eWW68usoOMqxY-1920.jpg"));
  background-size: cover;
  background-position: center;
  filter: blur(7px) saturate(0.95) brightness(0.85);
  transform: scale(1.08);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7, 10, 18, 0.7) 0%, rgba(7, 10, 18, 0.65) 55%, rgba(7, 10, 18, 0.8) 100%);
  z-index: 0;
}

.hero .content {
  padding: 80px 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.2;
}

.hero p.lead {
  margin: 0 0 26px;
  color: #e2e8f0;
  font-size: 17px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff8d36);
  color: #0f172a;
  box-shadow: 0 12px 30px -20px rgba(255, 107, 0, 0.8);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #e2e8f0;
  background: transparent;
}

.meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: #cbd5e1;
  font-size: 14px;
}

section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.section-head h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: 0.01em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media (min-width: 1100px) {
  .grid-3 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  color: var(--text);
}

.service-card {
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px -26px rgba(15, 23, 42, 0.35);
}

.service-card.active {
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 18px 50px -20px rgba(255, 107, 0, 0.35);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.brand-card {
  position: relative;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.brand-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px -26px rgba(15, 23, 42, 0.35);
}

.brand-card.brand-active {
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 18px 50px -20px rgba(255, 107, 0, 0.35);
}

.brand-card h3 {
  margin: 8px 0 6px;
  font-size: 18px;
}

.brand-note {
  margin: 0;
  color: var(--muted);
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.12);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 13px;
}

.brand-carousel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 12px 4px;
  box-shadow: var(--shadow);
}

.brand-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-behavior: smooth;
}

.brand-slide {
  background: transparent;
  color: var(--text);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: none;
  border: none;
  min-height: 160px;
  text-align: center;
}

.brand-thumb {
  height: 140px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  margin-bottom: 4px;
}

.brand-slide p {
  margin: 6px 10px 12px;
  font-size: 14px;
  color: var(--text);
}

.brand-track::-webkit-scrollbar {
  height: 8px;
}

.brand-track::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.pill-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.pill-tab {
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.pill-tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px -24px rgba(15, 23, 42, 0.35);
}

.pill-tab-active {
  border-color: rgba(255, 107, 0, 0.45);
  color: var(--accent-2);
  background: #eef2ff;
}

.vehicle-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.vehicle-card {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 190px 1fr;
}

.vehicle-thumb {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}

.vehicle-body {
  padding: 18px;
  display: grid;
  gap: 6px;
}

.vehicle-type {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-2);
  font-weight: 800;
}

.vehicle-body h3 {
  margin: 0;
  font-size: 18px;
}

.vehicle-years {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.vehicle-footnote {
  margin: 12px 0 0;
  color: var(--muted);
}

.partner-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.partner-thumb {
  width: 100%;
  max-width: 260px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px -30px rgba(0, 0, 0, 0.6);
}

.hero-card .tagline,
.hero-card p,
.hero-card li {
  color: #d7deeb;
}

.card a {
  color: var(--accent-2);
  font-weight: 700;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 13px;
}

.services .card h3 {
  margin: 14px 0 10px;
}

.services .card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.service-card .badge {
  margin-bottom: 12px;
}

.tagline {
  color: var(--muted);
  font-size: 14px;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.list-inline li {
  background: #f1f5f9;
  color: #0f172a;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid #e2e8f0;
}

.contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.contact-item {
  display: grid;
  gap: 6px;
}

.contact-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 700;
}

.contacts .card {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 20px;
}

@media (max-width: 900px) {
  .contacts .card {
    grid-template-columns: 1fr;
  }

  .contacts .card {
    text-align: center;
  }

  .contacts .contact-item {
    justify-items: center;
  }
}

.contacts .cta-row {
  justify-content: flex-start;
  gap: 10px;
}

.contacts .btn-ghost {
  padding: 10px 14px;
}

.contact-item + .contact-item {
  margin-top: 6px;
}

.contact-logo {
  align-self: center;
  justify-self: center;
  max-width: 320px;
  width: 100%;
}

@media (max-width: 900px) {
  .contact-logo {
    margin-top: 12px;
  }
}

.map-frame {
  border: none;
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 0;
}

.footer {
  padding: 36px 0 40px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.faq {
  display: grid;
  gap: 12px;
}

.collapsible {
  border: none;
  padding: 0;
}

.collapsible summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  padding: 0;
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.collapsible summary::marker,
.collapsible summary::-webkit-details-marker {
  display: none;
}

.collapsible summary::after {
  content: "▼";
  font-size: 12px;
  color: var(--muted);
  transition: transform 0.15s ease;
}

.collapsible[open] summary::after {
  transform: rotate(-180deg);
}

.service-detail {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.94));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.service-detail p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 16px;
}

@media (max-width: 720px) {
  .hero .content {
    padding: 46px 28px 50px;
  }

  .nav-links {
    gap: 10px;
  }

  header {
    position: sticky;
  }
}
