/* ==========================================================
   KARE CORE CARD SYSTEM
========================================================== */

.card,

.service-card,

.hero-visual-card{

    border-radius:24px;

    overflow:hidden;

    background:#fff;

    transition:.30s ease;

}

.card:hover,

.service-card:hover,

.hero-visual-card:hover{

    transform:translateY(-8px);

    box-shadow:0 28px 70px rgba(15,23,42,.16);

}

.service-card{

    position:relative;

}

.service-card:before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#0A84FF,#22C55E);

}

/* ==========================================================
   WHY US SECTION
========================================================== */

.why-section{
    padding:100px 0;
    background:#ffffff;
}

.why-grid{
    width:min(1320px,92%);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:26px;
}

.why-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:26px;
    padding:34px 30px;
    box-shadow:0 18px 50px rgba(15,23,42,.06);
    transition:.3s ease;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 70px rgba(15,23,42,.12);
}

.why-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    background:linear-gradient(135deg,#0A84FF,#25D366);
    color:#fff;
    font-size:26px;
    font-weight:900;
}

.why-card h3{
    margin:0 0 14px;
    font-size:22px;
    color:#071326;
}

.why-card p{
    margin:0;
    color:#64748b;
    line-height:1.7;
    font-size:16px;
}

@media(max-width:991px){
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .why-section{
        padding:70px 0;
    }

    .why-grid{
        grid-template-columns:1fr;
    }
}