/* PROBLEM */
    .problem_grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .prob_item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        background: var(--light-white);
        border-radius: 16px;
        padding: 24px;
        transition: all 0.3s;
    }
    
    .prob_icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(200, 30, 30, 0.1);
        border: 1px solid rgba(200, 30, 30, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
        margin-top: 2px;
        i{
            color: var(--red);
        }
    }
    
    .prob_body strong {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
    }
    
    .prob_body p{
        font-size: 14px;
    }
    
    .problem_promise {
        max-width: 1000px;
        padding: 38px 44px;
        background: var(--light-white);
        border: 1px solid var(--light-white);
        border-radius: 20px;
        text-align: center;
        margin: 16px auto 0;
    }
    
    .problem_promise span {
        font-weight: 600;
        color: var(--second);
    }
/* PROBLEM */

/* LIVRABLES COMMUNS */
    .livrables_grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
        gap: 16px;
    }
    
    .livrable_card {
        background: var(--light-white);
        border-radius: 16px;
        padding: 34px 26px;
        position: relative;
        overflow: hidden;
    }
    
    .livrable_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;
        }
    }
    
    .livrable_card:hover .livrable_icon {
        transform: scale(1.08);
    }
    
    .livrable_card h3 {
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .livrable_card p {
        font-size: 14px;
    }
    
    .livrable_badge {
        margin-top: 14px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
        color: var(--second);
        letter-spacing: 0.5px;
    }
/* LIVRABLES COMMUNS */

/* POURQUOI du code */
    .techno_inner {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .techno_points {
        max-width: 800px;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 16px;
    }
    
    .techno_point {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        background: var(--light-white);
        border-radius: 8px;
        padding: 16px;
    }
    
    .tp_icon {
        flex: 0 0 40px; height: 40px;
        background: var(--second);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        i{
            color: var(--white);
            font-size: 20px;
        }
    }
    
    .tp_body h4 {
        font-weight: 700;
        margin-bottom: 3px;
    }
    
    .tp_body p {
        font-size: 14px;
    }
/* POURQUOI du code */

/* GROWTH UPSELL */
    .growth_inner {
        background: var(--light-white);
        border-radius: 16px;
        padding: 32px;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        position: relative;
        overflow: hidden;
    }
    
    .growth_features {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .gf_item {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .gf_item::before {
        content: '✓';
        color: var(--second);
        font-weight: 700;
        flex-shrink: 0;
    }
/* GROWTH UPSELL */


/* reponsive */
    /* PROBLEM */
        @media screen and (max-width: 900px){
            .problem_grid {
                grid-template-columns: repeat(1, 1fr);
            }
        }
    /* PROBLEM */
    
    /* POURQUOI du code */
        @media screen and (max-width: 900px){
            .techno_points {
                grid-template-columns: repeat(1, 1fr);
            }
        }
    /* POURQUOI du code */
/* reponsive */