/* ========================================
   WHY CHOOSE US
======================================== */

.why-section{
    padding:96px 32px;
    background:#F8F8F6;
}

.section-container{
    max-width:1200px;
    margin:0 auto;
}

.section-heading{
    max-width:640px;
    margin:0 auto;
    text-align:center;
}

.section-kicker{
    font-family:var(--font-mono);
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#3F6FA8;
}

.section-title{
    margin-top:12px;
    color:#0B132B;
    font-size:40px;
    line-height:1.1;
    letter-spacing:-1px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:24px;
    margin-top:52px;
}

.why-card{
    background:#fff;
    border:1px solid #D6D8DC;
    border-radius:18px;
    padding:30px;
    box-shadow:0 6px 30px rgba(11,19,43,.05);
    transition:.3s ease;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(11,19,43,.12);
}

.why-number{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:#0B132B;
    color:#fff;
    font-family:var(--font-mono);
    font-weight:700;
    font-size:16px;
}

.why-card h3{
    margin-top:18px;
    color:#0B132B;
    font-size:20px;
    font-weight:600;
}

.why-card p{
    margin-top:10px;
    color:#6B7280;
    font-size:15px;
    line-height:1.6;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width:768px){

    .why-section{
        padding:72px 20px;
    }

    .section-title{
        font-size:32px;
    }

}
@media (min-width:768px) and (max-width:1024px){

    .why-grid{

        grid-template-columns:repeat(4,1fr);

    }

}