.fleet-page {
    background: #f4f7fb;
}

.fleet-hero {
    padding: 155px 0 80px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 15%, rgba(103, 165, 255, 0.38), transparent 27%),
        linear-gradient(125deg, #0d2344 0%, #174a94 60%, #286eda 100%);
}

.fleet-hero-inner {
    max-width: 780px;
    text-align: center;
}

.fleet-hero .section-kicker {
    color: #bcd7ff;
}

.fleet-hero h1 {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.fleet-hero p {
    max-width: 680px;
    margin: 23px auto 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.04rem;
    line-height: 1.7;
}

.fleet-section {
    padding: 85px 0 100px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.fleet-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--ride-border);
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(18, 35, 63, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(18, 35, 63, 0.13);
}

.fleet-card-image {
    display: grid;
    height: 225px;
    place-items: center;
    padding: 22px;
    background: linear-gradient(155deg, #f8faff, #e9f1fc);
}

.fleet-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fleet-no-photo {
    display: grid;
    gap: 10px;
    justify-items: center;
    color: var(--ride-muted);
    font-size: 0.8rem;
}

.fleet-no-photo i {
    color: #9db6da;
    font-size: 3.5rem;
}

.fleet-card-content {
    padding: 26px;
}

.fleet-reference {
    display: block;
    color: var(--ride-muted);
    font-size: 0.7rem;
}

.fleet-card h2 {
    margin: 7px 0 21px;
    color: var(--ride-ink);
    font-size: 1.35rem;
    letter-spacing: -0.035em;
}

.fleet-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 14px;
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.fleet-features li {
    display: flex;
    min-width: 0;
    gap: 8px;
    align-items: center;
    color: #536278;
    font-size: 0.78rem;
}

.fleet-features li i {
    flex: 0 0 auto;
    color: var(--ride-blue);
}

.fleet-card-content > a,
.fleet-help-inner > a {
    display: flex;
    min-height: 48px;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 0 17px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
    background: var(--ride-blue);
    border-radius: 10px;
}

.fleet-help {
    padding: 75px 0;
    background: #e7f0ff;
}

.fleet-help-inner {
    display: flex;
    gap: 45px;
    align-items: center;
    justify-content: space-between;
}

.fleet-help-inner > div {
    max-width: 720px;
}

.fleet-help-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    place-items: center;
    color: var(--ride-blue);
    font-size: 1.35rem;
    background: #fff;
    border-radius: 13px;
}

.fleet-help h2 {
    margin: 0;
    color: var(--ride-ink);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.04em;
}

.fleet-help p {
    margin: 13px 0 0;
    color: var(--ride-muted);
    line-height: 1.7;
}

.fleet-help-inner > a {
    flex: 0 0 auto;
    gap: 18px;
}

@media (max-width: 980px) {
    .fleet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .fleet-hero {
        padding: 125px 0 65px;
    }

    .fleet-section {
        padding: 60px 0 75px;
    }

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

    .fleet-card-image {
        height: 215px;
    }

    .fleet-help-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
