.process-section{
padding:110px 20px;
background:linear-gradient(180deg,#ffffff,#f3f0ff,#ffffff);
text-align:center;
}

.process-container{
max-width:1100px;
margin:auto;
}

.process-title{
font-size:36px;
font-weight:600;
margin-bottom:12px;
color:#111;
}

.process-subtitle{
font-size:18px;
color:#666;
margin-bottom:70px;
max-width:650px;
margin-left:auto;
margin-right:auto;
}

/* GRID */

.process-steps{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
gap:30px;
position:relative;
}

/* STEP CARD */

.process-step{
background:#fff;
padding:35px 25px;
border-radius:16px;
box-shadow:0 12px 30px rgba(0,0,0,0.06);
transition:all .35s ease;
cursor:pointer;
}

.process-step:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* ICON */

.step-icon{
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:#5F1BF2;
color:#fff;
font-weight:700;
font-size:22px;
margin:0 auto 18px auto;
transition:all .35s;
}

.process-step:hover .step-icon{
background:#F2CE1B;
color:#000;
}

/* TEXT */

.process-step h3{
font-size:20px;
margin-bottom:10px;
color:#111;
}

.process-step p{
font-size:15px;
color:#666;
line-height:1.5;
}

/* CTA */

.process-cta{
margin-top:60px;
}

.process-btn{
display:inline-block;
background:#5F1BF2;
color:#fff;
padding:16px 34px;
border-radius:40px;
font-weight:600;
text-decoration:none;
transition:.3s;
box-shadow:0 10px 25px rgba(95,27,242,.35);
}

.process-btn:hover{
background:#7D4EBF;
transform:translateY(-3px);
}

.process-step.active{
border:2px solid #5F1BF2;
transform:translateY(-6px);
}

/* MOBILE */

@media(max-width:768px){

.process-title{
font-size:28px;
}

.process-subtitle{
font-size:16px;
margin-bottom:50px;
}

.process-step{
padding:28px 20px;
}

}