/* ======================================================
   Fleet showcase (popular cars)
   ====================================================== */

.wd-fleet {
    background: var(--bone);
    position: relative;
}

.wd-fleet__big {
    position: absolute;
    top: 60px;
    left: -20px;
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(180px, 26vw, 380px);
    line-height: 1;
    color: rgba(var(--ink-rgb), .04);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.wd-fleet__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.wd-fleet__card {
    background: #fff;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    transition: all .4s cubic-bezier(.2, .7, .2, 1);
    border: 1px solid rgba(var(--ink-rgb), .06);
}

.wd-fleet__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -20px rgba(var(--ink-rgb), .25);
    border-color: rgba(var(--brass-rgb), .3);
}

.wd-fleet__img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream-grad-1) 0%, var(--cream-grad-2) 100%);
}

.wd-fleet__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s cubic-bezier(.2, .7, .2, 1);
}

.wd-fleet__card:hover .wd-fleet__img-wrap img {
    transform: scale(1.08);
}

.wd-fleet__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-pill);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
    z-index: 2;
}

.wd-fleet__discount {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: var(--brass);
    color: var(--ink-deep);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 8px 20px -5px rgba(var(--brass-rgb), .5);
}

.wd-fleet__body {
    padding: 28px 28px 32px;
}

.wd-fleet__model {
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.wd-fleet__name {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 18px;
    color: var(--ink);
    line-height: 1.3;
}

.wd-fleet__price-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(var(--ink-rgb), .12);
}

.wd-fleet__price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.wd-fleet__price-amount {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 28px;
    color: var(--ink);
    line-height: 1;
}

.wd-fleet__price-amount .wd-fleet__price-unit {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    margin-right: 6px;
}

.wd-fleet__price-old {
    font-size: 13px;
    color: var(--muted);
    text-decoration: line-through;
    text-decoration-color: var(--brass);
}

.wd-fleet__monthly {
    font-size: 13px;
    color: var(--muted-ink);
    font-weight: 500;
}

.wd-fleet__monthly strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 700;
    margin-left: 4px;
}

.wd-fleet__cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    background: var(--ink);
    color: var(--cream);
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all .35s ease;
}

.wd-fleet__cta:hover {
    background: var(--brass);
    color: var(--ink-deep);
}

.wd-fleet__cta svg {
    width: 16px;
    height: 16px;
    transition: transform .35s ease;
}

.wd-fleet__cta:hover svg {
    transform: translateX(-6px);
}

.wd-fleet__more {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

.wd-fleet__more-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border: 1px solid var(--ink);
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all .35s ease;
}

.wd-fleet__more-link:hover {
    background: var(--ink);
    color: var(--cream);
}

@media (max-width: 640px) {
    .wd-fleet__big {
        font-size: 160px;
    }
}
