/* 关于我们 Hero */
.about-hero {
    padding: 120px 0 80px;
    background: #fff;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-hero p {
    font-size: 20px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 使命板块 */
.mission { padding: 100px 0; }
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.img-box {
    height: 400px;
    background: #f1f5f9;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-weight: 800;
    font-size: 24px;
}

.sub-title {
    color: #f59e0b; /* 沿用职场人的金色作为点睛 */
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.mission-text h2 { font-size: 36px; margin-bottom: 25px; color: #0f172a; }
.mission-text p { font-size: 17px; color: #475569; margin-bottom: 40px; }

.stats-row { display: flex; gap: 50px; }
.stat h3 { font-size: 32px; color: #0f172a; margin-bottom: 5px; }
.stat p { font-size: 14px; color: #94a3b8; }

/* 核心价值板块 */
.values { padding: 100px 0; background: #f8fafc; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 32px; margin-bottom: 15px; }
.section-header p { color: #64748b; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

.value-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.value-card i { font-size: 40px; color: #0f172a; margin-bottom: 25px; }
.value-card h3 { font-size: 20px; margin-bottom: 15px; }
.value-card p { font-size: 15px; color: #64748b; line-height: 1.7; }

/* CTA 区域 */
.contact-cta { padding: 80px 0; }
.cta-box {
    background: #0f172a;
    border-radius: 30px;
    padding: 80px;
    text-align: center;
    color: #fff;
}

.cta-box h2 { font-size: 36px; margin-bottom: 20px; }
.cta-box p { font-size: 18px; opacity: 0.8; margin-bottom: 40px; }

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background: #f59e0b;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-cta:hover { background: #d97706; transform: scale(1.05); }

/* 响应式适配 */
/*@media (max-width: 992px) {*/
@media (max-width: 768px) {
    .mission-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: 1fr; }
    .about-hero h1 { font-size: 36px; }
    .cta-box { padding: 50px 20px; }
}