/* ==========================================================================
   业务数据展示样式
   ========================================================================== */
   .business-stats {
    position: relative;
    padding: var(--spacing-10) 0;
    background: var(--color-primary);
    color: var(--color-white);
    overflow: hidden;
}

/* 背景装饰 */
.business-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23FFFFFF10" d="M 0,100 C 0,30 30,0 100,0 S 200,30 200,100 170,200 100,200 0,170 0,100"/></svg>');
    background-size: 40px 40px;
    opacity: 0.1;
    pointer-events: none;
}

/* 标题样式 */
.business-stats .section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-8);
    position: relative;
}

.business-stats .section-title h2 {
    color: var(--color-white);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-4);
}

.business-stats .section-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-lg);
    line-height: 1.6;
    margin: 0 auto;
}

/* 统计网格布局 */
.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-6);
    margin-top: var(--spacing-8);
}

/* 统计卡片样式 */
.stat-item {
    position: relative;
    padding: var(--spacing-6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all var(--transition-normal) ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 统计数字样式 */
.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--color-white);
    margin-bottom: var(--spacing-4);
    opacity: 0.95;
    text-align: center;
}

/* 统计标签样式 */
.stat-label {
    font-size: var(--text-lg);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-top: var(--spacing-2);
    text-align: center;
}

/* 统计说明文本 */
.stat-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    margin-top: var(--spacing-3);
    line-height: 1.6;
    text-align: center;
}

/* 装饰图标 */
.stat-icon {
    position: absolute;
    top: var(--spacing-4);
    right: var(--spacing-4);
    font-size: var(--text-2xl);
    opacity: 0.2;
}

/* 动画效果 */
@keyframes numberFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.95;
        transform: translateY(0);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .business-stats {
        padding: var(--spacing-8) 0;
    }

    .stats-grid {
        gap: var(--spacing-4);
    }
}

@media (max-width: 768px) {
    .business-stats {
        padding: var(--spacing-6) 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: var(--spacing-4);
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-item {
        text-align: center;
    }

    .stat-icon {
        display: none;
    }
}

/* 打印样式优化 */
@media print {
    .business-stats {
        background: none;
        color: var(--color-text-primary);
        padding: var(--spacing-6) 0;
    }

    .business-stats::before {
        display: none;
    }

    .stat-item {
        break-inside: avoid;
        background: none;
        border: 1px solid var(--color-border);
    }

    .stat-number {
        color: var(--color-primary);
    }
}