.lux-fleet-section,
.lux-fleet-section * {
  box-sizing: border-box;
}

.lux-fleet-section {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

.lux-fleet-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 56px;
}

.lux-fleet-media {
  width: 40%;
}

.lux-fleet-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.lux-fleet-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lux-fleet-copy {
  max-width: 760px;
}

.lux-fleet-eyebrow {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff5a3d;
}

.lux-fleet-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  color: #111111;
}

.lux-fleet-copy > p:not(.lux-fleet-eyebrow) {
  margin: 20px 0 0;
  max-width: 720px;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  font-weight: 400;
  color: #343434;
}

.lux-fleet-features {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.lux-fleet-feature {
  position: relative;
  min-height: 148px;
  padding: 28px 18px;
  border-right: 1px solid #e6e6e6;
  overflow: hidden;
}

.lux-fleet-feature:last-child {
  border-right: 0;
}

.lux-fleet-feature-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(to top, #f5f5f5, transparent);
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.lux-fleet-feature:hover .lux-fleet-feature-bg {
  opacity: 1;
}

.lux-fleet-feature-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
}

.lux-fleet-feature-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(49%) sepia(94%) saturate(1435%) hue-rotate(335deg) brightness(103%) contrast(101%);
}

.lux-fleet-feature-title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.35;
  font-weight: 800;
  color: #2d2d2d;
  text-align: center;
  transition: transform 0.2s ease;
}

.lux-fleet-feature:hover .lux-fleet-feature-title {
  transform: translateX(6px);
}

.lux-fleet-feature-bar {
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 24px;
  border-radius: 0 999px 999px 0;
  background: #d4d4d4;
  transform: translateY(-50%);
  transition: height 0.2s ease, background 0.2s ease;
}

.lux-fleet-feature:hover .lux-fleet-feature-bar {
  height: 36px;
  background: #ff5a3d;
}

@media (max-width: 900px) {
  .lux-fleet-section {
    padding: 56px 20px;
  }

  .lux-fleet-inner {
    flex-direction: column;
    gap: 28px;
  }

  .lux-fleet-content,
  .lux-fleet-media {
    width: 100%;
  }

  .lux-fleet-media {
    order: 2;
  }

  .lux-fleet-content {
    order: 1;
  }

  .lux-fleet-copy {
    text-align: center;
    max-width: 100%;
  }

  .lux-fleet-copy > p:not(.lux-fleet-eyebrow) {
    max-width: 520px;
    margin: 28px auto 0;
    text-align: left;
  }

  .lux-fleet-features {
    grid-template-columns: repeat(6, 1fr);
    row-gap: 32px;
  }

  .lux-fleet-feature:nth-child(1),
  .lux-fleet-feature:nth-child(2),
  .lux-fleet-feature:nth-child(3) {
    grid-column: span 2;
  }

  .lux-fleet-feature:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .lux-fleet-feature:nth-child(5) {
    grid-column: 4 / span 2;
    border-right: 0;
  }

  .lux-fleet-feature:nth-child(3) {
    border-right: 0;
  }
}