:root {
  --red: #c90012;
  --red-dark: #9d000d;
  --black: #070707;
  --charcoal: #141414;
  --ink: #1c1c1c;
  --muted: #666666;
  --line: #e7e7e7;
  --paper: #ffffff;
  --soft: #f7f7f7;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
  --radius: 18px;
  --container: 1240px;
}

* {
  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(--ink);
  background: var(--paper);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

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

.section {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-shell {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  width: 132px;
}

.brand img {
  width: 132px;
  max-height: 90px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  margin: 6px 0;
  background: var(--black);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 28px rgba(201, 0, 18, 0.22);
}

.btn-outline {
  color: var(--red);
  background: transparent;
  border-color: var(--red);
}

.btn-outline.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-light {
  background: #fff;
  color: var(--red);
}

.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.74) 42%, rgba(0, 0, 0, 0.22) 100%), url("assets/images/hero-luxury-fleet.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: -14%;
  right: -16%;
  width: 48vw;
  height: 120%;
  background: linear-gradient(135deg, transparent 20%, rgba(201, 0, 18, 0.55) 21%, rgba(201, 0, 18, 0.83) 70%, transparent 71%);
  transform: skewX(-13deg);
  z-index: -1;
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.05fr 420px;
  align-items: center;
  gap: 50px;
  padding: 58px 0;
}

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

.hero h1,
.section-heading h2,
.split-info h2,
.image-panel h2,
.events-content h2,
.cta-strip h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(48px, 6vw, 86px);
}

