﻿.home-stats {
    background: #fff;
    padding: 45px 0;
    position: relative;
    z-index: 20;
}

.stats-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    position: relative;
}

    .stat-item:not(:last-child) {
        border-right: 1px solid #ececec;
    }

.stat-icon {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

    .stat-icon img {
        width: 64px;
        height: 64px;
        display: block;
    }

.stat-number {
    font-size: 34px;
    font-weight: 800;
    color: #0b2a55;
    line-height: 1;
}

.stat-number span {
    font-size: 18px;
    color: #F58220;
    margin-left: 4px;
    font-weight: 700;
}

.stat-title {
    margin-top: 6px;
    font-size: 15px;
    color: #5f6b7b;
    font-weight: 400;
    line-height: 1.4;
}
