/* --- COMMERCIAL/INDUSTRIAL HERO SECTION --- */

.ci-hero-section {
    min-height: calc(100vh - 85px); /* Matches window height perfectly */
    overflow: hidden;
    background-color: #0c0e1b; /* Fallback color */
}

/* Background Video Styling */
.ci-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills screen without stretching */
    z-index: 0;
}

/* Dark Gradient Overlay */
.ci-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark Vanguard Navy on the left, fading to almost transparent on the right */
    background: linear-gradient(90deg, rgba(12,14,27,0.5) 0%, rgba(12,14,27,0.3) 50%, rgba(12,14,27,0) 100%);
    z-index: 1;
}

/* Typography */
.ci-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}


.ci-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85); /* Slightly muted white for readability */
}

/* Secondary Button Hover Styling */
.ci-btn-secondary {
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}
.ci-btn-secondary:hover {
    background-color: #ffffff;
    color: #0c0e1b !important; /* Turns dark on hover */
    transform: translateY(-2px);
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 991.98px) {
    .ci-hero-overlay {
        /* On mobile, stack the gradient so it's darker at the top where the text sits */
        background: linear-gradient(180deg, rgba(12,14,27,0.7) 0%, rgba(12,14,27,0.4) 60%, rgba(12,14,27,0.2) 100%);
    }
    .ci-hero-title {
        font-size: 46px;
    }
    .ci-hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .ci-hero-title {
        font-size: 38px;
    }
    .ci-hero-subtitle {
        font-size: 16px;
    }
}





/* --- SOLAR IS AN ASSET SECTION --- */
.solar-asset-section {
    background-color: #0c0e1b;
}

.asset-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}
.asset-desc strong {
    color: #ffffff;
    font-weight: 600;
}

/* Main 3D Image floating effect */
/* .asset-main-img {
    animation: floatIso 6s ease-in-out infinite;
} */

/* Floating Badges on Image */
.floating-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatIso 6s ease-in-out infinite;
}

.f-badge-icon {
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c0e1b;
    font-size: 20px;
    margin-bottom: 6px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.f-badge-text {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #ffffff;
    font-weight: 500;
}

/* Positioning the floating badges manually */
.badge-eco {
    top: 5%;
    left: 25%;
    animation-delay: 0.5s;
}
.badge-renewable {
    top: 25%;
    right: 5%;
    animation-delay: 1.5s;
}
.badge-warranty {
    bottom: 5%;
    left: 10%;
    animation-delay: 2.5s;
}

/* --- 6-BOX GRID STYLING --- */
.asset-grid-card {
    background: rgba(255, 255, 255, 0.03); /* Subtle glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.asset-grid-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: #20b038; /* Vanguard green accent on hover */
}

.asset-grid-icon {
    font-size: 28px;
    color: #20b038;
    margin-bottom: 16px;
}

.asset-grid-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 0;
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 991.98px) {
    .asset-desc {
        font-size: 15px;
    }
    .asset-grid-card {
        padding: 20px;
    }
    .asset-main-img {
        max-width: 90%;
    }
    .f-badge-icon {
        width: 40px; height: 40px; font-size: 16px;
    }
    .badge-eco { left: 15%; }
    .badge-renewable { right: 0%; top: 15%; }
}















/* --- HOW WE WORK WITH YOU SECTION --- */
.ci-process-section {
    background-color: #f8fafc; /* Soft, clean slate background to contrast the dark section above */
}

.ci-process-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #4a4a52;
    line-height: 1.6;
    max-width: 750px; /* Keeps reading width comfortable */
}

/* Timeline Layout */
.ci-process-row {
    position: relative;
    z-index: 1;
}

/* Connecting Dashed Line (Desktop Only) */
@media (min-width: 992px) {
    .ci-process-row {
        position: relative;
        z-index: 1; /* Creates a clean stacking context */
    }
    
    .ci-process-row::before {
        content: '';
        position: absolute;
        top: 10rem; 
        left: 8%;
        right: 8%;
        border-top: 2px dashed #cbd5e1; /* Subtle grey dashed line */
        z-index: -1; /* Forces the line to sit BEHIND the white cards */
    }
}

