/* ============================================================
   品聘 AI Agent 页面样式（提取自 agent.html 内联样式）
   注意：本页未引入 ai.css，故在此补齐 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);
}

/* ===== 品聘 AI Agent 页面补充样式 ===== */
/* 核心能力 serviceBox 图标统一品牌色 */
#services-04 .serviceBox .service-icon i { color: #6e45e2 !important; }
/* 生态对接 serviceBox 图标统一品牌色 */
#services-04-eco .serviceBox .service-icon i { color: #6e45e2 !important; }

/* 招聘现状：一行四个 serviceBox 卡片，图标统一品牌色 */
#pain-list { padding: 100px 0; }
#pain-list .serviceBox .service-icon i { color: #6e45e2 !important; }
#pain-list .serviceBox:hover .service-icon i { color: #ff9624 !important; }

/* 竖向时间线流程 */
#agent-timeline { position: relative; padding: 10px 0 20px; }
#agent-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e3e0f5;
    transform: translateX(-50%);
}
#agent-timeline .tl-item {
    position: relative;
    width: 50%;
    padding: 0 48px 46px;
    box-sizing: border-box;
}
#agent-timeline .tl-item:nth-child(odd) { left: 0; text-align: right; }
#agent-timeline .tl-item:nth-child(even) { left: 50%; text-align: left; }
#agent-timeline .tl-dot {
    position: absolute;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #6e45e2;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #6e45e2;
}
#agent-timeline .tl-item:nth-child(odd) .tl-dot { right: -10px; }
#agent-timeline .tl-item:nth-child(even) .tl-dot { left: -10px; }
#agent-timeline .tl-step {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    color: #6e45e2;
    background: rgba(110,69,226,0.1);
    border-radius: 100px;
    padding: 3px 12px;
    margin-bottom: 8px;
}
#agent-timeline .tl-item h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 6px;
}
#agent-timeline .tl-item p { font-size: 14px; color: var(--text-color); line-height: 1.6; margin: 0; }
@media (max-width: 767px) {
    #agent-timeline::before { left: 20px; }
    #agent-timeline .tl-item { width: 100% !important; left: 0 !important; text-align: left !important; padding: 0 0 40px 50px !important; }
    #agent-timeline .tl-item .tl-dot { left: 10px !important; right: auto !important; }
}

/* 效率对比表 */
#compare { padding: 100px 0; background: var(--light-bg); }
#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; }

/* 进度条（成本效益）品牌色 */
#agent-skill .skillbar-bar { background: linear-gradient(135deg, #6e45e2 0%, #5fa0d6 100%) !important; border-radius: 4px; }
/* 成本效益 serviceBox 图标统一品牌色 */
#agent-skill .serviceBox .service-icon i { color: #6e45e2 !important; }
#agent-skill .skillbar-title span { color: var(--secondary-color); font-weight: 600; }
#agent-skill .skill-bar-percent { color: #6e45e2; font-weight: bold; }

/* 生态渠道标签（浅色块，区别于 x WorkBuddy 的紫色渐变） */
#platforms { padding: 100px 0; background: var(--white); }
.platform-badge {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: #6e45e2;
    background: rgba(110, 69, 226, 0.08);
    border: 1px solid rgba(110, 69, 226, 0.2);
    border-radius: 100px;
    padding: 12px 24px;
    margin: 8px;
    transition: var(--transition);
}
.platform-badge:hover { background: rgba(110, 69, 226, 0.16); transform: translateY(-3px); }
