.dm-stats-section {
    position: relative;
    z-index: 5;
    margin-top: -1px;
    background: linear-gradient(90deg, #020817 0%, var(--primary) 48%, #020817 100%);
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.dm-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 78px;
    background: transparent;
}

.dm-stat {
    position: relative;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.dm-stat::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 0;
    bottom: 22px;
    width: 1px;
    background: rgba(255,255,255,.12);
}

.dm-stat:last-child::after {
    display: none;
}

.dm-stat__icon {
    width: 46px;
    min-width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 31px;
}

.dm-stat__icon i {
    line-height: 1;
}

.dm-stat strong {
    display: block;
    color: var(--white);
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.02;
    letter-spacing: 0;
}

.dm-stat small {
    color: var(--white);
    display: block;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 11px;
    line-height: 1.2;
    margin-top: 3px;
    opacity: .92;
}

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

    .dm-stat {
        justify-content: flex-start;
    }

    .dm-stat:nth-child(2)::after {
        display: none;
    }

    .dm-stat:nth-child(1),
    .dm-stat:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }
}

@media (max-width: 700px) {
    .dm-stats {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .dm-stat {
        min-height: 76px;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .dm-stat::after {
        display: none;
    }

    .dm-stat:nth-child(1),
    .dm-stat:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .dm-stat:last-child {
        border-bottom: none;
    }

    .dm-stat strong {
        font-size: 20px;
    }
}