.hero h1 span,
.section-heading h2 span,
.split-info h2 span {
  color: var(--red);
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 700px;
  margin-top: 54px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.trust-row article {
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-row article:last-child {
  border-right: 0;
}

.trust-row .icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.trust-row strong,
.trust-row small {
  display: block;
}

.trust-row strong {
  margin-bottom: 5px;
  font-size: 15px;
}

.trust-row small {
  color: rgba(255, 255, 255, 0.76);
}

.booking-card {
  padding: 28px;
  border-radius: 16px;
  color: #fff;
  background: rgba(8, 8, 8, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
}

.booking-card h2 {
  margin: 0 0 20px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.booking-card form {
  display: grid;
  gap: 13px;
}

.booking-card label {
  display: grid;
  gap: 6px;
}

.booking-card label span {
  font-size: 12px;
  font-weight: 800;
}

.booking-card input,
.booking-card select {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.booking-card input:focus,
.booking-card select:focus {
  box-shadow: 0 0 0 3px rgba(201, 0, 18, 0.28);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-align: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.split-info h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.section-heading p:not(.eyebrow) {
  margin: 15px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.fleet-section {
  background: #fff;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.fleet-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.12);
}

.fleet-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  padding: 22px;
  background: #fafafa;
}

.fleet-card-body {
  padding: 0 24px 26px;
}

.fleet-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

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

.fleet-card .meta {
  color: #555;
  font-size: 13px;
  font-weight: 800;
}

.fleet-card a {
  color: var(--red);
  font-weight: 900;
}

.split-info {
  padding-top: 30px;
  background: linear-gradient(180deg, #fff, #fafafa);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: start;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.steps article {
  position: relative;
  min-height: 145px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.steps article:last-child {
  border-right: 0;
}

.steps span {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  background: #000;
  font-size: 12px;
  font-weight: 900;
}

.steps div {
  padding-top: 44px;
}

.steps h3,
.why-grid h3,
.service-card h3 {
  margin: 0 0 7px;
  font-size: 17px;
}

.steps p,
.why-grid p,
.service-card p {
  margin: 0;
  color: var(--muted);
}

.why-card {
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.why-card h2 {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: clamp(30px, 3vw, 42px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.why-grid span,
.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--red);
  background: rgba(201, 0, 18, 0.08);
  font-weight: 900;
}

.feature-panels {
  padding-top: 26px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.image-panel {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: #111;
}

.image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.image-panel:hover img {
  transform: scale(1.05);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.2));
}

.panel-overlay {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 42px;
}

.panel-overlay h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.panel-overlay p {
  color: rgba(255, 255, 255, 0.84);
}

.panel-overlay ul,
.events-content ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.panel-overlay li,
.events-content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 9px;
}

.panel-overlay li::before,
.events-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.services-section {
  background: var(--soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.events-section {
  padding: 88px 0;
  color: #fff;
  background: var(--black);
  overflow: hidden;
}

.events-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 40px;
  align-items: center;
}

.events-content h2 {
  font-size: clamp(36px, 4vw, 58px);
}

.events-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.events-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.events-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(201, 0, 18, 0.36), transparent);
  z-index: 1;
}

.events-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.testimonials {
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.05);
}

.stars {
  color: var(--red);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.testimonial-card p {
  color: #444;
  margin: 0 0 22px;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 13px;
}

.cta-strip {
  color: #fff;
  background: linear-gradient(90deg, #111, #1f1f1f);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-grid {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 34px;
  align-items: center;
  min-height: 150px;
}

.cta-grid img {
  height: 140px;
  object-fit: contain;
  transform: translateY(-10px);
}

.cta-grid h2 {
  font-size: 30px;
}

.cta-grid p {
  max-width: 620px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  color: #fff;
  background: #090909;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  padding: 64px 0;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 18px;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.footer-brand p,
.contact-block p {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer a {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.site-footer a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #18a84b;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav.open {
    position: absolute;
    top: 98px;
    left: 24px;
    right: 24px;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.open a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open a:last-child {
    border-bottom: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .booking-card {
    max-width: 680px;
  }

  .fleet-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid,
  .feature-grid,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .nav-shell {
    min-height: 82px;
  }

  .brand,
  .brand img {
    width: 126px;
  }

  .site-nav.open {
    top: 82px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding: 56px 0 42px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    font-size: 17px;
  }

  .trust-row,
  .steps,
  .why-grid,
  .testimonial-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-row article,
  .steps article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .steps article {
    border-bottom-color: var(--line);
  }

  .trust-row article:last-child,
  .steps article:last-child {
    border-bottom: 0;
  }

  .booking-card {
    padding: 22px;
  }

  .form-row,
  .fleet-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .panel-overlay {
    padding: 30px;
  }

  .image-panel {
    min-height: 520px;
  }

  .events-image img {
    height: 360px;
  }

  .cta-grid {
    padding: 28px 0;
    text-align: center;
  }

  .cta-grid img {
    margin: auto;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 44px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
  }
}


/* Fleet page */
.fleet-page .site-header {
  background: rgba(255, 255, 255, 0.97);
}

.fleet-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  color: #fff;
  background: var(--black);
  isolation: isolate;
}

.fleet-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.77) 45%, rgba(0, 0, 0, 0.22) 100%), url("assets/images/hero-luxury-fleet.png") center / cover no-repeat;
}

.fleet-hero::after {
  content: "";
  position: absolute;
  right: -18vw;
  top: -30%;
  width: 54vw;
  height: 140%;
  z-index: -1;
  background: linear-gradient(135deg, transparent 18%, rgba(201, 0, 18, 0.72) 19%, rgba(201, 0, 18, 0.92) 68%, transparent 69%);
  transform: skewX(-16deg);
}

.fleet-hero-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
}

.fleet-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 5.6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.fleet-hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.fleet-hero-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.fleet-hero-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.fleet-hero-card span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}

.fleet-hero-card h2 {
  margin: 8px 0 8px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.fleet-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.fleet-stat-band {
  background: #fff;
  transform: translateY(-42px);
  margin-bottom: -42px;
}

.fleet-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
}

.fleet-stats article {
  padding: 30px;
  text-align: center;
  background: #fff;
  border-right: 1px solid var(--line);
}

.fleet-stats article:last-child {
  border-right: 0;
}

.fleet-stats strong {
  display: block;
  color: var(--red);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.fleet-stats span {
  display: block;
  margin-top: 8px;
  color: #444;
  font-weight: 800;
}

.fleet-catalogue {
  background: linear-gradient(180deg, #fff, #f7f7f7);
}

.fleet-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -12px 0 34px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #222;
  background: #fff;
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-1px);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vehicle-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

.vehicle-card.hidden {
  display: none;
}

.vehicle-image {
  display: grid;
  place-items: center;
  min-height: 265px;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 55%, rgba(201, 0, 18, 0.08), transparent 38%),
    linear-gradient(180deg, #fbfbfb, #f1f1f1);
}

.vehicle-image img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.18));
}

.vehicle-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.vehicle-topline,
.vehicle-meta,
.vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.vehicle-topline {
  justify-content: space-between;
  margin-bottom: 12px;
}

.vehicle-topline span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vehicle-topline strong {
  color: #333;
  font-size: 12px;
}

.vehicle-card h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.04em;
}

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

.vehicle-meta {
  margin-top: auto;
  padding-top: 10px;
}

.vehicle-meta span,
.vehicle-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.vehicle-meta span {
  color: #333;
  background: #f1f1f1;
}

.vehicle-tags {
  margin: 16px 0 18px;
}

.vehicle-tags span {
  color: var(--red);
  background: rgba(201, 0, 18, 0.08);
}

.fleet-support {
  background: #fff;
}

.fleet-support-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.fleet-support-card {
  padding: 44px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #090909, #222);
  box-shadow: var(--shadow);
}

.fleet-support-card h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.fleet-support-card p {
  color: rgba(255, 255, 255, 0.78);
}

.fleet-support-card ul {
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.fleet-support-card li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
}

.fleet-support-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.fleet-support-image {
  overflow: hidden;
  border-radius: 22px;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.fleet-support-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1120px) {
  .fleet-hero-grid,
  .fleet-support-grid {
    grid-template-columns: 1fr;
  }

  .fleet-hero-card {
    max-width: 620px;
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .fleet-hero-grid {
    min-height: auto;
    padding: 58px 0 72px;
  }

  .fleet-hero::after {
    display: none;
  }

  .fleet-stats,
  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .fleet-stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fleet-stats article:last-child {
    border-bottom: 0;
  }

  .fleet-support-card {
    padding: 30px;
  }

  .fleet-support-image {
    min-height: 300px;
  }
}
