:root {
  --bg: #07111f;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #5b6475;
  --line: #e7eaf1;
  --primary: #ff5a1f;
  --primary-dark: #db4611;
  --navy: #0d1b2a;
  --soft: #f5f7fb;
  --shadow: 0 20px 50px rgba(8, 15, 30, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.site-main { min-height: 60vh; }
.section { padding: 72px 0; }
.section--catalog { background: var(--soft); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.section-eyebrow, .hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero__badge { background: rgba(255, 255, 255, 0.08); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}
.site-branding {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-title {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
}
.site-tagline {
  color: rgba(255,255,255,.72);
  margin: 0;
  font-size: .92rem;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.primary-nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a, .header-link {
  color: rgba(255,255,255,.88);
  font-weight: 600;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-link--outline {
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
}
.hero {
  background: radial-gradient(circle at top right, rgba(255, 90, 31, .22), transparent 30%), linear-gradient(180deg, #07111f 0%, #0e1b2d 100%);
  color: #fff;
  padding: 86px 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 28px;
  align-items: center;
}
.hero__title {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.02;
  margin: 18px 0 18px;
}
.hero__text { max-width: 60ch; color: rgba(255,255,255,.8); font-size: 1.08rem; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-card,
.content-card,
.vehicle-card,
.product-summary-card,
.product-gallery-card,
.empty-state,
.fleetee-frame-wrap {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 28px;
  color: var(--text);
}
.hero-list { margin: 18px 0 0; padding-left: 18px; }
.hero-list li + li { margin-top: 10px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 16px;
  font-weight: 700;
  transition: .22s ease;
}
.button--large { padding: 15px 22px; }
.button--primary {
  background: var(--primary);
  color: #fff;
}
.button--primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.button--ghost {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.vehicle-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.vehicle-card__media { aspect-ratio: 4 / 3; background: #dfe8f3; }
.vehicle-card__media img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 260px;
  color: var(--muted);
  background: linear-gradient(135deg, #e4ebf4, #f8fafc);
}
.vehicle-card__body { padding: 22px; }
.vehicle-card__topline,
.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.vehicle-card__subtitle {
  margin: 0;
  color: var(--primary);
  font-size: .88rem;
  font-weight: 700;
}
.vehicle-card__title {
  margin: 12px 0;
  font-size: 1.35rem;
  line-height: 1.2;
}
.vehicle-card__price,
.product-price {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
}
.vehicle-card__excerpt {
  color: var(--muted);
  min-height: 72px;
}
.vehicle-card__excerpt p { margin-top: 0; }
.vehicle-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.prose > *:first-child { margin-top: 0; }
.prose > *:last-child { margin-bottom: 0; }
.empty-state { padding: 28px; text-align: center; }
.product-layout,
.product-content-grid,
.site-footer__grid {
  display: grid;
  gap: 24px;
}
.product-layout { grid-template-columns: 1.15fr .85fr; align-items: start; }
.product-content-grid { grid-template-columns: 1fr 340px; }
.product-gallery-card,
.product-summary-card,
.content-card { padding: 28px; }
.product-hero-image { width: 100%; border-radius: 18px; object-fit: cover; }
.spec-list { list-style: none; margin: 0; padding: 0; }
.spec-list li + li { margin-top: 10px; }
.fleetee-frame-wrap { padding: 16px; overflow: hidden; }
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.84);
  padding: 56px 0 18px;
}
.site-footer__grid { grid-template-columns: 1.2fr .8fr .8fr; }
.site-footer__bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.site-footer a { color: #fff; }
.widget-title { color: #fff; margin-top: 0; }
@media (max-width: 1024px) {
  .hero__grid,
  .vehicle-grid,
  .product-layout,
  .product-content-grid,
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .product-content-grid,
  .site-footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .menu-toggle { display: inline-block; }
  .primary-nav {
    position: absolute;
    right: 16px;
    top: calc(100% + 10px);
    width: min(340px, calc(100% - 32px));
    background: #0d1b2a;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 16px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav ul,
  .header-actions { flex-direction: column; align-items: stretch; }
  .section-heading,
  .vehicle-card__topline,
  .product-actions { align-items: stretch; }
  .hero__grid,
  .vehicle-grid,
  .product-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 72px 0; }
  .section { padding: 56px 0; }
  .container { width: min(100% - 24px, 1200px); }
  .site-header__inner { min-height: 74px; }
  .vehicle-card__body,
  .content-card,
  .product-summary-card,
  .product-gallery-card { padding: 20px; }
  .button,
  .button--large { width: 100%; }
  .vehicle-card__actions { flex-direction: column; }
}


.hero-card--welcome h2 {
  margin-top: 0;
  margin-bottom: 14px;
}
.hero-card--welcome p {
  margin: 0;
  color: var(--muted);
}
.vehicle-card__price-wrap,
.product-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.vehicle-card__price-label {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  font-weight: 700;
}
.vehicle-card__options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 8px 0 16px;
}
.vehicle-card__options--large {
  margin-top: 18px;
  margin-bottom: 22px;
}
.vehicle-option-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 600;
}
.product-options-panel {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.product-options-panel h3 {
  margin-top: 0;
  margin-bottom: 12px;
}
.spec-list--options li + li {
  margin-top: 12px;
}
@media (max-width: 991px) {
  .vehicle-card__price-wrap,
  .product-price-wrap {
    align-items: flex-start;
  }
}


.section-lead {
  margin: 10px 0 0;
  color: var(--muted);
}
.section-heading--center {
  justify-content: center;
  text-align: center;
}
.section--intro {
  background: #fff;
}
.intro-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}
.feature-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.feature-card,
.step-card,
.cta-panel {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-card,
.step-card {
  padding: 26px;
}
.feature-card h3,
.step-card h3,
.cta-panel h2 {
  margin-top: 0;
}
.feature-card p,
.step-card p,
.cta-panel p {
  margin-bottom: 0;
  color: var(--muted);
}
.section--steps {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}
.step-card__number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 90, 31, .12);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 14px;
}
.section--cta {
  background: var(--soft);
}
.cta-panel {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1024px) {
  .intro-grid,
  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .cta-panel {
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
  }
}
