/* 公司简介 */
.company-intro {
    padding: 64px 0;
    background: #f9fafb;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.intro-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 24px;
}

.intro-text p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.8;
}

.stats-box {
    background: linear-gradient(135deg, #22c55e, #15803d);
    border-radius: 16px;
    padding: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #bbf7d0;
}

/* 使命与愿景 */
.mission-vision {
    padding: 64px 0;
    background: #fff;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.mv-card {
    background: #fff;
    border-left: 4px solid #22c55e;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 64px;
    height: 64px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #22c55e;
}

.mv-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.mv-card p {
    color: #6b7280;
    line-height: 1.8;
}

/* 核心价值观 */
.core-values {
    padding: 64px 0;
    background: #f3f4f6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.value-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #22c55e;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.value-card p {
    color: #6b7280;
}

/* 团队介绍 */
.team-section {
    padding: 64px 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.team-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
}

.team-avatar.ceo {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

.team-avatar.coo {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.team-avatar.cmo {
    background: linear-gradient(135deg, #f97316, #c2410c);
}

.team-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.team-role {
    color: #22c55e;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-card p {
    color: #6b7280;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-box {
        grid-template-columns: 1fr;
    }
}