/* ===== Werkwijze ===== */

.page-header{
    padding:100px 0 70px;
    background:linear-gradient(135deg,var(--primary),#1d4ed8);
    background:
    linear-gradient(135deg,#0f172a,#164e63);
    color:#fff;
    text-align:center;
}

.page-header h1{
    font-size:3rem;
    margin-bottom:20px;
}

.page-header p{
    max-width:700px;
    margin:auto;
    opacity:.9;
}

.workflow{
    padding:90px 0;
    background:#9abded;
}

.workflow-item{
    display:flex;
    gap:35px;
    align-items:flex-start;
    margin-bottom:50px;
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.workflow-step-number{
    width:70px;
    height:70px;
    flex-shrink:0;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    font-weight:700;
}

.workflow-item h2{
    margin-bottom:15px;
}

.workflow-item p{
    color:#666;
    line-height:1.8;
}

.cta{
    padding:90px 0;
    text-align:center;
    background:#fff;
}

.cta h2{
    margin-bottom:20px;
}

.cta p{
    max-width:650px;
    margin:0 auto 35px;
    color:#666;
}

/* ===== Over ===== */

.about-company{
    padding:100px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-text h2{
    margin-bottom:25px;
}

.about-text p{
    margin-bottom:20px;
    line-height:1.8;
    color:#666;
}

.about-image img{
    width:100%;
    border-radius:16px;
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.values{
    padding:100px 0;
    background:#f8fafc;
}

.values h2{
    text-align:center;
    margin-bottom:60px;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
}

.value-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-icon{
    font-size:42px;
    margin-bottom:20px;
}

.stats{
    padding:90px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.stat{
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.stat h2{
    color:var(--primary);
    font-size:2rem;
    margin-bottom:10px;
}

.stat p{
    color:#666;
}

.alert{
    padding:18px 24px;
    margin-bottom:30px;
    border-radius:10px;
    font-weight:500;
}

.alert.success{
    background:#dcfce7;
    color:#166534;
    border:1px solid #86efac;
}

.alert.error{
    background:#fee2e2;
    color:#991b1b;
    border:1px solid #fca5a5;
}