/* ======================================================
   WHY SECTION
====================================================== */

.why-section{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:linear-gradient(
        180deg,
        #F8FAFC 0%,
        #FFFFFF 100%
    );

}

/* ======================================================
   HEADER
====================================================== */

.why-header{

    position:relative;

    z-index:2;

    max-width:760px;

    margin:auto;

    text-align:center;

}

.why-header .section-title{

    margin-top:22px;

}

.why-header .section-description{

    margin-top:22px;

    font-size:17px;

    line-height:1.9;

    color:#64748B;

}

/* ======================================================
   GRID
====================================================== */

.why-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:80px;

}

/* ======================================================
   CARD
====================================================== */

.why-card{

    position:relative;

    overflow:hidden;

    padding:40px;

    border-radius:28px;

    background:rgba(255,255,255,.80);

    backdrop-filter:blur(18px);

    border:1px solid rgba(226,232,240,.90);

    transition:
        transform .35s,
        box-shadow .35s,
        border-color .35s;

}

.why-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        180deg,

        rgba(16,185,129,.05),

        transparent

    );

    opacity:0;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#10B981;

    box-shadow:

        0 25px 60px rgba(15,23,42,.10);

}

.why-card:hover::before{

    opacity:1;

}

/* ======================================================
   ICON
====================================================== */

.why-icon{

    width:72px;

    height:72px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(

        135deg,

        #10B981,

        #0EA5E9

    );

    color:#FFFFFF;

    margin-bottom:28px;

    box-shadow:

        0 18px 35px rgba(16,185,129,.30);

}

.why-icon svg{

    width:34px;

    height:34px;

}

/* ======================================================
   NUMBER
====================================================== */

.why-number{

    display:inline-block;

    margin-bottom:18px;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    color:#10B981;

    text-transform:uppercase;

}

/* ======================================================
   TITLE
====================================================== */

.why-card h3{

    margin:0 0 18px;

    font-size:24px;

    line-height:1.4;

    font-weight:700;

    color:#0F172A;

}

/* ======================================================
   DESCRIPTION
====================================================== */

.why-card p{

    margin:0;

    font-size:16px;

    line-height:1.9;

    color:#64748B;

}

/* ======================================================
   HOVER EFFECT
====================================================== */

.why-card:hover .why-icon{

    transform:rotate(-8deg) scale(1.08);

    transition:.35s;

}

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

@media(max-width:1024px){

    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .why-section{

        padding:90px 0;

    }

    .why-grid{

        gap:22px;

        margin-top:60px;

    }

    .why-card{

        padding:32px;

    }

    .why-icon{

        width:64px;

        height:64px;

        margin-bottom:24px;

    }

    .why-icon svg{

        width:30px;

        height:30px;

    }

}

@media(max-width:576px){

    .why-grid{

        grid-template-columns:1fr;

    }

    .why-card{

        padding:28px;

    }

    .why-card h3{

        font-size:21px;

    }

    .why-card p{

        font-size:15px;

    }

}