/* STATS BAR */
.stats-bar {
    background: #001D3F;
    padding: 28px 5%;
    height: 154px;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 14px;
}

.stats-bar p {
    font-size: 11px;
    line-height: 26px;
    font-weight: 400;
    color: #3A4E75;
    text-align: center;
}

.stat-item {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-num {
    font-size: 32px;
    line-height: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    transition: all 0.4s ease;
}

.stat-item:hover .stat-num {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 15px rgba(253, 153, 187, 0.4));
}

.stat-num span {
    background: linear-gradient(180deg, #FF8E55 0%, #FD99BB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:hover .stat-num span {
    background: linear-gradient(180deg, #FFA577 0%, #FFC1D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: #6C91BD;
    margin-top: 2px;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: #ffffff;
}

.stat-divider {
    width: 1px;
    height: 54px;
    background: #6C91BD;
}