/* ========================================
   SECTION "COMMENT ÇA MARCHE" 
   CSS Complet avec toutes les propriétés
   ======================================== */

/* CONTAINER SECTION */
.section-light2 {
    background: #FFFFFF;
    padding: 100px 0;
}

/* CONTAINER INTERNE */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TITRE PRINCIPAL */
h2 {
font-size: 3rem;
font-weight: 800;
line-height: 1.2;
letter-spacing: -1px;
margin-bottom: 2rem;
text-align: center;
En savoir plus

Ne pas afficher
: center;
}

/* SOUS-TITRE / INTRO */
.section-intro2 {
            font-size: 1.5rem;
            color: var(--gray);
            max-width: 100%;
            margin-bottom: 3rem;
            font-weight: 400;
            line-height: 1.6;
            text-align: center;
}

/* GRILLE DES 3 STEPS */
.steps2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 60px 0;
}

/* CARD INDIVIDUELLE */
.step2-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.step2-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #0066FF;
}

/* NUMÉRO (01, 02, 03) */
.step2-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #0066FF;
    color: white;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

/* TITRE DE LA CARD */
.step2-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0A0F1E;
    line-height: 1.4;
}

/* DESCRIPTION DE LA CARD */
.step2-card p {
    color: #64748B;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

/* TAG (badges en bas des cards) */
.tag {
    display: inline-block;
    background: #F8FAFC;
    color: #0066FF;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* CONTAINER CTA */
.cta-center {
    text-align: center;
    margin-top: 60px;
}

/* BOUTON CTA */
.btn-primary-large {
    display: inline-block;
    background: #000000;
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.btn-primary-large:hover {
    background: #0A0F1E;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* PETIT TEXTE SOUS LE BOUTON */
.small-text {
    display: block;
    margin-top: 16px;
    color: #64748B;
    font-size: 0.9rem;
}

/* RESPONSIVE TABLETTE */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .step-card {
        padding: 32px 24px;
    }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .section-light2 {
        padding: 60px 0;
    }
    
    .steps2-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    h2 {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .section-intro2 {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .step2-card {
        padding: 28px 20px;
    }
    
    .step2-card h3 {
        font-size: 1.125rem;
    }
}
