/*==================================================
MODULES
==================================================*/

.modules{

    padding:140px 0;

    background:#fafbff;

}

.modules-grid{

    display:grid;

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

    gap:30px;

    margin-top:70px;

}

.module-card{

    background:white;

    border-radius:28px;

    padding:40px;

    border:1px solid #ececec;

    transition:.35s;

    box-shadow:0 18px 40px rgba(0,0,0,.05);

}

.module-card:hover{

    transform:translateY(-10px);

    border-color:#ffb9df;

    box-shadow:0 30px 60px rgba(0,0,0,.10);

}

.module-icon{

    width:74px;

    height:74px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    background:linear-gradient(135deg,#ff4eb8,#6d46ff);

    margin-bottom:25px;

}

.module-card h3{

    font-size:25px;

    color:#222;

    margin-bottom:16px;

}

.module-card p{

    color:#666;

    line-height:1.8;

    font-size:16px;

}