#company-stats {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 92px 24px;
    color: #f7fbf1;
    text-align: center;
    background:
        radial-gradient(circle at 14% 22%, rgba(244, 228, 94, 0.13), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(135deg, #06130f 0%, #153524 58%, #07140e 100%);
}

#company-stats::before,
#company-stats::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

#company-stats::before {
    width: 680px;
    height: 280px;
    right: -240px;
    top: 76px;
    border: 1px solid rgba(244, 228, 94, 0.18);
    transform: rotate(-15deg);
}

#company-stats::after {
    width: 580px;
    height: 240px;
    left: -220px;
    bottom: 70px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: rotate(15deg);
}

.stats-container {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(100%, 1100px);
    margin: 0 auto;
    gap: 18px;
}

#company-stats h2 {
    max-width: 780px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 46px;
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: uppercase;
}

.stats-intro {
    max-width: 620px;
    margin: 0 auto 18px;
    color: #dbe9d3;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.stat-item {
    display: grid;
    min-height: 190px;
    align-content: center;
    gap: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)),
        rgba(8, 22, 16, 0.9);
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 228, 94, 0.42);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.stat-item h3 {
    margin: 0;
    color: #f4e45e;
    font-size: 44px;
    font-weight: 950;
    line-height: 1;
}

.stat-item p {
    margin: 0;
    color: #dbe9d3;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

#company-stats .btnalll {
    justify-self: center;
    width: min(100%, 330px);
    margin-top: 14px;
}

@media (max-width: 920px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    #company-stats {
        padding: 64px 14px;
    }

    #company-stats h2 {
        font-size: 34px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
