/* ========== Reset & Base ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ★ 2026-08-08 修复：滚动条常驻占位，消除短页面(community等)无滚动条→有滚动条切换时的横向右移闪动 */
html { scrollbar-gutter: stable; overflow-y: scroll; }

:root {
  --primary: #1a5c9e;
  --primary-dark: #0d3d6e;
  --primary-light: #e8f2fc;
  --primary-lighter: #f4f9fe;
  --accent: #d4a017;
  --accent-light: #fdf6e3;
  --text-dark: #2c2c2c;
  --text-body: #4a4a4a;
  --text-muted: #888;
  --border: #e0e0e0;
  --bg-light: #f7f8fa;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-hover: 0 6px 24px rgba(26,92,158,0.12);
}

body {
  font-family: "Microsoft YaHei", "PingPingFang SC", "Hiragino Sans GB", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
}

a { text-decoration: none; color: var(--primary); transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

.container { max-width: 1320px; margin: 0 auto; padding: 0 20px; }

/* ========== Top Bar ========== */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  height: 36px;
  line-height: 36px;
  position: sticky;
  top: 0;
  z-index: 101;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: #fff; }
.top-bar .top-links { display: flex; gap: 16px; align-items: center; }
.top-bar .divider { color: rgba(255,255,255,0.3); }
.top-bar .welcome-text {
  color: #ffe066;
  font-weight: 600;
  letter-spacing: 1px;
  margin-right: 4px;
  white-space: nowrap;
}

/* ========== Header ========== */
.main-header {
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  position: sticky;
  top: 36px;
  z-index: 100;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo-area { display: flex; align-items: center; gap: 14px; flex-shrink: 0; min-width: fit-content; }
.logo-img { height: 52px; width: auto; max-width: none; object-fit: contain; display: block; }
.logo-text { white-space: nowrap; }
.logo-placeholder {
  width: 52px; height: 52px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; font-weight: bold;
  letter-spacing: 2px;
}
.logo-text h1 { font-size: 22px; color: var(--text-dark); font-weight: 600; line-height: 1.3; }
.logo-text p { font-size: 13px; color: var(--text-muted); letter-spacing: 1px; }

.main-nav ul { display: flex; list-style: none; gap: 2px; }
.main-nav a {
  display: block;
  padding: 6px 10px;
  color: var(--text-dark);
  font-size: 13px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { background: var(--primary-light); color: var(--primary); }
.main-nav a.active { background: var(--primary); color: #fff; }

/* ========== Hero ========== */
.hero {
  background: var(--primary-dark);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 100%;
  background: rgba(255,255,255,0.04);
  transform: skewX(-15deg);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero h2 { font-size: 38px; font-weight: 600; margin-bottom: 16px; letter-spacing: 1px; }
.hero .hero-sub { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.hero .hero-desc { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 16px; }

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #b88a0e; color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }

/* ========== Section Title ========== */
.section { padding: 52px 0; }
.section-tight { padding: 40px 0; }
.section-bg-light { background: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 34px; }
.section-header h3 { font-size: 26px; color: var(--text-dark); font-weight: 600; margin-bottom: 8px; }
.section-header p { font-size: 14px; color: var(--text-muted); }
.section-header .title-line { width: 40px; height: 3px; background: var(--primary); margin: 12px auto 0; border-radius: 2px; }

/* ========== Services Cards ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 18px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
  transform: translateY(-4px);
}
.service-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h4 { font-size: 16px; color: var(--text-dark); font-weight: 600; margin-bottom: 8px; }
.service-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

.icon-blue { background: var(--primary-light); }
.icon-blue svg { fill: var(--primary); }
.icon-gold { background: var(--accent-light); }
.icon-gold svg { fill: var(--accent); }
.icon-teal { background: #e1f5ee; }
.icon-teal svg { fill: #0f6e56; }
.icon-coral { background: #faece7; }
.icon-coral svg { fill: #d85a30; }
.icon-purple { background: #eeedfe; }
.icon-purple svg { fill: #534ab7; }

/* ========== Hero (双栏) ========== */
.hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: #fff; padding: 56px 0; position: relative; overflow: hidden; }
.hero::before { content:""; position:absolute; top:0; right:0; width:480px; height:100%; background:rgba(255,255,255,0.04); transform:skewX(-15deg); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; }
.hero-badge { display:inline-block; font-size:12px; color:rgba(255,255,255,0.85); background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.2); padding:5px 14px; border-radius:20px; margin-bottom:16px; }
.hero-left h2 { font-size: 40px; font-weight: 700; line-height: 1.25; margin-bottom: 16px; letter-spacing: 1px; }
.hero-desc { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.9; margin-bottom: 26px; max-width: 560px; }
.hero-buttons { display: flex; gap: 16px; }
.hero-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; padding: 24px; backdrop-filter: blur(3px); }
.hero-card .hc-title { font-size: 15px; font-weight: 600; margin-bottom: 16px; color: #fff; }
.hero-card .hc-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 16px; }
.hero-card .hc-metrics div { background: rgba(255,255,255,0.08); border-radius: 10px; padding: 12px; text-align: center; }
.hero-card .hc-metrics b { display: block; font-size: 26px; font-weight: 700; color: var(--accent); }
.hero-card .hc-metrics b .u { font-size: 14px; }
.hero-card .hc-metrics span { font-size: 12px; color: rgba(255,255,255,0.75); }
.hero-card .hc-tip { font-size: 15px; color: #fff; line-height: 1.9; margin-bottom: 18px; background: rgba(255,255,255,0.12); border-left: 4px solid var(--accent); border-radius: 8px; padding: 14px 16px; }
.hero-card .hc-tip p { margin: 0; }
.hero-card .hc-tip p + p { margin-top: 6px; }
.hero-card .hc-btn { display: block; text-align: center; background: var(--accent); color: #fff; padding: 11px; border-radius: 8px; font-size: 14px; font-weight: 600; }
.hero-card .hc-btn:hover { background: #b88a0e; }

/* ========== News Ticker ========== */
.news-ticker { background: #0d3c75; color: #fff; padding: 12px 0; margin: 0; }
.nt-inner { display: flex; align-items: center; gap: 14px; }
.nt-label { background: #f5a623; color: #1a1a1a; font-weight: 700; font-size: 13px; padding: 3px 12px; border-radius: 4px; white-space: nowrap; letter-spacing: 1px; }
.nt-rows { flex: 1; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.nt-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: center; font-size: 14px; }
.nt-item { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; min-width: 0; }
.nt-item a { color: #fff; }
.nt-item a:hover { text-decoration: underline; color: #ffe9c2; }
.nt-sep { color: rgba(255,255,255,.35); text-align: center; }
.nt-more { color: #ffe9c2; font-size: 13px; white-space: nowrap; text-decoration: none; }
.nt-more:hover { text-decoration: underline; }

/* ========== Trust Bar ========== */
.trust-bar { background: var(--primary); color: #fff; padding: 30px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.trust-item b { display: block; font-size: 30px; font-weight: 700; margin-bottom: 4px; }
.trust-item span { font-size: 13px; color: rgba(255,255,255,0.75); }

/* ========== Feature Columns ========== */
.feature-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-col { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; transition: all 0.3s; }
.feature-col:hover { box-shadow: var(--shadow-hover); border-color: var(--primary); transform: translateY(-3px); }
.feature-col .fc-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.feature-col h4 { font-size: 17px; color: var(--text-dark); font-weight: 600; margin-bottom: 8px; }
.feature-col p { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

/* ========== Stats ========== */
.stats { background: var(--primary); color: #fff; padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item .stat-num { font-size: 36px; font-weight: 600; margin-bottom: 4px; }
.stat-item .stat-label { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ========== News & Resources ========== */
.news-layout { display: grid; grid-template-columns: 1fr 360px; gap: 30px; }
.news-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 20px; }
.news-tab {
  padding: 10px 24px;
  font-size: 15px;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.news-tab.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 500; }

.news-list { list-style: none; }
.news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}
.news-item:last-child { border-bottom: none; }
.news-item .news-title {
  font-size: 14px;
  color: var(--text-body);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 20px;
}
.news-item:hover .news-title { color: var(--primary); }
.news-item .news-date { font-size: 12px; color: var(--text-muted); white-space: nowrap; }
.news-tag {
  display: inline-block;
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 3px;
  margin-right: 8px;
  color: #fff;
}
.tag-policy { background: var(--primary); }
.tag-industry { background: #0f6e56; }
.tag-company { background: var(--accent); }

/* Sidebar */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.resource-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}
.resource-item:last-child { border-bottom: none; }
.resource-item .res-name { flex: 1; font-size: 13px; color: var(--text-body); }
.resource-item .res-type { font-size: 11px; color: var(--text-muted); padding: 2px 8px; background: var(--bg-light); border-radius: 3px; }
.resource-item:hover .res-name { color: var(--primary); }

/* ========== Friend Links ========== */
.links-section { background: var(--bg-light); padding: 40px 0; }
.links-section h4 { font-size: 18px; color: var(--text-dark); margin-bottom: 8px; font-weight: 600; text-align: center; }
.links-section .links-subtitle { text-align: center; font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.links-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.link-category {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}
.link-category h5 {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.link-category h5 .cat-icon {
  width: 20px; height: 20px;
  background: var(--primary-light);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--primary);
}
.links-list { display: flex; flex-direction: column; gap: 2px; }
.links-list a {
  font-size: 13px;
  color: var(--text-body);
  padding: 4px 8px;
  border-radius: 5px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.links-list a:hover { color: var(--primary); background: var(--primary-lighter); }
.link-status {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0f6e56;
  flex-shrink: 0;
}
.link-status.warn { background: var(--accent); }

/* ========== Footer ========== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 36px;
}
.footer-col h5 { font-size: 15px; color: #fff; font-weight: 600; margin-bottom: 16px; }
.footer-col p { font-size: 13px; line-height: 2; }
.footer-col a { color: rgba(255,255,255,0.7); display: block; padding: 3px 0; }
.footer-col a:hover { color: #fff; }
/* ★ 2026-08-18：快速导航两列布局（仅第 2 个 footer-col），标题跨整列，其余链接自动分两列 */
.footer-grid > .footer-col:nth-child(2) { display: grid; grid-template-columns: 1fr 1fr; column-gap: 18px; align-content: start; }
.footer-grid > .footer-col:nth-child(2) > h5 { grid-column: 1 / -1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .news-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1.3fr 1fr; gap: 28px; }
  .feature-cols { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .hero h2 { font-size: 26px; }
  .hero-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .hero-sub { font-size: 15px; }
}

/* ========== Services Grid 6 ========== */
.services-grid-6 { grid-template-columns: repeat(4, 1fr); }
.services-grid-6 .service-card { text-decoration: none; color: inherit; }

/* ========== Assessment Flow ========== */
.flow-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.flow-step {
  flex: 1;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 18px;
  text-align: center;
  position: relative;
}
.flow-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.flow-step h4 { font-size: 16px; color: var(--text-dark); margin-bottom: 8px; font-weight: 600; }
.flow-step p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.flow-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--primary);
  padding: 0 12px;
}
.flow-cta { text-align: center; margin-top: 32px; }

/* ========== Partner Preview ========== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 18px;
  text-align: center;
  transition: all 0.3s;
}
.partner-card:hover { box-shadow: var(--shadow-hover); border-color: var(--primary); transform: translateY(-4px); }
.partner-logo {
  width: 64px; height: 64px;
  border-radius: 14px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px; font-weight: 700;
}
.partner-card h4 { font-size: 16px; color: var(--text-dark); margin-bottom: 6px; font-weight: 600; }
.partner-card p { font-size: 12px; color: var(--text-muted); }
.section-more { text-align: center; margin-top: 32px; }

/* ========== CTA Banner ========== */
.cta-banner { background: var(--primary-dark); color: #fff; padding: 44px 0; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap;
}
.cta-text h3 { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.cta-text p { font-size: 14px; color: rgba(255,255,255,0.7); }
.cta-buttons { display: flex; gap: 14px; }
.btn-outline-dark { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); padding: 12px 30px; border-radius: 6px; font-size: 15px; font-weight: 500; transition: all 0.2s; }
.btn-outline-dark:hover { background: rgba(255,255,255,0.12); color: #fff; }

.hero-login-tip { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,0.7); }
.hero-login-tip a { color: #fff; text-decoration: underline; }

@media (max-width: 1024px) {
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .services-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-arrow { transform: rotate(90deg); padding: 8px 0; }
  .cta-inner { flex-direction: column; text-align: center; }
}

/* ========== Enterprise Training ========== */
.training-section { background: linear-gradient(135deg, #eef5fc 0%, #f8fbfe 100%); }
.training-eyebrow { font-size: 12px; letter-spacing: 3px; color: var(--accent); font-weight: 600; margin-bottom: 6px; }
.training-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.training-lead { font-size: 14.5px; color: var(--text-body); line-height: 1.9; margin-bottom: 22px; }
.training-points { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; margin-bottom: 26px; }
.training-points li { display: flex; gap: 12px; align-items: flex-start; }
.tp-ic { flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; }
.training-points li b { display: block; font-size: 14px; color: var(--text-dark); margin-bottom: 2px; }
.training-points li div { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }
.training-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-outline-dark-2 { background: transparent; color: var(--primary); border: 1px solid var(--primary); padding: 12px 30px; border-radius: 6px; font-size: 15px; font-weight: 500; transition: all 0.2s; }
.btn-outline-dark-2:hover { background: var(--primary); color: #fff; }
.training-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.training-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px 16px; transition: all 0.3s; }
.training-card:hover { box-shadow: var(--shadow-hover); border-color: var(--primary); transform: translateY(-3px); }
.training-card .tc-ic { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.training-card h4 { font-size: 15px; color: var(--text-dark); font-weight: 600; margin-bottom: 6px; }
.training-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 1024px) {
  .training-layout { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .training-points { grid-template-columns: 1fr; }
  .training-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 企业内训：模块标签 + 需求调查 CTA */
.module-tag { display: inline-block; font-size: 14px; font-weight: 600; color: var(--primary); background: var(--primary-light); padding: 6px 16px; border-radius: 20px; margin: 4px auto 14px; }
.training-lead-center { text-align: center; max-width: 860px; margin: 0 auto 24px; }
.survey-cta { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; margin-top: 30px; background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: 12px; padding: 24px 26px; box-shadow: var(--shadow); }
.survey-cta .sc-badge { display: inline-block; font-size: 12px; font-weight: 700; color: #fff; background: var(--accent); padding: 3px 12px; border-radius: 4px; margin-bottom: 10px; }
.survey-cta h4 { font-size: 17px; color: var(--text-dark); margin-bottom: 8px; }
.survey-cta p { font-size: 13px; color: var(--text-muted); line-height: 1.8; max-width: 640px; }
.survey-cta .sc-right { display: flex; gap: 14px; flex-wrap: wrap; }
.consulting-section { background: linear-gradient(135deg, #f3f0fb 0%, #f8fafd 100%); }

/* 管理咨询模块增强（独立视觉） */
.ch-sub { font-size: 14.5px; color: var(--text-muted); text-align: center; max-width: 100%; margin: 0 auto; line-height: 1.8; white-space: nowrap; }
.mc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 26px 0 30px; }
.mc-stat { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px 14px; text-align: center; box-shadow: var(--shadow); }
.mc-stat b { display: block; font-size: 30px; font-weight: 700; color: var(--primary); line-height: 1.1; }
.mc-stat b span { font-size: 15px; margin-left: 2px; }
.mc-stat > span:last-child { display: block; font-size: 12.5px; color: var(--text-muted); margin-top: 6px; }
.mc-cap { font-size: 14px; font-weight: 700; color: var(--accent); letter-spacing: 1px; margin: 32px 0 16px; }
.training-card { position: relative; overflow: hidden; }
.tc-no { position: absolute; top: 12px; right: 14px; font-size: 13px; font-weight: 700; color: rgba(13,60,117,0.18); letter-spacing: 1px; }

/* 两种服务模式 */
.mc-modes { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 6px 0; }
.mc-mode { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 26px 24px 24px; box-shadow: var(--shadow); }
.mc-mode-feature { border: 1.5px solid var(--primary); background: linear-gradient(160deg, #ffffff 0%, #f1f6fc 100%); box-shadow: 0 10px 30px rgba(13,60,117,0.12); }
.mm-tag { display: inline-block; font-size: 12px; font-weight: 700; color: #fff; background: var(--text-muted); padding: 3px 12px; border-radius: 20px; letter-spacing: 1px; margin-bottom: 14px; }
.mm-tag-feature { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.mm-title { font-size: 19px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.mm-desc { font-size: 13.5px; color: var(--text-body); line-height: 1.85; margin-bottom: 16px; }
.mm-list { list-style: none; display: grid; gap: 10px; }
.mm-list li { position: relative; padding-left: 14px; font-size: 13px; color: var(--text-body); line-height: 1.7; border-left: 3px solid var(--accent); }

/* 核心能力包裹 */
.mc-cap-wrap { margin-top: 8px; }

/* 标准咨询流程（横向带连线） */
.mc-flow { display: flex; align-items: flex-start; margin-top: 6px; }
.mf-item { flex: 1; position: relative; text-align: center; padding: 0 6px; }
.mf-item::after { content: ''; position: absolute; top: 19px; left: 50%; width: 100%; height: 2px; background: linear-gradient(90deg, var(--accent) 0%, rgba(13,60,117,0.25) 100%); }
.mf-item:last-child::after { display: none; }
.mf-no { position: relative; z-index: 1; width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 700; margin: 0 auto 10px; box-shadow: 0 4px 12px rgba(13,60,117,0.25); }
.mf-t { font-size: 14.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.mf-d { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* 行动按钮组 */
.mc-actions { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .survey-cta { flex-direction: column; align-items: flex-start; }
  .ch-sub { white-space: normal; }
  .mc-stats { grid-template-columns: repeat(2, 1fr); }
  .mc-modes { grid-template-columns: 1fr; }
  .mc-flow { flex-wrap: wrap; gap: 20px 0; }
  .mf-item { flex: 1 1 33.33%; }
  .mf-item::after { display: none; }
}

/* 资料中心：下载风险提示弹窗 */
.dl-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 1000; align-items: center; justify-content: center; }
.dl-dialog { background: #fff; border-radius: 12px; max-width: 440px; width: 90%; padding: 30px 28px; text-align: center; box-shadow: 0 12px 44px rgba(0,0,0,0.22); }
.dl-icon { width: 46px; height: 46px; border-radius: 50%; background: #fdecea; color: #d8503e; font-size: 26px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.dl-dialog h3 { font-size: 18px; color: var(--text-dark); margin-bottom: 12px; }
.dl-text { font-size: 14px; color: var(--text-body); line-height: 1.9; margin-bottom: 22px; }
.dl-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-dl-ok { background: var(--primary); color: #fff; border: none; padding: 11px 22px; border-radius: 6px; font-size: 14px; cursor: pointer; }
.btn-dl-ok:hover { background: var(--primary-dark); }
.btn-dl-cancel { background: #fff; color: var(--text-muted); border: 1px solid var(--border); padding: 11px 22px; border-radius: 6px; font-size: 14px; cursor: pointer; }
.btn-dl-cancel:hover { border-color: var(--text-muted); color: var(--text-body); }