/* Card Styling */
.ci-process-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 32px 32px; /* Extra top padding to make room for the floating badge */
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Interactive Hover State */
.ci-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    border-color: #20b038; /* Highlights the border Vanguard Green */
}

/* Floating Day Marker Badge */
.ci-process-day {
    position: absolute;
    top: -20px; /* Floats halfway out of the top of the card */
    left: 32px;
    background: linear-gradient(135deg, #20b038, #15803d); /* Vanguard Green Gradient */
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 8px 24px;
    border-radius: 50px; /* Pill shape */
    box-shadow: 0 4px 10px rgba(32, 176, 56, 0.3);
    border: 4px solid #f8fafc; /* Thick border matching the section background to 'cut' the dashed line */
}

/* Card Typography */
.ci-process-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0c0e1b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.ci-process-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #4a4a52;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 991.98px) {
    .ci-process-intro {
        font-size: 16px;
    }
    .ci-process-card {
        padding: 36px 24px 24px;
    }
    .ci-process-day {
        left: 24px;
    }
    .ci-process-title {
        font-size: 20px;
    }
}









/* --- SUBMIT ENQUIRY SECTION --- */
.ci-enquiry-section {
    /* Rich, deep navy gradient matching the reference */
    background: linear-gradient(135deg, #0a1435 0%, #0c0e1b 100%); 
}

.ci-enquiry-headline {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.ci-enquiry-subline {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    max-width: 400px;
}

/* Subtle border to frame the white form nicely against the dark bg */
.ci-form-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 991.98px) {
    .ci-enquiry-headline {
        font-size: 38px;
    }
    .ci-enquiry-subline {
        font-size: 16px;
    }
}
@media (max-width: 767.98px) {
    .ci-enquiry-headline {
        font-size: 34px;
    }
}




/* --- HASSLE-FREE INSTALLATION SECTION --- */
.hassle-free-section {
    background-color: #ffffff;
}

/* Card Container */
.hassle-card {
    position: relative;
    width: 100%;
    height: 480px; 
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* .hassle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
} */

/* Image styling with zoom on hover */
.hassle-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.hassle-card:hover .hassle-img {
    transform: scale(1.05); /* Slow, premium zoom effect */
}

/* Deep Vanguard Navy Gradient Overlay */
.hassle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Fades perfectly from transparent to deep Vanguard Navy */
    background: linear-gradient(to top, rgba(12, 14, 27, 0.95) 0%, rgba(12, 14, 27, 0.8) 45%, rgba(12, 14, 27, 0) 100%);
    z-index: 2;
    padding: 60px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 70%; /* Covers enough area to ensure text is perfectly readable */
}

/* Typography */
.hassle-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.hassle-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85); /* Slightly muted white */
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 991.98px) {
    .hassle-card {
        height: 420px;
    }
}

@media (max-width: 767.98px) {
    .hassle-card {
        height: 400px; /* Slightly shorter on mobile */
    }
    .hassle-overlay {
        padding: 50px 24px 24px;
        height: 80%; /* Gradient needs to cover more area on narrow screens where text wraps more */
    }
    .hassle-title {
        font-size: 22px;
    }
    .hassle-desc {
        font-size: 14px;
    }
}





/* --- HOW THE NUMBERS WORK SECTION --- */
.numbers-section {
    background-color: #f8fafc; /* Soft slate background to separate from the white section above */
}

.numbers-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    max-width: 1000px;
}

.numbers-intro strong {
    color: #0c0e1b;
}

/* List Items */
.numbers-check {
    color: #20b038; /* Vanguard Green */
    font-size: 20px;
}

.numbers-list-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #0c0e1b;
    line-height: 1.5;
}

/* Vanguard B2B Data Table */
.vanguard-b2b-table {
    background-color: #ffffff;
}

.vanguard-b2b-table thead th {
    background-color: #0c0e1b; /* Vanguard Navy Header */
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    border: none;
    white-space: nowrap;
}

