/* ============================================================================
   Process Section - Horizontal & Kompakt (wie auf dem Bild)
   ============================================================================ */

.process-section-modern {
    margin: 2rem auto;
    padding: 1rem 1rem;
    background: var(--color-white);
    border: 2px solid #e0e5eb;
    border-radius: 12px;
    max-width: 800px;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.process-step-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.process-circle {
    width: 35px;
    height: 35px;
    background: #2E5C9A;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2E5C9A;
    white-space: nowrap;
}

.process-connector {
    font-size: 1.25rem;
    color: #cbd5e0;
    font-weight: 300;
    margin: 0 0.125rem;
    padding-bottom: 1rem;
}



/* Mobile */
@media (max-width: 768px) {
    .process-section-modern {
        padding: 0.66rem 0.55rem;
        margin: 1.1rem auto;
        border-radius: 8px;
    }

    .process-step-modern {
        max-width: 165px;
        gap: 0.165rem;
    }

    .process-circle {
        width: 21px;
        height: 21px;
        font-size: 0.578rem;
    }

    .process-text {
        font-size: 0.495rem;
    }

    .process-connector {
        font-size: 0.743rem;
        margin: 0 0.083rem;
        padding-bottom: 0.66rem;
        animation: arrow-pulse 2s ease-in-out infinite;
    }

    .process-steps {
        gap: 0.33rem;
    }
}

/* Pfeil-Animation */
@keyframes arrow-pulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(5px);
        opacity: 0.7;
    }
}
