

.ama-trust-v2{
    background:#262626;
    display:flex;
    justify-content:center;
    gap:30px;
    padding:60px 20px;
    flex-wrap:wrap;
}

.ama-card{
    flex:1;
    min-width:260px;
    max-width:320px;
    text-align:center;
    text-decoration:none;
    padding:34px 22px;
    border-radius:18px;

    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(6px);
    transition:all .3s ease;
}

.ama-card:hover{
    transform:translateY(-6px);
    border-color:#F97316;
    background:rgba(249,115,22,0.06);
}

.ama-badge{
    width:62px;
    height:62px;
    margin:0 auto 16px auto;
    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:rgba(249,115,22,0.12);
    color:#F97316;
}

.ama-badge svg{
    width:28px;
    height:28px;
}

.ama-number{
    font-size:44px;
    font-weight:800;
    color:#F97316;
    margin-bottom:8px;
    letter-spacing:1px;
}

.ama-text{
    font-size:13px;
    color:#E5E7EB;
    letter-spacing:1.5px;
    font-weight:600;
    text-transform:uppercase;
}

/* mobile */
@media(max-width:768px){

    .ama-trust-v2{
        padding:40px 15px;
        gap:16px;
    }

    .ama-card{
        min-width:100%;
        padding:26px 16px;
    }

    .ama-number{
        font-size:36px;
    }

    .ama-text{
        font-size:12px;
    }

}