.vanguard-b2b-table tbody td {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #4a4a52;
    border-bottom: 1px solid #e2e8f0;
    white-space: nowrap;
}

.vanguard-b2b-table tbody tr:last-child td {
    border-bottom: none;
}

.bg-light {
    background-color: #f1f5f9 !important; /* Soft striping for large tables */
}


/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 991.98px) {
    .numbers-intro {
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .vanguard-b2b-table thead th,
    .vanguard-b2b-table tbody td {
        padding: 12px 16px;
        font-size: 13px;
    }
    .numbers-list-text {
        font-size: 14px;
    }
}



/* --- DELIVERED BUSINESS SOLAR SECTION --- */
.delivered-solar-section {
    background-color: #ffffff;
}

.delivered-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}
.delivered-intro strong {
    color: #0c0e1b;
}

/* Base styling for the 3 Text Cards */
.delivered-card {
    background-color: #f8fafc; /* Very light slate background */
    border-radius: 12px; /* Smooth corners on top right, bottom right */
    border-top-left-radius: 4px; /* Tighter corners on the left where the border is */
    border-bottom-left-radius: 4px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-left: 6px solid transparent; /* Placeholder for the accent border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delivered-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* Card-Specific Brand Color Accents */
.card-edu {
    border-left-color: #3b82f6; /* Vibrant Blue */
}
.card-edu .del-icon-box {
    background-color: #eff6ff;
    color: #3b82f6;
}

.card-office {
    border-left-color: #0c0e1b; /* Vanguard Deep Navy */
}
.card-office .del-icon-box {
    background-color: #e2e8f0;
    color: #0c0e1b;
}

.card-industrial {
    border-left-color: #20b038; /* Vanguard Green */
}
.card-industrial .del-icon-box {
    background-color: #dcfce7;
    color: #20b038;
}

/* Icon Box Styling */
.del-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* Typography */
.del-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0c0e1b;
    margin-bottom: 12px;
}

.del-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #4a4a52;
    margin-bottom: 20px;
}

.del-card-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    color: #4a4a52;
    margin-bottom: 10px;
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}

.del-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0c0e1b;
    font-weight: bold;
}

.del-card-list li strong {
    color: #0c0e1b;
    font-weight: 600;
}

/* The Image Promo Card */
.delivered-img-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.del-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.del-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle Navy gradient to ensure text readability over the image */
    background: linear-gradient(135deg, rgba(12, 14, 27, 0.9) 0%, rgba(12, 14, 27, 0.4) 100%);
    z-index: 1;
}

.del-img-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.del-img-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 991.98px) {
    .delivered-intro {
        font-size: 16px;
    }
    .delivered-card {
        padding: 30px 24px;
    }
    .del-img-title {
        font-size: 24px;
    }
    .delivered-img-card {
        min-height: 350px; /* Ensures the image card doesn't squish too much on mobile */
    }
}








/* --- OUR PROJECTS SECTION --- */
.our-projects-section {
    background-color: #f8fafc; /* Very subtle slate background to separate from the white section above */
}

.b2b-project-card {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.b2b-project-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Gradient overlay so the default text is readable */
.b2b-project-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(12, 14, 27, 0.9) 0%, rgba(12, 14, 27, 0) 100%);
    z-index: 1;
}

/* Default Bottom Info */
.b2b-project-info-default {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    z-index: 2;
}

.b2b-project-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

