/* Hero Banner - Bande fine minimaliste */
.hero-banner {
    width: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    padding: 16px 0;
    margin: 12px 0;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

/* Conteneur des étapes */
.hero-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0 16px;
    margin-bottom: 10px;
}

/* Étape individuelle */
.hero-step {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Icône de l'étape */
.hero-icon {
    font-size: 18px;
    line-height: 1;
}

/* Texte de l'étape */
.hero-text {
    white-space: nowrap;
}

/* Flèche entre les étapes */
.hero-arrow {
    font-size: 16px;
    color: rgba(59, 130, 246, 0.5);
    margin: 0 4px;
}

/* Conteneur des badges */
.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
    flex-wrap: wrap;
}

/* Badge individuel */
.hero-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #666;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

/* Icône du badge */
.badge-icon {
    font-size: 14px;
    line-height: 1;
}

/* Texte du badge */
.badge-text {
    white-space: nowrap;
}

/* Mode sombre (optionnel) */
@media (prefers-color-scheme: dark) {
    .hero-banner {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
        border-top-color: rgba(59, 130, 246, 0.2);
        border-bottom-color: rgba(59, 130, 246, 0.2);
    }
    
    .hero-step {
        color: #e0e0e0;
    }
    
    .hero-badge {
        color: #b0b0b0;
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(59, 130, 246, 0.3);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .hero-banner {
        padding: 12px 0;
        margin: 8px 0;
    }
    
    .hero-steps {
        gap: 4px;
        padding: 0 8px;
        margin-bottom: 8px;
    }
    
    .hero-step {
        font-size: 12px;
    }
    
    .hero-icon {
        font-size: 16px;
    }
    
    .hero-arrow {
        font-size: 14px;
        margin: 0 2px;
    }
    
    .hero-badges {
        gap: 8px;
        padding: 0 8px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .badge-icon {
        font-size: 12px;
    }
}
