.suc-card {

    width:100%;
    max-width:650px;

    margin:40px auto;

    padding:50px 30px;

    text-align:center;

    border-radius:28px;

    background:
    linear-gradient(
        145deg,
        #ffffff,
        #f4f4f4
    );

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);

    border:
    1px solid rgba(0,0,0,0.06);

    box-sizing:border-box;

}



.suc-icon {

    font-size:48px;

    line-height:1;

    margin-bottom:20px;

}



.suc-number {

    font-size:
    clamp(70px, 14vw, 140px);

    font-weight:800;

    line-height:0.9;

    letter-spacing:-4px;

    color:#d62828;

    margin:20px 0;

}



.suc-text {

    font-size:
    clamp(18px, 3vw, 30px);

    font-weight:600;

    color:#222;

}



/*
 Elementor friendly
 Mobile optimisation
*/

@media(max-width:767px){


    .suc-card {

        padding:
        35px 20px;

        border-radius:
        20px;

    }


    .suc-icon {

        font-size:
        38px;

    }


    .suc-number {

        letter-spacing:
        -2px;

    }


}



/*
 Dark theme support
*/

@media(prefers-color-scheme:dark){


    .suc-card {

        background:
        linear-gradient(
            145deg,
            #222,
            #111
        );

    }


    .suc-text {

        color:#fff;

    }

}