.tsco-stats-section{
    width:100%;
    padding:82px 0;
    background:#101728;
    overflow:hidden;
    font-family:'Urbanist',sans-serif;
}

.tsco-stats-section .container{
    width:min(1440px,100%);
    margin:0 auto;
    padding:0 44px;
}

.tsco-stats-head{
    text-align:center;
    max-width:900px;
    margin:0 auto 40px;
}

.tsco-stats-head .tsco-section-label{
    justify-content:center;
    color:#ffffff;
}

.tsco-stats-head .tsco-section-label::before{
    background:#A63539;
}

.tsco-stats-head h2{
    margin:18px 0 0;
    color:#ffffff;
    font-size:clamp(34px,3vw,48px);
    line-height:1.08;
    letter-spacing:-.035em;
    font-weight:600;
}

.tsco-stats-head p{
    margin:16px auto 0;
    max-width:760px;
    color:rgba(255,255,255,.75);
    font-size:16px;
    line-height:1.7;
    font-weight:300;
}

.tsco-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.tsco-stat-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.12);
    padding:36px 28px;
    position:relative;
    overflow:hidden;
    transition:.28s ease;
}

.tsco-stat-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:#A63539;
}

.tsco-stat-card:hover{
    background:#A63539;
    transform:translateY(-6px);
}

.tsco-stat-card strong{
    display:block;
    color:#ffffff;
    font-size:48px;
    line-height:1;
    font-weight:600;
    margin-bottom:18px;
}

.tsco-stat-card h3{
    margin:0;
    color:#ffffff;
    font-size:22px;
    line-height:1.2;
    font-weight:600;
    letter-spacing:-.02em;
}

.tsco-stat-card p{
    margin:14px 0 0;
    color:rgba(255,255,255,.75);
    font-size:14px;
    line-height:1.6;
    font-weight:300;
}

@media(max-width:992px){

    .tsco-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .tsco-stats-section{
        padding:54px 0;
    }

    .tsco-stats-section .container{
        padding:0 16px;
    }

    .tsco-stats-head{
        margin-bottom:24px;
    }

    .tsco-stats-head h2{
        font-size:30px;
    }

    .tsco-stats-head p{
        font-size:14px;
    }

    .tsco-stats-grid{
        gap:10px;
    }

    .tsco-stat-card{
        padding:24px 18px;
    }

    .tsco-stat-card strong{
        font-size:34px;
        margin-bottom:12px;
    }

    .tsco-stat-card h3{
        font-size:17px;
    }

    .tsco-stat-card p{
        font-size:12px;
    }
}

@media(max-width:480px){

    .tsco-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .tsco-stat-card{
        padding:20px 14px;
    }

    .tsco-stat-card strong{
        font-size:28px;
    }

    .tsco-stat-card h3{
        font-size:15px;
    }

    .tsco-stat-card p{
        font-size:11px;
        line-height:1.45;
    }
}