/* PROBLÈME / CONTRASTE */
    .contrast_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        max-width: 950px;
        margin: 0 auto;
    }
    
    .contrast_col {
        border-radius: 20px;
        padding: 36px 28px;
        background: var(--light-white);
    }
    
    .col_label {
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .col_bad .col_label {
        color: rgba(239, 68, 68);
    }
    
    .col_good .col_label {
        color: var(--second);
    }
    
    .contrast_item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 14px;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .contrast_item:last-child {
        margin-bottom: 0;
    }
    
    .ci_icon {
        flex-shrink: 0;
        margin-top: 1px;
    }
    
    .col_bad .ci_icon i {
        color: rgba(239, 68, 68);
    }
    
    .col_good .ci_icon i {
        color: var(--second);
    }
    
    .promise_band {
        max-width: 950px;
        margin: 16px auto 0;
        background: var(--light-white);
        border-radius: 18px;
        padding: 32px 40px;
        text-align: center;
    }
    
    .promise_band p {
        font-size: 1.05rem;
        font-weight: 600;
        line-height: 1.7;
    }
    
    .promise_band span {
        color: var(--second);
    }
/* PROBLÈME / CONTRASTE */   

/* APPROCHE 5 ÉTAPES */
    .steps_list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .step_row {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 0;
        position: relative;
    }
    
    .step_row:not(:last-child)::before {
        content: '';
        position: absolute;
        left: 39px;
        top: 70px;
        bottom: -1px;
        width: 1px;
        background: linear-gradient(to bottom, var(--second), var(--second));
    }
    
    .step_left {
        padding-top: 8px;
        position: relative;
        z-index: 1;
    }
    
    .step_circle {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        background: var(--primary);
        border: 2px solid var(--second);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        margin: 0 auto;
        transition: all 0.3s;
    }
    
    .step_num_label {
        font-size: 0.62rem;
        font-weight: 700;
        color: var(--second);
        letter-spacing: 1px;
        text-transform: uppercase;
        text-align: center;
        margin-top: 6px;
    }
    
    .step_right {
        padding: 0 0 50px 36px;
    }
    
    .step_right h3 {
        font-size: 1.15rem;
        font-weight: 800;
        margin-bottom: 10px;
        letter-spacing: -0.3px;
    }
    
    .step_right p {
        font-size: 0.92rem;
        line-height: 1.5;
        margin-bottom: 16px;
    }
    
    .step_deliverables {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .step_del {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.72rem;
        font-weight: 600;
        color: var(--white);
        background: var(--light-white);
        border: 1px solid var(--white);
        padding: 5px 12px;
        border-radius: 20px;
    }
    
    .step_del::before {
        font-size: 0.65rem;
    }
    
    .step_cta_mid {
        margin: 10px 0 0;
        padding: 28px 32px;
        background: var(--light-white);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .step_cta_mid p {
        font-size: 0.92rem;
        font-weight: 600;
        margin: 0;
    }
    
    .step_cta_mid span {
        font-size: 0.82rem;
    }
/* APPROCHE 5 ÉTAPES */

/* DIFFÉRENCIATEURS */
    .diff_grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
        gap: 16px;
    }
    
    .diff_card {
        background: var(--light-white);
        border-radius: 18px;
        padding: 32px 24px;
        transition: all 0.4s;
        position: relative;
        overflow: hidden;
    }
    
    .diff_icon {
        width: 45px; height: 45px;
        background: var(--second);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        margin-bottom: 16px;
        i{
            color: var(--white);
            font-size: 25px;
        }
    }
    
    .diff_card:hover .diff_icon {
        transform: scale(1.1);
    }
    
    .diff_card h3 {
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }
    
    .diff_card p {
        font-size: 0.85rem;
        line-height: 1.7;
        position: relative;
        z-index: 1;
    }
/* DIFFÉRENCIATEURS */

/* responsive */
    /*PROBLÈME / CONTRASTE*/
        @media screen and (max-width: 900px){
            .contrast_grid{
                grid-template-columns: 1fr;
            }
        }
    /*PROBLÈME / CONTRASTE*/
/* responsive */