/* ============================================================
   品聘Buddy 页面样式（提取自 workbuddy.html 内联样式）
   ============================================================ */

/* 页面自定义 CSS 变量（本页未引入 ai.css，此处补齐，确保 var() 生效） */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #0A2540;
    --light-bg: #F6F9FC;
    --text-color: #425466;
    --white: #FFFFFF;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 15px rgba(10, 37, 64, 0.1);
    --box-shadow-hover: 0 8px 25px rgba(10, 37, 64, 0.15);
}

/* ===== 品聘Buddy 页面补充样式 ===== */

/* 巨幕首屏（参考 TalentBuddy） */
#page-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 15% 20%, rgba(94, 234, 212, 0.22) 0%, transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(96, 165, 250, 0.18) 0%, transparent 40%),
        linear-gradient(135deg, #f0fdfa 0%, #f0f9ff 45%, #ffffff 100%);
    color: #0f172a;
    overflow: hidden;
    padding: 120px 0 80px;
}
#page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% -10%, rgba(94, 234, 212, 0.28) 0%, transparent 45%),
        radial-gradient(circle at 20% 90%, rgba(59, 130, 246, 0.12) 0%, transparent 40%);
    pointer-events: none;
}
#page-hero .container { position: relative; z-index: 2; }
.hero-mascot {
    max-width: 520px;
    width: 90%;
    height: auto;
    margin: 0 auto 30px;
    padding: 22px 34px;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08), 0 1px 0 rgba(255,255,255,0.8) inset;
    backdrop-filter: blur(8px);
}
.hero-mascot img { width: 100%; height: auto; display: block; }
.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 22px;
    line-height: 1.3;
}
.hero-title .brand-logo-inline { height: 42px; width: auto; vertical-align: middle; margin: 0 6px; }
.hero-subtitle {
    font-size: 17px;
    color: #475569;
    max-width: 780px;
    margin: 0 auto 34px;
    line-height: 1.7;
}
.hero-actions .btn-hero-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    border: none;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
    margin: 0 8px 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hero-actions .btn-hero-primary:hover { background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%); color:#fff; }
