/* ====================================
DOWNLOADS HERO
==================================== */

.downloads-hero{
    background:
    linear-gradient(
        rgba(8,15,28,.85),
        rgba(8,15,28,.85)
    ),
    url('../images/downloads/downloads-banner.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    padding:150px 0;
}

.downloads-hero-content{
    max-width:900px;
    color:#fff;
}

.downloads-hero-content h1{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin:25px 0;
}

.downloads-hero-content p{
    font-size:20px;
    line-height:1.9;
    color:#d7d7d7;
}

.hero-stats{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.hero-stat-box{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    padding:20px 30px;
    border-radius:15px;
}

.hero-stat-box h3{
    color:#fff;
    font-size:38px;
    margin:0;
}

.hero-stat-box span{
    color:#d7d7d7;
    font-size:14px;
}

/* ====================================
COMMON
==================================== */

.section-tag{
    display:inline-block;
    background:#eaf1ff;
    color:#214f99;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
}

.section-title{
    font-size:50px;
    font-weight:800;
    color:#111827;
    margin:20px 0;
}

.section-subtitle{
    max-width:850px;
    color:#667085;
    line-height:1.9;
    margin-bottom:50px;
}

/* ====================================
DOWNLOAD SECTIONS
==================================== */

.downloads-section{
    padding:120px 0;
    background:#fff;
}

.downloads-section-alt{
    padding:120px 0;
    background:#f8fafc;
}

.downloads-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* ====================================
DOWNLOAD CARD
==================================== */

.download-card{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.3s;
}

.download-card:hover{
    transform:translateY(-10px);
}

.download-icon{
    width:80px;
    height:80px;

    background:#214f99;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.download-icon i{
    font-size:34px;
}

.download-card h3{
    color:#111827;
    font-size:24px;
    margin-bottom:15px;
}

.download-card p{
    color:#667085;
    line-height:1.8;
    margin-bottom:25px;
}

.download-btn{
    display:inline-block;

    background:#214f99;
    color:#fff;

    text-decoration:none;

    padding:12px 25px;
    border-radius:8px;

    font-weight:600;
    transition:.3s;
}

.download-btn:hover{
    background:#17396f;
    color:#fff;
}

/* ====================================
HELP SECTION
==================================== */

.downloads-help{
    background:
    linear-gradient(
        rgba(8,15,28,.88),
        rgba(8,15,28,.88)
    ),
    url('../images/downloads/downloads-cta.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    padding:140px 0;
}

.help-content{
    text-align:center;
    max-width:950px;
    margin:auto;
}

.help-content h2{
    color:#fff;
    font-size:58px;
    font-weight:800;
    margin:25px 0;
}

.help-content p{
    color:#d7d7d7;
    font-size:20px;
    line-height:1.9;
    margin-bottom:40px;
}

/* ====================================
CTA BUTTONS
==================================== */

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.primary-btn{
    display:inline-block;

    background:#214f99;
    color:#fff;

    text-decoration:none;

    padding:15px 35px;
    border-radius:10px;

    font-weight:700;
    transition:.3s;
}

.primary-btn:hover{
    background:#17396f;
    color:#fff;
}

.secondary-btn{
    display:inline-block;

    border:2px solid #fff;
    color:#fff;

    text-decoration:none;

    padding:15px 35px;
    border-radius:10px;

    font-weight:700;
    transition:.3s;
}

.secondary-btn:hover{
    background:#fff;
    color:#111827;
}

/* ====================================
RESPONSIVE
==================================== */

@media(max-width:1200px){

    .downloads-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:991px){

    .downloads-hero-content h1{
        font-size:52px;
    }

}

@media(max-width:768px){

    .downloads-grid{
        grid-template-columns:1fr;
    }

    .hero-stats{
        flex-direction:column;
    }

    .downloads-hero-content h1{
        font-size:40px;
    }

    .section-title{
        font-size:34px;
    }

    .help-content h2{
        font-size:36px;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

}