/* Decorated stats + category strip */
.stats-section.nh-stats {
    position: relative;
    padding: 42px 0 56px;
    background:
        radial-gradient(ellipse 80% 120% at 10% 0%, rgba(255, 138, 31, 0.18), transparent 50%),
        radial-gradient(ellipse 70% 100% at 90% 100%, rgba(47, 111, 237, 0.2), transparent 45%),
        linear-gradient(180deg, #0b1220 0%, #111827 100%);
    color: #fff;
    overflow: hidden;
}

.stats-section.nh-stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.35;
    pointer-events: none;
}

.nh-stats .stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: stretch;
}

.nh-stats .stat-box {
    position: relative;
    text-align: center;
    padding: 8px 16px;
}

.nh-stats .stat-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.nh-stats .stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffd084;
    font-size: 16px;
}

.nh-stats .stat-box strong {
    display: block;
    font-family: "DM Sans", Inter, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(180deg, #fff 20%, #dbeafe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nh-stats .stat-box span:last-child {
    display: inline-block;
    margin-top: 6px;
    color: rgba(226, 232, 240, 0.85);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

@media (max-width: 700px) {
    .nh-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 8px;
    }

    .nh-stats .stat-box:not(:last-child)::after {
        display: none;
    }

    .stats-section.nh-stats {
        padding: 32px 0 48px;
    }
}