/* The Sliding Hover Overlay */
.b2b-project-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background-color: #0c0e1b; /* Vanguard Dark Navy */
    color: #ffffff;
    padding: 30px 24px 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.b2b-project-name-hover {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.b2b-project-kw {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.b2b-project-divider {
    border-color: rgba(255,255,255,0.15);
    margin: 0 0 16px 0;
    opacity: 1;
}

.b2b-project-comment {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
}

/* --- DESKTOP ANIMATIONS (Hover) --- */
@media (min-width: 992px) {
    .b2b-project-card:hover .b2b-project-overlay {
        transform: translateY(0); /* Slides up perfectly */
    }
    .b2b-project-card:hover .b2b-project-bg {
        transform: scale(1.08); /* Slow, smooth zoom */
    }
}

/* --- MOBILE & TABLET ANIMATIONS --- */
@media (max-width: 991.98px) {
    /* Since hover doesn't exist on mobile, we automatically show the overlay */
    .b2b-project-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(12, 14, 27, 0.95) 0%, rgba(12, 14, 27, 0.3) 60%, rgba(12, 14, 27, 0) 100%);
        padding-top: 60px; /* Blend the top of the box out nicely */
    }
    
    .b2b-project-info-default {
        display: none; /* Hide default title to prevent overlapping */
    }
}
/* --- B2B PROJECTS SWIPER CONTROLS --- */
.b2b-projects-swiper .swiper-slide {
    height: auto;
}

.b2b-project-pagination .swiper-pagination-bullet {
    background-color: #cbd5e1;
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.b2b-project-pagination .swiper-pagination-bullet-active {
    background-color: #0c0e1b; /* Vanguard Navy */
}

/* Custom Circular Navigation Arrows */
.b2b-project-nav-btn {
    position: static; 
    width: 44px;
    height: 44px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    background-color: #ffffff;
    margin: 0;
    transition: all 0.3s ease;
}

.b2b-project-nav-btn::after {
    font-size: 14px; 
    color: #0c0e1b;
    font-weight: bold;
}

.b2b-project-nav-btn:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

.b2b-project-nav-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}








/* --- FINAL CTA SECTION --- */
.final-cta-section {
    background-color: #f8fafc; /* Matches the background of the previous section */
}

/* The Banner Card */
.b2b-cta-card {
    /* Deep Vanguard Navy Gradient */
    background: linear-gradient(135deg, #0c0e1b 0%, #1e293b 100%); 
    border-radius: 20px;
    overflow: hidden;
}

/* Override the global heading class to be white for this dark card */
.b2b-cta-card .section-heading-poppins {
    color: #ffffff !important;
}

.b2b-cta-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    max-width: 650px;
}

/* White Pill Buttons */
.btn-white-pill {
    background-color: #ffffff;
    color: #0c0e1b;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px; /* Pill shape */
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-white-pill:hover {
    background-color: #20b038; /* Vanguard Green */
    border-color: #20b038;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(32, 176, 56, 0.3) !important;
}

/* Engineer Image */
.b2b-cta-img {
    display: block;
    position: relative;
    width: auto;
    height: 350px;
    object-fit: contain;
    object-position: bottom right;
    transform: none;
    z-index: 5;
}

.b2b-cta-card .row {
    min-height: 350px;
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 991.98px) {
    .b2b-cta-desc {
        font-size: 15px;
    }
    .btn-white-pill {
        width: 100%; /* Forces buttons to take full width and stack on mobile */
        text-align: center;
        padding: 14px 24px;
    }
}



/* --- FINANCING OPTIONS SECTION --- */
.financing-section {
    background-color: #ffffff; /* Creates a clean visual break from the previous section */
}

.financing-subline {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    max-width: 900px;
}

/* Card Styling */
.financing-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.financing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: #20b038; /* Vanguard Green subtle border highlight */
}

/* Icons */
.financing-icon-box {
    width: 60px;
    height: 60px;
    background-color: #dcfce7; /* Soft Vanguard green background */
    color: #15803d; /* Dark Vanguard green icon */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Card Typography */
.financing-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0c0e1b;
    margin-bottom: 12px;
}

.financing-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #4a4a52;
    line-height: 1.6;
    margin-bottom: 0;
}

/* "Best For" Highlight Box */
.financing-best-for {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #4a4a52;
}
.financing-best-for strong {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}

/* Disclaimer */
.financing-disclaimer {
    max-width: 700px;
    font-style: italic;
    font-size: 12px;
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 991.98px) {
    .financing-subline {
        font-size: 15px;
    }
    .financing-card {
        padding: 24px;
    }
    .financing-card-title {
        font-size: 18px;
    }
}