/* Shared approach timeline */
.aanpak {
    padding: 120px 0;
    background: var(--bg);
}

.aanpak-timeline {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.aanpak-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 4%;
    right: 4%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-40) 8%, var(--accent-40) 92%, transparent);
}

.aanpak-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.aanpak-step:last-child {
    padding-bottom: 0;
}

.aanpak-icon {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--accent-40);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.aanpak-step:hover .aanpak-icon {
    border-color: var(--accent);
    background: var(--accent-08);
    box-shadow: 0 0 24px var(--accent-20);
}

.aanpak-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.aanpak-number {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.15em;
    margin-bottom: 6px;
}

.aanpak-step h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.aanpak-step p {
    color: var(--fg-muted);
    font-size: 0.82rem;
    line-height: 1.65;
}

.aanpak-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: var(--accent-30);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s ease, gap 0.2s ease;
}

.aanpak-link svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.aanpak-link:hover {
    text-decoration-color: var(--accent);
    gap: 10px;
}

.aanpak-link:hover svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .aanpak-timeline {
        display: block;
        padding-left: 56px;
    }

    .aanpak-timeline::before {
        left: 18px;
        top: 0;
        right: auto;
        bottom: 0;
        width: 2px;
        height: auto;
        background: linear-gradient(to bottom, transparent, var(--accent-40) 8%, var(--accent-40) 92%, transparent);
    }

    .aanpak-step {
        display: block;
        text-align: left;
        padding-bottom: 44px;
    }

    .aanpak-step:last-child {
        padding-bottom: 0;
    }

    .aanpak-icon {
        position: absolute;
        left: -56px;
        top: 0;
        margin-bottom: 0;
        width: 38px;
        height: 38px;
    }

    .aanpak-icon svg {
        width: 18px;
        height: 18px;
    }

    .aanpak-number {
        padding-top: 6px;
    }

    .aanpak-step h3 {
        font-size: 1.1rem;
    }

    .aanpak-step p {
        font-size: 0.9rem;
    }
}
