/* 子页面服务概述：统一深色成果数据卡片 */
.subpage .service-overview .overview-stats.modern-overview-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
}

.subpage .service-overview .modern-overview-stats .stat-item {
    position: relative;
    display: grid;
    grid-template-columns: 105px 50px minmax(0, 1fr);
    column-gap: 0;
    align-items: center;
    min-height: 108px;
    padding: 22px 24px;
    overflow: hidden;
    text-align: left;
    cursor: default;
    background:
        radial-gradient(circle at 0 50%, rgba(0, 198, 255, .16), transparent 42%),
        linear-gradient(135deg, rgba(23, 38, 54, .98), rgba(17, 27, 42, .98)) !important;
    border: 1px solid rgba(0, 198, 255, .32) !important;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(0, 8, 20, .22) !important;
}

.subpage .service-overview .modern-overview-stats .stat-item::before {
    position: absolute;
    top: 12px;
    left: auto;
    right: 16px;
    width: auto;
    height: auto;
    background: none;
    color: rgba(122, 217, 255, .12);
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.05em;
    transition: none;
}

.subpage .service-overview .modern-overview-stats .stat-item:nth-child(1)::before { content: "01"; }
.subpage .service-overview .modern-overview-stats .stat-item:nth-child(2)::before { content: "02"; }
.subpage .service-overview .modern-overview-stats .stat-item:nth-child(3)::before { content: "03"; }
.subpage .service-overview .modern-overview-stats .stat-item:nth-child(4)::before {
    content: "04" !important;
    left: auto !important;
    right: 16px !important;
}

.subpage .service-overview .modern-overview-stats .stat-item:nth-child(4):hover::before {
    left: auto !important;
}

.subpage .service-overview .modern-overview-stats .stat-icon,
.subpage .service-overview .modern-overview-stats > .stat-item > .stat-icon-img {
    display: none;
}

.subpage .service-overview .modern-overview-stats .stat-number {
    position: relative;
    z-index: 1;
    grid-column: 1;
    justify-self: start;
    white-space: nowrap;
    margin: 0;
    color: #35d3ff !important;
    font-size: clamp(2rem, 2.5vw, 2.65rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.04em;
    text-shadow: 0 0 24px rgba(0, 198, 255, .25);
}

.subpage .service-overview .modern-overview-stats .stat-unit {
    position: relative;
    z-index: 1;
    grid-column: 2;
    justify-self: start;
    margin-left: 0;
    white-space: nowrap;
    color: #35d3ff !important;
    font-size: 1.15rem;
    font-weight: 700;
}

.subpage .service-overview .modern-overview-stats .stat-label {
    position: relative;
    z-index: 1;
    display: block;
    grid-column: 3;
    min-width: 0;
    margin: 0;
    padding: 0 50px 0 0;
    color: rgba(255, 255, 255, .82) !important;
    font-size: .98rem;
    font-weight: 500;
    line-height: 1.55;
}

.subpage .service-overview .modern-overview-stats .stat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 198, 255, .62);
    box-shadow: 0 18px 38px rgba(0, 10, 24, .3), 0 0 24px rgba(0, 198, 255, .08);
}

@media (max-width: 560px) {
    .subpage .service-overview .modern-overview-stats .stat-item {
        grid-template-columns: 82px 42px minmax(0, 1fr);
        min-height: 96px;
        padding: 18px;
        border-radius: 15px;
    }

    .subpage .service-overview .modern-overview-stats .stat-number {
        font-size: 1.9rem;
    }

    .subpage .service-overview .modern-overview-stats .stat-unit {
        font-size: .95rem;
    }

    .subpage .service-overview .modern-overview-stats .stat-label {
        padding: 0 38px 0 0;
        font-size: .9rem;
    }
}
