/* --- SEKTION 4: HOW IT WORKS --- */

.hiw-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px;
    background: transparent;
}

/* Header Styles */
.hiw-header {
    margin-bottom: 80px;
    max-width: 800px;
}

.hiw-label {
    color: var(--primary-orange);
    font-size: 0.9rem;      /* Klein */
    font-weight: 600;       /* Dünn (Light) */
    letter-spacing: 1px;    /* Leicht gesperrt für cleanen Look */
    text-transform: uppercase; /* Optional: Wirkt oft technischer */
    opacity: 0.9;
}

.hiw-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.hiw-subtitle {
    font-size: 1.1rem;
    color: #9ca3af; /* Helles Grau */
    margin: 0;
}

/* Steps Container */
.steps-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    position: relative;
    gap: 20px;
}

/* Einzelner Step */
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1; /* Alle Steps gleich breit */
    position: relative;
}

/* Wrapper für Icon + Pfeil */
.step-icon-wrapper {
    display: flex;
    align-items: center;
    /* Der Pfeil soll rechts neben dem Kreis stehen, 
       aber optisch wirkt es zentriert zum nächsten Element. 
       Wir schieben es mit transform leicht zurecht. */
    width: 100%; 
    justify-content: center;
    position: relative;
    margin-bottom: 24px;
}

.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--primary-orange);
    background-color: var(--primary-orange); /* Oder #0c0b09 wenn du Hintergrund brauchst */
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    transition: all 0.3s ease;
    
    /* Leichter Glow Effekt */
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.1);
}

.step-item:hover .step-circle {
    background-color: transparent;
    color: var(--primary-orange); /* Icon wird schwarz bei Hover */
    box-shadow: 0 0 25px rgba(249, 115, 22, 0.4);
    transform: scale(1.1);
}

/* Der Pfeil daneben */
.step-arrow {
    position: absolute;
    right: -10px; /* Pfeil ragt nach rechts raus */
    color: #52525b; /* Dunkles Grau für den Pfeil */
    display: flex;
    align-items: center;
}

/* SVG Größe anpassen */
.step-arrow svg {
    width: 20px;
    height: 20px;
}

/* Inhalte (Text) */
.step-content {
    padding: 0 10px;
}

.step-content h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.step-content p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive: Auf Handy untereinander */
@media (max-width: 900px) {
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-arrow {
        display: none; /* Pfeile ausblenden auf Handy */
        /* Oder rotieren: transform: rotate(90deg); top: auto; bottom: -30px; right: auto; */
    }
    
    .hiw-title {
        font-size: 2rem;
    }
}