
/* =========================================
STATS SECTION
========================================= */

.stats-section{
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        #000000 0%,
        #050505 100%
    );

    padding:15px 0;
}

/* =========================================
BACKGROUND GLOW
========================================= */

.stats-glow{
    position:absolute;

    bottom:-100px;
    right:-100px;

    width:500px;
    height:500px;

    background:
    radial-gradient(
        circle,
        rgba(255,0,0,0.12),
        transparent 70%
    );

    filter:blur(100px);

    pointer-events:none;
}

/* =========================================
SECTION TOP
========================================= */

.stats-top{
    text-align:center;
    margin-bottom:70px;
}

.stats-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:42px;
    padding:0 24px;

    border-radius:999px;

    background:rgba(255,0,0,0.08);

    border:1px solid rgba(255,0,0,0.18);

    color:#ff2b2b;

    font-size:14px;
    font-weight:600;

    margin-bottom:24px;
}

.stats-title{
    max-width:760px;
    margin:auto;

    font-size:52px;
    line-height:1.2;
    font-weight:800;

    color:#ffffff;

    margin-bottom:24px;
}

.stats-desc{
    max-width:760px;
    margin:auto;

    font-size:16px;
    line-height:1.9;

    color:#9f9f9f;
}

/* =========================================
GRID
========================================= */

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* =========================================
CARD
========================================= */

.stats-card{
    position:relative;

    background:
    linear-gradient(
        180deg,
        rgba(255,0,0,0.05),
        rgba(0,0,0,0.95)
    );

    border:1px solid rgba(255,255,255,0.06);

    border-radius:30px;

    padding:45px 30px;

    overflow:hidden;

    text-align:center;

    transition:0.4s ease;
}

.stats-card:hover{
    transform:translateY(-10px);

    border-color:rgba(255,0,0,0.3);
}

/* =========================================
TOP GLOW
========================================= */

.stats-card::before{
    content:'';

    position:absolute;

    top:-90px;
    left:50%;

    transform:translateX(-50%);

    width:220px;
    height:180px;

    background:
    radial-gradient(
        circle,
        rgba(255,0,0,0.16),
        transparent 70%
    );

    filter:blur(50px);
}

/* =========================================
ICON
========================================= */

.stats-icon{
    position:relative;
    z-index:2;

    width:78px;
    height:78px;

    border-radius:50%;

    margin:auto auto 28px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #ff5a00,
        #ff1e1e
    );

    color:#ffffff;

    font-size:30px;

    box-shadow:
    0 10px 30px rgba(255,0,0,0.25);
}

/* =========================================
NUMBER
========================================= */

.stats-number{
    position:relative;
    z-index:2;

    font-size:56px;
    line-height:1;

    font-weight:800;

    color:#ffffff;

    margin-bottom:16px;
}

.stats-number span{
    color:#ff2b2b;
}

/* =========================================
LABEL
========================================= */

.stats-label{
    position:relative;
    z-index:2;

    font-size:18px;
    font-weight:600;

    color:#ffffff;

    margin-bottom:12px;
}

/* =========================================
TEXT
========================================= */

.stats-text{
    position:relative;
    z-index:2;

    font-size:14px;
    line-height:1.9;

    color:#9f9f9f;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .stats-section{
        padding:90px 0;
    }

    .stats-title{
        font-size:36px;
    }

    .stats-desc{
        font-size:14px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .stats-card{
        padding:40px 26px;
    }

    .stats-number{
        font-size:46px;
    }

}

@media(max-width:576px){

    .stats-title{
        font-size:30px;
    }

    .stats-card{
        padding:35px 24px;
    }

    .stats-icon{
        width:68px;
        height:68px;

        font-size:26px;
    }

    .stats-number{
        font-size:40px;
    }

}

