    :root {
        --dark-bg: #061b36;
        --accent-blue: #1d72b8;
        --accent-gold: #f59e0b;
        --text-dark: #1e293b;
        --text-muted: #64748b;
        --grid-gap: 24px;
    }
/* --- Hero Section --- */
    .fleet-hero-banner {
        position: relative;
        padding: 160px 2rem 80px 2rem;
        background-color: var(--dark-bg);
        background-size: cover;
        background-position: center;
        text-align: center;
        border-bottom: 1px solid var(--res-border);
    }

    .fleet-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(3, 4, 7, 0.9) 0%, rgba(3, 4, 7, 0.7) 100%);
        z-index: 1;
    }

    .banner-hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
    }

    .banner-hero-content h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin: 0 0 1rem 0;
        color: #fff;
    }

    .banner-hero-content p {
        font-size: 1.1rem;
        color: var(--text-muted);
        line-height: 1.7;
    }

    .fleet-page-wrapper {
        background-color: #fcfdfe;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        padding-bottom: 80px;
        -webkit-font-smoothing: antialiased;
    }



    /* Clean 3-Column Responsive Grid System */
    .fleet-grid {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--grid-gap);
    }

    /* Exact Screenshot Grid Card Replication Layout */
    .fleet-card-v2 {
        background: #ffffff;
        border: 1px solid #eef2f6;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 35px 20px 0 20px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
        opacity: 0;
        transform: translateY(30px);
        will-change: transform, opacity;
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    }

    .fleet-card-v2.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    .fleet-card-v2:hover {
        box-shadow: 0 12px 30px rgba(6, 27, 54, 0.06);
    }

    /* Headers & Mini Accent Rules */
    .vehicle-category {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #94a3b8;
        font-weight: 500;
        margin-bottom: 4px;
    }

    .vehicle-headline {
        font-size: 1.15rem;
        font-weight: 700;
        color: #1e293b;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        margin-bottom: 12px;
        min-height: 28px;
    }

    .gold-divider {
        width: 40px;
        height: 2px;
        background-color: var(--accent-gold);
        margin: 0 auto 25px auto;
    }

    /* Framed Automotive Images Container */
    .vehicle-photo-frame {
        width: 100%;
        height: 160px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
    }

    .vehicle-photo-frame img {
        max-width: 95%;
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.4s ease;
    }

    .fleet-card-v2:hover .vehicle-photo-frame img {
        transform: scale(1.04);
    }

    /* Central Stats Grid blocks */
    .vehicle-metrics {
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .metric-row {
        font-size: 0.9rem;
        color: var(--text-muted);
    }

    .metric-row strong {
        color: var(--text-dark);
        font-weight: 700;
    }

    /* Bottom Action Bar */
    .reserve-bar-btn {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        margin-top: auto;
        background-color: #eef2f6;
        color: #64748b;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        padding: 18px 0;
        text-align: center;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .fleet-card-v2:hover .reserve-bar-btn {
        background-color: var(--dark-bg);
        color: #ffffff;
    }

    @keyframes bannerFadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Grid Breakdowns */
    @media (max-width: 1024px) {
        .fleet-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .fleet-hero-banner {
            height: 280px;
        }
        .fleet-banner-content h1 {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 640px) {
        .fleet-grid {
            grid-template-columns: 1fr;
            padding: 0 16px;
        }
        .fleet-hero-banner {
            height: 240px;
            margin-bottom: 40px;
        }
        .fleet-banner-content h1 {
            font-size: 1.8rem;
        }
        .fleet-banner-content p {
            font-size: 0.95rem;
        }
        .vehicle-photo-frame {
            height: 140px;
        }
    }