
.cases-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;

}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 100px;
    margin-bottom: 55px;
}

.section-title {
    padding: 0 100px;
    font-weight: 700;
    font-size: 50px;
    line-height: 102%;
    color: #FFFFFF;
}

.cases {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 30px;
}

.comment-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px 30px;
    width: 550px;
    background: #fff;
    box-shadow: 0px 333px 133px rgba(0, 0, 0, 0.01),
    0px 187px 112px rgba(0, 0, 0, 0.05),
    0px 83px 83px rgba(0, 0, 0, 0.09),
    0px 21px 46px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
}

.comment-author {
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #000;
    margin: 0;
}

.wallet-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #050F27;
    padding: 25px 25px 40px;
    color: #FAFAFA;
    height: 196px;
}

.wallet-text-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 278px;
}

.wallet-header {
    font-weight: 800;
    font-size: 21px;
    margin: 0;
}

.wallet-subheader {
    font-weight: 500;
    font-size: 14px;
    margin: 0;
}

.wallet-details {
    font-weight: 500;
    font-size: 9px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    margin: 0;
}

.wallet-illustration {

    .wallet-illustration-img {
        width: 196px;
        height: 196px;
        margin-top: -20px;
        background: url('../images/bg-wallet.png') no-repeat center/contain;
    }

    .wallet-illustration-phone {
        width: 198px;
        height: 250px;
        margin-top: -43px;
        background: url('../images/phone-hand.png') no-repeat center/contain;
    }
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 60px;
    gap: 65px;
    height: 111px;
    background: #111B31;
    backdrop-filter: blur(8.9px);
    margin-bottom: 30px;
}

.client-logo {
    border-radius: 6px;
}

@media (max-width: 992px) {
    .section-header {
        width: 100%;
        padding: 0 40px;
    }

    .section-title {
        font-size: 36px;
        padding: 0 20px;
        text-align: center;
    }

    .cases {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .comment-card {
        width: 100%;
        max-width: 500px;
    }


    /*.wallet-illustration-img,*/
    /*.wallet-illustration-phone {*/
    /*    margin-top: 0;*/
    /*    width: 100%;*/
    /*    max-width: 200px;*/
    /*    height: auto;*/
    /*}*/
    .wallet-text-block {
        max-width: 100%;
    }

    .wallet-header {
        font-size: 18px;
    }

    .wallet-subheader {
        font-size: 12px;
    }

    .wallet-details {
        font-size: 10px;
    }

    .clients-logos {
        gap: 30px;
        padding: 15px 20px;
    }
}


@media (max-width: 768px) {
    .section-header {
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .cases {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .wallet-container {
        flex-direction: column;
        padding: 25px 25px 0;
        height: auto;
    }

    .comment-card {
        width: 100%;
        padding: 20px;
    }
    .wallet-illustration {
        margin: 0 -25px;
    }
    .wallet-illustration > .wallet-illustration-phone {
        background-position: bottom right;
        margin-left: 100px;
    }

    .wallet-illustration > .wallet-illustration-img {
        width: 305px;
        background: url('../images/wallet-2.png') no-repeat right/contain;
    }

    .wallet-header {
        font-size: 16px;
    }

    .wallet-subheader {
        font-size: 12px;
    }

    .wallet-details {
        font-size: 9px;
    }

    .clients-logos {
        height: auto;
        gap: 20px;
        padding: 15px 0;
    }
}
