.tw-stats-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    margin-bottom:28px;
}

.tw-stat-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:22px;
    padding:18px;
    transition:.25s;
}

.tw-stat-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.tw-stat-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}

.tw-icon-box{
    width:46px;
    height:46px;
    border-radius:16px;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.tw-trend{
    padding:7px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
}

.tw-trend.positive{
    background:#dcfce7;
    color:#15803d;
}

.tw-stat-value{
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
    color:#111827;
}

.tw-stat-label{
    font-size:16px;
    font-weight:600;
    margin-bottom:6px;
}

.tw-stat-sub{
    color:#6b7280;
    font-size:14px;
}