/*==============================================================
WHY BERGER
==============================================================*/

.why-section{
    padding:120px 0;
    background:#f8f9fc;
}

/*==============================================================
HEADING
==============================================================*/

.why-heading{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.why-subtitle{
    display:inline-block;
    color:var(--primary);
    font-size:.85rem;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.why-title{
    font-size:clamp(2.2rem,4vw,3.6rem);
    font-weight:800;
    line-height:1.15;
    margin-bottom:24px;
    color:#222;
}

.why-description{
    color:#6b7280;
    font-size:1.05rem;
    line-height:1.9;
    margin:0;
}

/*==============================================================
WHY FEATURES
==============================================================*/

.why-features{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:30px;
    margin-top:60px;
}

/*==============================================================
LARGE TABLET
==============================================================*/

@media (max-width:1200px){

    .why-features{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:24px;
    }

}

/*==============================================================
TABLET
==============================================================*/

@media (max-width:768px){

    .why-section{
        padding:80px 0;
    }

    .why-heading{
        margin-bottom:45px;
    }

    .why-features{
        grid-template-columns:1fr;
        gap:20px;
    }

    .why-card{
        padding:28px;
    }

    .why-card-icon{
        width:64px;
        height:64px;
        font-size:26px;
        margin-bottom:20px;
    }

    .why-card h4{
        font-size:1.3rem;
        margin-bottom:12px;
    }

    .why-card p{
        font-size:.95rem;
        line-height:1.7;
    }

}

/*==============================================================
MOBILE
==============================================================*/

@media (max-width:576px){

    .why-section{
        padding:60px 0;
    }

    .why-heading{
        margin-bottom:35px;
    }

    .why-title{
        font-size:2rem;
    }

    .why-description{
        font-size:1rem;
    }

    .why-features{
        grid-template-columns:1fr;
        gap:18px;
    }

    .why-card{
        padding:24px;
        border-radius:20px;
    }

    .why-card-icon{
        width:56px;
        height:56px;
        font-size:22px;
        border-radius:16px;
    }

}

/*==============================================================
CARD
==============================================================*/
.why-card{
    display:flex;
    flex-direction:column;
    height:100%;
    padding:35px;
    border-radius:24px;
    background:#fff;
    border:1px solid #ececec;
    transition:.35s;
}

.why-card-icon{
    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    border-radius:20px;
    background:#fff2f2;
    color:var(--primary);
    font-size:30px;
}

.why-card h4{
    margin-bottom:18px;
    font-size:1.5rem;
    line-height:1.3;
}

.why-card p{
    margin:0;
    line-height:1.8;
    color:#666;
    flex-grow:1;
}

.why-section .row{
    row-gap:30px;
}

/*==============================================================
WHY STATS
==============================================================*/

.why-stats{
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    padding:50px;
    background:#fff;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.why-stat{
    text-align:center;
}

.why-stat h3{
    margin:0 0 10px;
    font-size:3rem;
    font-weight:800;
    color:var(--primary);
    line-height:1;
}

.why-stat p{
    margin:0;
    color:#666;
    font-weight:500;
}

/*==============================================================
RESPONSIVE
==============================================================*/

@media (max-width:991px){

    .why-stats{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
        padding:35px;
    }

}

@media (max-width:576px){

    .why-stats{
        grid-template-columns:1fr;
        padding:30px 20px;
    }

    .why-stat h3{
        font-size:2.4rem;
    }

}



/*==============================================================
WHY BERGER
==============================================================*/

.why-berger{
    position:relative;
    overflow:hidden;
}