.hero-actions .btn-hero-secondary {
    background: rgba(255, 255, 255, 0.55);
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.18);
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    margin: 0 8px 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hero-actions .btn-hero-secondary:hover { background: rgba(255, 255, 255, 0.9); color:#0f172a; }
.hero-stats {
    margin-top: 70px;
    padding-top: 34px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.hero-stats .stat-num { font-size: 38px; font-weight: 800; color: #0f172a; line-height: 1.2; }
.hero-stats .stat-label { font-size: 14px; color: #64748b; margin-top: 6px; }
@media (max-width: 767px) {
    .hero-title { font-size: 28px; }
    .hero-title .brand-logo-inline { height: 30px; }
    .hero-mascot { max-width: 340px; padding: 16px 22px; border-radius: 16px; }
    .hero-stats .stat-num { font-size: 28px; }
    #page-hero { padding: 100px 0 60px; }
}

/* 核心能力：左右图文交错流 */
#feature-flow .feature-row {
    display: flex;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid #EEF1F6;
}
#feature-flow .feature-row:last-child { border-bottom: none; }
#feature-flow .f-icon {
    flex: 0 0 84px;
    width: 84px;
    height: 84px;
    border-radius: 18px;
    background: linear-gradient(135deg, #6e45e2 0%, #5fa0d6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 28px;
    box-shadow: 0 10px 30px rgba(110,69,226,0.25);
}
#feature-flow .f-icon i { font-size: 34px; color: #fff; }
#feature-flow .f-text { flex: 1; }
#feature-flow .f-text h4 { font-size: 19px; color: var(--secondary-color); margin-bottom: 6px; }
#feature-flow .f-text p { font-size: 15px; color: var(--text-color); line-height: 1.6; margin: 0; }
#feature-flow .feature-row:nth-child(even) { flex-direction: row-reverse; text-align: right; }
#feature-flow .feature-row:nth-child(even) .f-icon { margin-right: 0; margin-left: 28px; }
@media (max-width: 767px) {
    #feature-flow .feature-row,
    #feature-flow .feature-row:nth-child(even) { flex-direction: column !important; text-align: left !important; }
    #feature-flow .f-icon { margin: 0 0 16px 0 !important; }
}

/* 效率对比表 */
#compare { padding: 100px 0; background: #FFFFFF; }
#compare .compare-table-wrap {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}
.table.compare-table { margin: 0; }
.table.compare-table th {
    font-size: 16px;
    color: var(--secondary-color);
    border-bottom: 2px solid rgba(110, 69, 226, 0.25);
    padding: 14px 12px;
    vertical-align: middle;
}
.table.compare-table td {
    font-size: 15px;
    color: var(--text-color);
    padding: 14px 12px;
    border-top: 1px solid #EEF1F6;
    vertical-align: middle;
}
.table.compare-table .dim-col { font-weight: bold; color: var(--secondary-color); }
.table.compare-table .highlight-col { background: rgba(110, 69, 226, 0.06); }
.table.compare-table .win-cell { color: #6e45e2; font-weight: bold; }
.table.compare-table .check-mark { color: #16a34a; font-weight: bold; margin-right: 4px; }
.table.compare-table .cross-mark { color: #dc2626; font-weight: bold; margin-right: 4px; }
.table.compare-table .partial-mark { color: #f59e0b; font-weight: bold; margin-right: 4px; }

/* 数据指标大数字 */
#ai-data-advantages .stat-block {
    text-align: center;
    padding: 34px 20px;
    background: var(--white);
    border: 1px solid #E8F0FE;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}
#ai-data-advantages .stat-block:hover { transform: translateY(-5px); box-shadow: var(--box-shadow-hover); }
#ai-data-advantages .stat-num { font-size: 44px; font-weight: 800; color: #6e45e2; line-height: 1.1; }
#ai-data-advantages .stat-label { font-size: 15px; color: var(--secondary-color); font-weight: 600; margin: 10px 0 4px; }
#ai-data-advantages .stat-desc { font-size: 13px; color: var(--text-color); }

/* 产品优势 serviceBox 图标统一品牌色（基础 .services 容器） */
#wb-adv .serviceBox .service-icon i { color: #6e45e2 !important; }

/* 横向步骤 */
#workflow { padding: 100px 0; background: var(--light-bg); }
#workflow .section-title { margin-bottom: 70px; text-align: center; }
#workflow .steps-container { display: flex; flex-direction: column; margin-bottom: 20px; }
#workflow .step-item {
    display: flex;
    width: 100%;
    margin-bottom: 22px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid #E8F0FE;
    border-radius: var(--border-radius);
    padding: 20px;
    transition: var(--transition);
}
#workflow .step-item:hover { transform: translateY(-5px); box-shadow: var(--box-shadow-hover); }
#workflow .step-number {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #6e45e2 0%, #5fa0d6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    color: var(--white);
    margin-right: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}
#workflow .step-item:hover .step-number { transform: scale(1.08); }
#workflow .step-icon { font-size: 22px; color: #6e45e2; margin-right: 10px; }
#workflow .step-content { flex: 1; }
#workflow .step-content h4 { font-size: 18px; font-weight: bold; color: var(--secondary-color); margin-bottom: 6px; display: flex; align-items: center; }
#workflow .step-content p { font-size: 15px; color: var(--text-color); line-height: 1.6; margin: 0; }

/* 渠道生态（紫色渐变，WorkBuddy 特色） */
#platforms { padding: 100px 0; background: linear-gradient(135deg, #6e45e2 0%, #2563eb 100%); }
#platforms .section-title h2 { color: #fff; }
#platforms .section-desc { color: rgba(255,255,255,0.85); }
.platform-badge {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    padding: 12px 24px;
    margin: 8px;
    transition: var(--transition);
}
.platform-badge:hover { background: rgba(255, 255, 255, 0.25); transform: translateY(-3px); }

/* 通用区块小标签与描述 */
.section-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #6e45e2;
    background: rgba(110, 69, 226, 0.1);
    border-radius: 100px;
    padding: 6px 18px;
    margin-bottom: 16px;
}
.section-desc { font-size: 17px; color: var(--text-color); margin-bottom: 0; line-height: 1.6; }
