.team .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
/* 关于我们 - 数字证明区域（优化版） */
.team-stats {
    margin-bottom: 100px;
    position: relative;
    padding: 20px 0;
}

/* 数字证明标题：左对齐+视觉引导 */
.stats-title {
    font-size: 1.9rem;
    text-align: left;
    margin-bottom: 50px;
    color: var(--light);
    position: relative;
    display: inline-block;
    left: 0;
    transform: none;
    padding-left: 24px;
}

.stats-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    transform: translateY(-50%);
}

.stats-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 2px;
    background: var(--primary);
    bottom: -8px;
    left: 24px;
    transform: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
}

/* 数字卡片：新增浮动动画+原有hover效果叠加 */
.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 168, 255, 0.1);
    /* 浮动动画 */
    animation: float 3.5s ease-in-out infinite;
}

/* 为不同卡片设置延迟，避免同步浮动 */
.stat-card:nth-child(1) { animation-delay: 0s; }
.stat-card:nth-child(2) { animation-delay: 0.5s; }
.stat-card:nth-child(3) { animation-delay: 1s; }
.stat-card:nth-child(4) { animation-delay: 1.5s; }

/* 浮动动画关键帧 */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

/* Hover时暂停浮动，强化交互反馈 */
.stat-card:hover {
    transform: translateY(-20px); /* hover时浮动幅度加大 */
    box-shadow: 0 20px 40px rgba(0, 168, 255, 0.15);
    border-color: rgba(0, 168, 255, 0.3);
    animation-play-state: paused; /* 暂停浮动动画 */
}

.stat-card:hover::before {
    left: 100%;
}

.stat-icon {
    margin: 0 auto 25px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(0, 168, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(0, 168, 255, 0.2);
    transform: scale(1.15);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
}

/* 关于我们 - 优势区域（优化版） */
.team-advantages {
    margin-bottom: 80px;
    position: relative;
    padding: 20px 0;
}

/* 优势标题：右对齐+反向视觉引导 */
.advantages-title {
    font-size: 1.9rem;
    text-align: right;
    margin-bottom: 50px;
    color: var(--light);
    position: relative;
    display: inline-block;
    left: auto;
    right: 0;
    transform: none;
    padding-right: 24px;
}

.advantages-title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
}

.advantages-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 2px;
    background: var(--accent);
    bottom: -8px;
    right: 24px;
    left: auto;
    transform: none;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 35px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 168, 255, 0.1);
    animation: float 3.5s ease-in-out infinite;
}
.advantage-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.5s ease;
    animation-play-state: paused; /* 暂停浮动动画 */
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 168, 255, 0.15);
    border-color: rgba(0, 168, 255, 0.2);
}

.advantage-card:hover::after {
    width: 100%;
}

.advantage-icon {
    margin-bottom: 30px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--accent);
}

.advantage-card h4 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--light);
}

.advantage-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* 了解更多按钮（微调优化） */
.team-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-more {
    position: relative;
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

/* 响应式适配调整 */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-title, .advantages-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    /* 移动端标题回归居中，保持适配性 */
    .stats-title, .advantages-title {
        text-align: center;
        left: 50%;
        right: 50%;
        transform: translateX(-50%);
        padding: 0 0 0 24px;
    }
    .stats-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .advantages-title {
        padding: 0 24px 0 0;
    }
    .advantages-title::after {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-number {
        font-size: 2.4rem;
    }
    .btn-more {
        padding: 14px 35px;
        font-size: 1rem;
    }
}