.process{

    background:#F8FAFC;

}

.process-grid{

    display:grid;

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

    gap:30px;

    margin-top:70px;

}

.process-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.06);

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(37,99,235,.12);

}

.step{

    position:absolute;

    top:20px;

    right:20px;

    width:45px;

    height:45px;

    border-radius:50%;

    background:#2563EB;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}

.process-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    background:linear-gradient(135deg,#2563EB,#60A5FA);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    margin:0 auto 25px;

}

.process-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.process-card p{

    color:#6B7280;

    line-height:1.8;

}
.process-icon i{

    color:#fff;

}