/* ===========================
   ABLAUF
=========================== */

.process-section{
    padding:130px 0;
    background:#fff;
}

.process-header{
    max-width:900px;
    margin:0 auto 80px;
    text-align:center;
}

.process-header h2{
    margin:18px 0 22px;
    font-size:clamp(34px,3.8vw,52px);
    line-height:1.15;
}

.process-header p{
    max-width:720px;
    margin:auto;
    color:var(--text-soft);
    font-size:20px;
    line-height:1.7;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:48px;
}

.process-card{
    text-align:center;
}

.process-number{
    width:100px;
    height:100px;
    margin:0 auto 30px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    background:linear-gradient(180deg,#0b7cff,#0057c8);
    box-shadow:0 18px 35px rgba(0,87,200,.24);
    font-size:40px;
    font-weight:900;
}

.process-card h3{
    margin-bottom:18px;
    color:var(--blue-dark);
    font-size:24px;
}

.process-card p{
    color:var(--text-soft);
    font-size:17px;
    line-height:1.75;
}

@media(max-width:1100px){
    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .process-grid{
        grid-template-columns:1fr;
    }
}
