/**
 * Main CSS - Non-critical styles
 * SecuCentral Marketing Sites
 *
 * Ce fichier contient les styles non-critiques (below-the-fold).
 * Il est chargé de manière asynchrone pour ne pas bloquer le rendu initial.
 *
 * Contient:
 * - Features section
 * - Stats section
 * - CTA section
 * - Footer
 * - Formulaires
 * - Other sites links
 * - Animations
 */

/* Features section - en dessous de la ligne de flottaison */
.features-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Stats section */
.stats-section {
    padding: 80px 0;
    background: var(--gradient);
    color: white;
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA section */
.cta-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

/* Other sites links */
.other-sites {
    font-size: 0.85rem;
}

.other-sites a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 8px;
}

.other-sites a:hover {
    color: white;
}

/* Registration form custom styles */
.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.input-group-text {
    border: 2px solid #e5e7eb;
    background: #f8fafc;
}

.form-control-lg {
    border: 2px solid #e5e7eb;
    padding: 12px 16px;
    font-size: 1rem;
}

.form-control-lg:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}

.form-control.is-valid {
    border-color: #10b981;
}

.form-control.is-invalid {
    border-color: #ef4444;
}

.form-step {
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.password-strength .progress-bar {
    transition: all 0.3s ease;
}

#passwordMatchIndicator {
    font-size: 0.875rem;
}
