/* --- About page (split hero + werkwijze) --- */

.about-split-hero {
    padding: 100px 0 72px;
}

.about-split-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: center;
}

.about-split-hero-media {
    border-radius: 16px;
    overflow: hidden;
    background: var(--card-background, #1a1a1a);
    aspect-ratio: 3 / 4;
    max-height: min(72vh, 640px);
}

.about-split-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-split-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 16px;
    font-weight: 500;
}

.about-split-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-split-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #a0a0a0;
    margin-bottom: 36px;
    max-width: 36em;
}

.about-split-intro strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Stats row */
.about-hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--border-color);
}

.about-hero-stat {
    flex: 1 1 0;
    min-width: 100px;
    text-align: left;
    padding: 8px 16px 0 0;
}

.about-hero-stat--region .stat-number {
    font-size: 1.75rem;
    line-height: 1.2;
}

.about-hero-stats-divider {
    width: 1px;
    align-self: stretch;
    min-height: 56px;
    background: var(--border-color);
    flex-shrink: 0;
}

.about-hero-stats .stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.about-hero-stats .stat-number.stat-no-animate {
    -webkit-text-fill-color: var(--text-color);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.about-hero-stats .stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #888;
    font-weight: 500;
}

/* Werkwijze */
.about-process {
    padding: 64px 0 88px;
    border-top: 1px solid var(--border-color);
}

.about-process-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.about-process-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-process-step {
    position: relative;
    padding: 28px 24px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: border-color 0.3s ease;
}

.about-process-step:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.about-process-num {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #666;
    margin-bottom: 16px;
}

.about-process-step-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.about-process-step p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #a0a0a0;
    margin: 0;
}

@media (max-width: 1024px) {
    .about-split-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-split-hero-media {
        max-height: 480px;
        max-width: 420px;
        margin: 0 auto;
    }

    .about-process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-split-hero {
        padding: 88px 0 48px;
    }

    .about-split-hero-media {
        max-width: 100%;
        border-radius: 12px;
    }

    .about-hero-stats {
        flex-direction: column;
        gap: 0;
    }

    .about-hero-stats-divider {
        width: 100%;
        height: 1px;
        min-height: 0;
    }

    .about-hero-stat {
        padding: 16px 0 0;
    }

    .about-process {
        padding: 48px 0 64px;
    }

    .about-process-title {
        text-align: left;
        margin-bottom: 28px;
    }
}

@media (max-width: 480px) {
    .about-split-intro {
        font-size: 1rem;
    }

    .about-hero-stats .stat-number {
        font-size: 1.85rem;
    }
}
