/* ========== 页面Hero ========== */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: 0;
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}
.page-hero-content {
    position: relative; z-index: 2;
    text-align: center;
    color: #fff;
}
.page-hero-tag {
    display: inline-block;
    padding: 4px 16px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.8);
}
.page-hero-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}
.page-hero-content > p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}
.page-hero-breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.page-hero-breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color .3s;
}
.page-hero-breadcrumb a:hover {
    color: #fff;
}

/* ========== 品牌故事 ========== */
.about-story {}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.story-img-placeholder {
    aspect-ratio: 4/3;
    background: #f0f2f5;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ccc;
}
.story-img-placeholder i { font-size: 48px; }
.story-img-placeholder span { font-size: 14px; }

.story-text .sec-tag {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--primary, #f96c9f);
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--primary, #f96c9f);
    margin-bottom: 12px;
}
.story-text h2 { font-size: 32px; margin-bottom: 16px; }
.story-text .lead { font-size: 17px; color: #333; margin-bottom: 20px; font-weight: 500; }
.story-text p { color: #666; line-height: 1.8; margin-bottom: 14px; font-size: 15px; }

.story-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #eee;
}
.ss-item {
    text-align: center;
}
.ss-item strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary, #f96c9f);
}
.ss-item span {
    font-size: 13px;
    color: #999;
    margin-top: 4px;
    display: block;
}

/* ========== 价值观 ========== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.value-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.value-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary, #f96c9f), #e85a8e);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
}
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: #777; line-height: 1.7; }

/* ========== 服务方向 ========== */
.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.srv-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}
.srv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.srv-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #f5f7ff;
    color: var(--primary, #f96c9f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
    transition: background .3s, color .3s;
}
.srv-card:hover .srv-icon {
    background: var(--primary, #f96c9f);
    color: #fff;
}
.srv-card h4 { font-size: 17px; margin-bottom: 8px; }
.srv-card p { font-size: 13px; color: #999; }

/* ========== 团队 ========== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.team-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid #f0f2f5;
}
.team-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.team-info h4 { font-size: 17px; margin-bottom: 4px; }
.team-title {
    display: block;
    font-size: 13px;
    color: var(--primary, #f96c9f);
    margin-bottom: 4px;
}
.team-exp {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}
.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 16px;
}
.team-tags .tag {
    padding: 2px 10px;
    background: #f5f7ff;
    color: #666;
    border-radius: 10px;
    font-size: 12px;
}

/* ========== 关于页面的section间距 ========== */
.about-story,
.about-values,
.about-services,
.about-team,
.about-brand {
    padding: 80px 0;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .page-hero { height: 40vh; min-height: 300px; }
    .page-hero-content h2 { font-size: 28px; }
    .story-stats { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .srv-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
}

/* ========== 补充缺失类 ========== */
.story-image {
    border-radius: 16px;
    overflow: hidden;
}
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ft-brand {
    flex: 1.2;
}
/* ========== 品牌实力（about页独立样式） ========== */
.about-brand-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.about-brand .brand-data-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: transform .3s, box-shadow .3s;
}
.about-brand .brand-data-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.about-brand .brand-data-card .bdc-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary, #f96c9f), #e85a8e);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
}
.about-brand .brand-data-card strong {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary, #f96c9f);
}
.about-brand .brand-data-card span {
    font-size: 13px;
    color: #999;
    margin-top: 6px;
    display: block;
}

/* 信任标签行 */
.brand-trust-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
}
.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    max-width: 240px;
}
.trust-item > i {
    font-size: 28px;
    color: var(--primary, #f96c9f);
    margin-top: 2px;
    flex-shrink: 0;
}
.trust-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    color: #333;
}
.trust-item p {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .about-brand-cards { grid-template-columns: repeat(2, 1fr); }
    .brand-trust-row { flex-wrap: wrap; gap: 32px; }
}
@media (max-width: 768px) {
    .about-brand-cards { grid-template-columns: 1fr 1fr; gap: 16px; }
    .brand-trust-row { flex-direction: column; align-items: center; gap: 24px; }
}

.story-brand-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* ==================== CTA ==================== */
.cta-banner {
    background: linear-gradient(135deg, #f96c9f 0%, #e85a8e 50%, #d94a7e 100%);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -120px; left: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -60px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}
.cta-inner p {
    font-size: 17px;
    color: rgba(255,255,255,.9);
    margin-bottom: 36px;
}
.cta-btns { display: flex; justify-content: center; gap: 18px; }

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 38px;
    background: #fff;
    color: #f96c9f;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-cta-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    color: #e85a8e;
}

.btn-cta-sub {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 38px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.5);
    text-decoration: none;
    transition: all .3s;
}
.btn-cta-sub:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .cta-inner h2 { font-size: 26px; }
    .cta-btns { flex-direction: column; align-items: center; }
}
