/* ============================================================
   Design Tokens — SPOTO-inspired 专业白色风
============================================================ */
:root {
  --blue:       #0a6ebd;
  --blue-dark:  #054d8a;
  --blue-light: #e8f3fd;
  --orange:     #f47920;
  --orange-light: #fff3e8;
  --text:       #1a1a2e;
  --text-muted: #6b7280;
  --border:     #e5e7eb;
  --bg:         #ffffff;
  --bg-soft:    #f8fafc;
  --bg-card:    #ffffff;
  --green:      #16a34a;
  --red:        #dc2626;

  --ff-sans: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-serif: 'Noto Serif SC', Georgia, serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --nav-h: 64px;
}

/* ============================================================ Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-sans);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--ff-sans); }
input, select, textarea { font-family: var(--ff-sans); }

/* ============================================================ Top Bar */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: 0 clamp(1rem,5vw,5rem);
  display: flex; align-items: center; justify-content: space-between;
  height: 36px;
}
.topbar a { color: rgba(255,255,255,.85); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; gap: 1.5rem; align-items: center; }

/* ============================================================ NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 clamp(1rem,5vw,5rem);
  gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-weight: 700; font-size: 1.05rem; color: var(--blue-dark);
  white-space: nowrap;
}
.nav-menu {
  display: flex; align-items: center; gap: .2rem;
  flex: 1;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0 .9rem;
  height: var(--nav-h);
  font-size: .9rem; font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  transition: color .2s;
  border-bottom: 3px solid transparent;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.nav-actions { display: flex; gap: .8rem; align-items: center; margin-left: auto; }
.btn { display: inline-flex; align-items: center; gap: 6px; border: none; outline: none; transition: all .2s; }
.btn-primary {
  background: var(--orange); color: #fff;
  padding: .55rem 1.4rem; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 600;
}
.btn-primary:hover { background: #d9640a; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(244,121,32,.35); }
.btn-outline-blue {
  border: 1.5px solid var(--blue); color: var(--blue);
  padding: .5rem 1.2rem; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 500; background: transparent;
}
.btn-outline-blue:hover { background: var(--blue); color: #fff; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; margin-left: auto;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; }

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}
.nav-link-dropdown {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-dropdown-icon {
  transition: transform .25s ease;
}
.nav-dropdown:hover .nav-dropdown-icon {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .75rem;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem;
  border-radius: var(--radius-sm);
  transition: all .2s ease;
}
.nav-dropdown-item:hover {
  background: var(--blue-light);
}
.nav-dropdown-icon-text {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.nav-dropdown-content {
  flex: 1;
}
.nav-dropdown-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}
.nav-dropdown-desc {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: .15rem;
}

/* Mobile Nav */
.nav-mobile-panel {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.5rem 1.5rem; z-index: 99;
  flex-direction: column; gap: .4rem;
}
.nav-mobile-panel.open { display: flex; }
.nav-mobile-panel a {
  padding: .7rem .5rem;
  border-bottom: 1px solid var(--border);
  font-size: .95rem; color: var(--text);
}
.nav-mobile-panel a:hover { color: var(--blue); }
.mobile-dropdown-title {
  padding: .7rem .5rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-soft);
  margin-top: .5rem;
}
.mobile-dropdown-item {
  padding-left: 1.5rem !important;
  color: var(--text-muted) !important;
  font-size: .85rem !important;
}

/* ============================================================ HERO */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0a6ebd 0%, #054d8a 60%, #032d57 100%);
  color: #fff;
  padding: clamp(3.5rem,6vw,5.5rem) clamp(1rem,5vw,5rem);
  min-height: 520px;
  display: flex; align-items: center;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: .07;
  background-image:
    radial-gradient(circle at 20% 80%, #fff 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, #fff 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content { position: relative; z-index: 1; max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  padding: .3rem 1rem; font-size: .8rem;
  margin-bottom: 1.5rem;
}
.hero-badge .dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; }
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem,4vw,3rem);
  font-weight: 700; line-height: 1.25;
  margin-bottom: 1rem;
}
.hero-title span { color: var(--orange); }
.hero-desc {
  font-size: clamp(.9rem,1.5vw,1rem);
  color: rgba(255,255,255,.8);
  max-width: 480px; margin-bottom: 2rem; line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-btn-main {
  background: var(--orange); color: #fff;
  padding: .8rem 2rem; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 600; border: none;
  transition: all .2s;
}
.hero-btn-main:hover { background: #d9640a; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(244,121,32,.45); }
.hero-btn-ghost {
  background: transparent; color: #fff;
  padding: .8rem 2rem; border-radius: var(--radius-sm);
  font-size: .95rem; border: 1.5px solid rgba(255,255,255,.5);
  transition: all .2s;
}
.hero-btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-stat-n { font-size: 1.9rem; font-weight: 700; font-family: var(--ff-serif); line-height: 1; }
.hero-stat-n sup { font-size: 1rem; }
.hero-stat-l { font-size: .78rem; color: rgba(255,255,255,.7); margin-top: .25rem; }
.hero-visual {
  position: absolute; right: clamp(2rem,6vw,8rem); top: 50%;
  transform: translateY(-50%);
}

/* ============================================================ CERT BADGES */
.cert-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.8rem clamp(1rem,5vw,5rem);
}
.cert-strip-label {
  text-align: center; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-muted); margin-bottom: 1.2rem;
}
.cert-strip-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem;
}
.cert-item {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .5rem 1rem; font-size: .82rem; font-weight: 500;
  transition: border-color .2s, box-shadow .2s;
}
.cert-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.cert-item img { height: 22px; width: auto; object-fit: contain; }

/* ============================================================ SECTION */
.section { padding: clamp(3rem,6vw,5rem) clamp(1rem,5vw,5rem); }
.section-alt { background: var(--bg-soft); }
.sec-head { text-align: center; margin-bottom: clamp(2rem,4vw,3.5rem); }
.sec-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .6rem;
}
.sec-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem,2.8vw,2.4rem);
  font-weight: 700; line-height: 1.25;
}
.sec-sub {
  font-size: .9rem; color: var(--text-muted);
  max-width: 500px; margin: .6rem auto 0; line-height: 1.8;
}

/* ============================================================ COURSE TABS */
.course-tabs {
  display: flex; flex-wrap: wrap; gap: .4rem;
  border-bottom: 2px solid var(--border); margin-bottom: 2rem;
}
.ctab {
  padding: .65rem 1.5rem; font-size: .88rem; font-weight: 600;
  color: var(--text-muted); border: none; background: none;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color .2s, border-color .2s;
  cursor: pointer;
}
.ctab.active { color: var(--blue); border-bottom-color: var(--blue); }
.ctab:hover { color: var(--blue); }
.cpanel { display: none; }
.cpanel.active { display: block; }
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.course-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.2rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.course-card:hover {
  border-color: var(--blue); box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.cc-level {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .18rem .6rem; border-radius: 100px; margin-bottom: .75rem;
}
.lv-expert { background: #fff3e8; color: var(--orange); }
.lv-senior { background: #e8f3fd; color: var(--blue); }
.lv-junior { background: #f0fdf4; color: var(--green); }
.cc-name { font-weight: 700; font-size: 1rem; margin-bottom: .4rem; }
.cc-meta { font-size: .8rem; color: var(--text-muted); }
.cc-status {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: .75rem; font-size: .78rem; color: var(--green); font-weight: 500;
}
.cc-status::before { content:''; width:6px; height:6px; background:currentColor; border-radius:50%; animation: pulse 2s infinite; }
.cc-hot { background: var(--orange) !important; color: #fff !important; padding: .2rem .6rem !important; border-radius: 4px !important; font-size: .65rem !important; font-weight: 700 !important; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ============================================================ FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}
.feat-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.8rem 1.5rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.feat-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feat-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.feat-title { font-weight: 700; font-size: 1rem; margin-bottom: .45rem; }
.feat-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.8; }

/* ============================================================ TEACHERS */
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.teacher-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  cursor: pointer;
}
.teacher-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.tc-photo {
  width: 100%; height: 420px; overflow: hidden;
  background: var(--bg-soft);
  position: relative;
}
.tc-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  transition: transform .4s;
}
.teacher-card:hover .tc-photo img { transform: scale(1.04); }
.tc-photo-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif); font-size: 4rem; font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
}
.tc-body { padding: 1.4rem 1.4rem 1.6rem; }
.tc-name { font-family: var(--ff-serif); font-size: 1.25rem; font-weight: 700; margin-bottom: .2rem; }
.tc-title { font-size: .8rem; color: var(--orange); font-weight: 600; margin-bottom: .7rem; }
.tc-desc { font-size: .83rem; color: var(--text-muted); line-height: 1.8; margin-bottom: .9rem; }
.tc-certs { display: flex; flex-wrap: wrap; gap: .4rem; }
.tc-cert {
  font-size: .7rem; font-weight: 700; padding: .2rem .55rem;
  border-radius: 100px;
  background: var(--blue-light); color: var(--blue);
  border: 1px solid rgba(10,110,189,.2);
}
.tc-more-btn {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 1rem; font-size: .82rem; font-weight: 600;
  color: var(--blue); background: none; border: none;
  transition: gap .2s;
}
.tc-more-btn:hover { gap: 8px; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: var(--radius-lg);
  max-width: 640px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn .25s ease;
}
@keyframes modalIn { from{opacity:0;transform:scale(.95)} to{opacity:1;transform:scale(1)} }
.modal-header {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 2rem; border-bottom: 1px solid var(--border);
}
.modal-photo {
  width: 100px; height: 100px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  background: var(--bg-soft);
}
.modal-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.modal-photo-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 700; font-family: var(--ff-serif);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff;
}
.modal-meta { flex: 1; }
.modal-name { font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 700; margin-bottom: .2rem; }
.modal-role { color: var(--orange); font-weight: 600; font-size: .88rem; margin-bottom: .8rem; }
.modal-certs { display: flex; flex-wrap: wrap; gap: .4rem; }
.modal-cert { font-size: .75rem; font-weight: 700; padding: .22rem .7rem; border-radius: 100px; background: var(--blue-light); color: var(--blue); }
.modal-close {
  background: none; border: none;
  font-size: 1.5rem; color: var(--text-muted);
  padding: .4rem; line-height: 1;
  transition: color .2s;
}
.modal-close:hover { color: var(--text); }
.modal-body { padding: 2rem; }
.modal-body p { font-size: .9rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; }
.modal-body p:last-child { margin-bottom: 0; }

/* ============================================================ STATS BAR */
.stats-bar {
  background: linear-gradient(90deg, var(--blue-dark), var(--blue));
  padding: 2.5rem clamp(1rem,5vw,5rem);
}
.stats-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; }
.stat-item { text-align: center; color: #fff; }
.stat-num { font-family: var(--ff-serif); font-size: clamp(1.9rem,3.5vw,2.8rem); font-weight: 700; line-height: 1; }
.stat-unit { font-size: .95rem; opacity: .8; }
.stat-lbl { font-size: .8rem; opacity: .7; margin-top: .35rem; }

/* ============================================================ STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0; position: relative;
}
.steps-grid::after {
  content: '';
  position: absolute;
  top: 22px; left: 10%; right: 10%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue) 0, var(--blue) 6px, transparent 6px, transparent 14px);
}
.step {
  padding: 0 1rem; text-align: center; position: relative; z-index: 1;
}
.step-num {
  width: 44px; height: 44px; margin: 0 auto 1rem;
  background: var(--blue); color: #fff;
  border-radius: 50%; border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem;
}
.step-title { font-weight: 700; margin-bottom: .4rem; font-size: .95rem; }
.step-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================ TABLE */
.data-table {
  width: 100%; border-collapse: collapse; font-size: .88rem;
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.data-table thead th {
  background: var(--blue); color: #fff;
  padding: .85rem 1rem; text-align: left;
  font-size: .8rem; font-weight: 600; letter-spacing: .05em;
}
.data-table tbody td {
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: var(--bg-soft); }

/* ============================================================ ABOUT */
.about-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #023e8a 100%);
  color: #fff; padding: 80px clamp(1rem,5vw,5rem) 60px;
  text-align: center;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text .tag { font-size:.75rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--orange); display:block; margin-bottom:.6rem; }
.about-text h2 { font-family:var(--ff-serif); font-size:clamp(1.6rem,2.8vw,2.2rem); font-weight:700; line-height:1.3; margin-bottom:1rem; }
.about-text p { font-size:.9rem; color:var(--text-muted); line-height:1.9; margin-bottom:.9rem; }
.about-nums {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
}
.an-item { text-align: center; padding: .8rem; }
.an-num { font-family:var(--ff-serif); font-size:1.8rem; font-weight:700; color:var(--blue); line-height:1; }
.an-lbl { font-size:.78rem; color:var(--text-muted); margin-top:.3rem; }

/* Timeline — 雪山攀登图 */
.tm-svg {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 2;
}
.tm-path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawPath 2.5s ease forwards;
}
@keyframes drawPath {
  to { stroke-dashoffset: 0; }
}

/* 雪山背景容器 */
.timeline-mountain-bg {
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem;
}
.tm-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/山峰.png');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.timeline-mountain-bg > *:not(.tm-bg-image) {
  position: relative;
  z-index: 2;
}
/* 半透明遮罩让文字更清晰 */
.timeline-mountain-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.25) 30%,
    rgba(0,0,0,.15) 100%
  );
  z-index: 1;
}

/* 事件标签 */
.tm-labels {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 520px;
}
.tm-label {
  position: absolute;
  text-align: right;
  max-width: 140px;
  transform: translateY(-50%);
}
.tm-label.tm-right {
  text-align: left;
  transform: translateY(-50%);
}
.tm-year {
  font-size: .75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .2rem;
  letter-spacing: .03em;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.tm-label.tm-right .tm-year {
  color: #ffe0b2;
}
.tm-text {
  font-size: .72rem;
  color: #fff;
  line-height: 1.5;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(4px);
  padding: .3rem .5rem;
  border-radius: 6px;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

/* 底部愿景 */
.tm-vision {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  position: relative;
  z-index: 2;
}
.tm-vision-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .83rem;
  flex-wrap: wrap;
}
.tm-v-label {
  font-weight: 700;
  margin-right: .3rem;
}
.tm-v-dot { opacity: .5; }

/* ============================================================ CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; }
.cinfo h3 { font-family:var(--ff-serif); font-size:1.3rem; font-weight:700; margin-bottom:1.4rem; }
.cinfo-item { display:flex; gap:.9rem; margin-bottom:1.6rem; align-items:flex-start; }
.ci-icon {
  width:40px; height:40px; flex-shrink:0;
  background:var(--blue-light); border-radius:var(--radius-sm);
  display:flex; align-items:center; justify-content:center; font-size:1.1rem;
}
.ci-lbl { font-size:.75rem; color:var(--text-muted); margin-bottom:.2rem; }
.ci-val { font-weight:600; font-size:.9rem; }
.campus-card {
  background:#fff; border:1px solid var(--border); border-radius:var(--radius-md);
  padding:1.2rem 1.4rem; margin-bottom:.8rem; transition:border-color .2s;
}
.campus-card:hover { border-color:var(--blue); }
.campus-tag { display:inline-block; font-size:.7rem; font-weight:700; padding:.18rem .6rem; border-radius:100px; background:var(--blue-light); color:var(--blue); margin-bottom:.5rem; }
.campus-name { font-weight:600; margin-bottom:.25rem; }
.campus-addr { font-size:.82rem; color:var(--text-muted); }

/* Form */
.cform { background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:2.2rem; }
.cform h3 { font-family:var(--ff-serif); font-size:1.25rem; font-weight:700; margin-bottom:1.3rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.fg { margin-bottom:1.1rem; }
.fg label { display:block; font-size:.8rem; font-weight:600; color:var(--text); margin-bottom:.35rem; }
.fg input, .fg select, .fg textarea {
  width:100%; padding:.65rem .9rem;
  border:1.5px solid var(--border); border-radius:var(--radius-sm);
  font-size:.88rem; color:var(--text);
  transition:border-color .2s; outline:none;
  background:#fff;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color:var(--blue); }
.fg textarea { resize:vertical; min-height:90px; }
.form-submit {
  width:100%; background:var(--orange); color:#fff;
  padding:.8rem; border-radius:var(--radius-sm);
  font-size:.95rem; font-weight:700; border:none;
  transition:all .2s;
}
.form-submit:hover { background:#d9640a; transform:translateY(-1px); box-shadow:0 4px 12px rgba(244,121,32,.35); }

/* ============================================================ SERVICES PAGE */
.svc-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #023e8a 100%);
  color: #fff; padding: 80px clamp(1rem,5vw,5rem) 60px; text-align: center;
}
.svc-cat { margin-bottom: 3.5rem; }
.svc-cat-header {
  display:flex; align-items:center; gap:1rem;
  padding-bottom:1rem; margin-bottom:1.5rem;
  border-bottom:2px solid var(--border);
}
.svc-cat-ico {
  width:44px; height:44px; border-radius:var(--radius-sm);
  display:flex; align-items:center; justify-content:center; font-size:1.3rem;
}
.svc-cat-name { font-family:var(--ff-serif); font-size:1.35rem; font-weight:700; }
.svc-cat-sub { font-size:.82rem; color:var(--text-muted); margin-top:.15rem; }

/* ============================================================ 1v1 就业陪跑 */
.emp-banner {
  background: linear-gradient(135deg, #0a1628 0%, #0d2137 100%);
  color: #fff; text-align: center;
  padding: 3.5rem clamp(1rem,5vw,5rem);
  margin: 0;
}
.emp-badge {
  display: inline-block; background: rgba(244,121,32,.2); color: #f47920;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  padding: .25rem .8rem; border-radius: 100px; margin-bottom: 1rem;
  border: 1px solid rgba(244,121,32,.3);
}
.emp-title {
  font-family: var(--ff-serif); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; margin-bottom: .5rem;
}
.emp-sub { color: rgba(255,255,255,.65); font-size: .9rem; margin-bottom: 2.5rem; }
.emp-stats {
  display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2rem;
}
.emp-stat { text-align: center; min-width: 100px; }
.emp-stat-num { font-size: 2.2rem; font-weight: 800; line-height: 1.1; }
.emp-stat-label { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: .3rem; }

.emp-pkg-wrap { padding: 3.5rem clamp(1rem,5vw,5rem); }
.emp-pkg-title {
  font-family: var(--ff-serif); font-size: 1.4rem; font-weight: 700;
  text-align: center; margin-bottom: 2rem; color: var(--text);
}
.emp-pkg-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto;
}
.emp-pkg {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.1); border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.emp-pkg:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.15); }
.emp-pkg-top { padding: 1.5rem; color: #fff; }
.emp-pkg-tag { font-size: .7rem; font-weight: 700; letter-spacing: .08em; opacity: .8; margin-bottom: .4rem; }
.emp-pkg-name { font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 700; margin-bottom: .2rem; }
.emp-pkg-target { font-size: .78rem; opacity: .85; }
.emp-pkg-body { padding: 1.5rem; background: #fff; }
.emp-pkg-promise { margin-bottom: .8rem; }
.emp-promise-badge {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-size: .75rem; font-weight: 700; padding: .3rem .75rem; border-radius: 100px;
}
.emp-pkg-salary { font-size: .8rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.emp-pkg-list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.emp-list-item { font-size: .82rem; color: var(--text); display: flex; align-items: flex-start; gap: .4rem; }
.emp-list-item::before { content: '•'; color: var(--blue); font-weight: 900; flex-shrink: 0; margin-top: .1rem; }
.emp-pkg-cta { text-align: center; }
.emp-btn {
  display: inline-block; padding: .65rem 1.8rem; border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 700; transition: all .2s; cursor: pointer;
}
.emp-btn-a { background: var(--blue); color: #fff; }
.emp-btn-a:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(10,110,189,.3); }
.emp-btn-b { background: var(--orange); color: #fff; }
.emp-btn-b:hover { background: #d4560a; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(244,121,32,.3); }

.emp-pain { padding: 2rem clamp(1rem,5vw,5rem) 3.5rem; background: var(--bg-soft); }
.emp-section-label {
  font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 700;
  color: var(--text); margin-bottom: 1.5rem; text-align: center;
}
.emp-pain-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 1100px; margin: 0 auto;
}
.emp-pain-card {
  background: #fff; border-radius: var(--radius-md); padding: 1.5rem;
  border: 1px solid var(--border); transition: all .25s;
  text-align: center;
}
.emp-pain-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(10,110,189,.12); transform: translateY(-2px); }
.emp-pain-icon { font-size: 2rem; margin-bottom: .8rem; }
.emp-pain-title { font-weight: 700; font-size: .88rem; margin-bottom: .5rem; color: var(--text); }
.emp-pain-desc { font-size: .78rem; color: var(--text-muted); line-height: 1.7; }

.emp-phases { padding: 3.5rem clamp(1rem,5vw,5rem); }
.emp-phase-track {
  display: flex; align-items: flex-start; gap: 1rem;
  max-width: 1100px; margin: 0 auto; flex-wrap: nowrap;
  overflow-x: auto; padding-bottom: .5rem;
}
.emp-phase { flex: 1; min-width: 180px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.emp-phase-num {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; margin-bottom: .8rem; flex-shrink: 0;
}
.emp-phase-content { padding: 0 .2rem; }
.emp-phase-title { font-weight: 700; font-size: .9rem; margin-bottom: .4rem; color: var(--text); }
.emp-phase-desc { font-size: .75rem; color: var(--text-muted); line-height: 1.7; }
.emp-phase-arrow { font-size: 1.2rem; color: var(--blue); margin-top: .8rem; flex-shrink: 0; }

.emp-faq { padding: 0 clamp(1rem,5vw,5rem) 3.5rem; max-width: 900px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; transition: border-color .2s;
}
.faq-item:hover { border-color: var(--blue); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem; background: #fff; font-weight: 600; font-size: .9rem;
  cursor: pointer; user-select: none; transition: background .2s;
}
.faq-q:hover { background: var(--bg-soft); }
.faq-q.open { background: var(--blue-light); color: var(--blue); }
.faq-icon { font-size: 1.1rem; font-weight: 300; color: var(--text-muted); flex-shrink: 0; margin-left: .5rem; transition: transform .3s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 1.25rem; max-height: 0; overflow: hidden;
  font-size: .85rem; color: var(--text-muted); line-height: 1.8;
  background: #fff; transition: all .35s ease;
}
.faq-a.open { max-height: 300px; padding: 1rem 1.25rem; }

/* Responsive */
@media (max-width: 900px) {
  .emp-pkg-grid { grid-template-columns: 1fr; }
  .emp-pain-grid { grid-template-columns: 1fr 1fr; }
  .emp-case-grid { grid-template-columns: 1fr; }
  .emp-curri-grid { grid-template-columns: 1fr; }
  .emp-interview-grid { grid-template-columns: 1fr; }
  .emp-campus-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .emp-stats { gap: 1.2rem; }
  .emp-pain-grid { grid-template-columns: 1fr; }
  .emp-phase-track { flex-direction: column; align-items: stretch; }
  .emp-phase { flex-direction: row; text-align: left; gap: 1rem; }
  .emp-phase-arrow { display: none; }
  .emp-campus-grid { grid-template-columns: 1fr; }
}

/* ── 学员真实案例 ── */
.emp-cases {
  padding: 3.5rem clamp(1rem,5vw,5rem);
  background: var(--bg-soft);
}
.emp-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.emp-case-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .3s, transform .3s;
}
.emp-case-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  transform: translateY(-3px);
}
.emp-case-header {
  color: #fff;
  padding: 1.2rem 1.5rem;
}
.emp-case-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  opacity: .9;
  margin-bottom: .4rem;
}
.emp-case-before {
  font-size: .82rem;
  opacity: .8;
  line-height: 1.5;
}
.emp-case-body { padding: 1.3rem 1.5rem; }
.emp-case-profile {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.emp-cp-row {
  display: flex;
  gap: .5rem;
  font-size: .78rem;
}
.emp-cp-key {
  color: var(--text-muted);
  min-width: 48px;
  font-weight: 600;
}
.emp-cp-val { color: var(--text); font-weight: 500; }
.emp-case-solution { margin-bottom: 1rem; }
.emp-cs-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .35rem;
}
.emp-cs-text {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.emp-case-result { }
.emp-cr-label {
  font-size: .72rem;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: .5rem;
}
.emp-cr-offer {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin-bottom: .5rem;
}
.emp-cr-offer-stack { flex-direction: column; align-items: flex-start; gap: .5rem; }
.emp-offer-item {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: .5rem .8rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
}
.emp-highlight {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #c2410c;
}
.emp-offer-arrow {
  color: var(--text-muted);
  font-size: 1rem;
  flex-shrink: 0;
}
.emp-cr-note {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: .4rem;
  border-top: 1px solid var(--border);
}
.emp-cr-double {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.emp-cr-d-item {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: .4rem .8rem;
  font-size: .78rem;
  border: 1px solid var(--border);
}

/* ── 岗位薪资表 ── */
.emp-salary-section {
  padding: 3.5rem clamp(1rem,5vw,5rem);
}
.emp-salary-intro {
  text-align: center;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.emp-salary-group { margin-bottom: 2.5rem; }
.emp-sg-title {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: .8rem;
  padding-left: .5rem;
  border-left: 3px solid var(--blue);
}
.emp-salary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.emp-salary-table th {
  background: var(--blue);
  color: #fff;
  padding: .75rem 1rem;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.emp-salary-table td {
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
}
.emp-salary-table tr:last-child td { border-bottom: none; }
.emp-salary-table tr:hover td { background: var(--bg-soft); }
.emp-salary-cell { font-weight: 600; color: var(--text); white-space: nowrap; }
.emp-salary-high { color: #c2410c; }
.emp-salary-note {
  margin-top: .8rem;
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.7;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
}

/* ── 技术课表 ── */
.emp-curriculum {
  padding: 3.5rem clamp(1rem,5vw,5rem);
  background: var(--bg-soft);
}
.emp-curri-intro {
  text-align: center;
  font-size: .85rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}
.emp-curri-tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.emp-curri-tab {
  padding: .55rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  transition: all .2s;
  user-select: none;
}
.emp-curri-tab:hover { border-color: var(--blue); color: var(--blue); }
.emp-curri-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.emp-curri-content { display: none; }
.emp-curri-content.active { display: block; }
.emp-curri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.emp-curri-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.emp-cc-title {
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  padding: .7rem 1rem;
}
.emp-cc-list {
  list-style: none;
  padding: .8rem 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.emp-cc-list li {
  font-size: .78rem;
  color: var(--text);
  padding-left: 1rem;
  position: relative;
  line-height: 1.6;
}
.emp-cc-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: .7rem;
  top: .15rem;
}
.emp-curri-note {
  text-align: center;
  font-size: .78rem;
  color: #16a34a;
  font-weight: 600;
  margin-top: 1rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* 面试题库 */
.emp-interview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.emp-interview-col {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.3rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.emp-ic-title {
  font-weight: 700;
  font-size: .88rem;
  color: var(--text);
  margin-bottom: .6rem;
}
.emp-ic-desc {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.emp-iq-list { display: flex; flex-direction: column; gap: .6rem; }
.emp-iq-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .78rem;
  color: var(--text);
  line-height: 1.6;
  padding: .6rem;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
}
.emp-iq-item span { flex-shrink: 0; font-size: .9rem; }

/* ── 春招秋招专项 ── */
.emp-campus {
  padding: 3.5rem clamp(1rem,5vw,5rem);
}
.emp-campus-desc {
  text-align: center;
  font-size: .85rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}
.emp-campus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.emp-campus-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all .25s;
}
.emp-campus-item:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(10,110,189,.12);
  transform: translateY(-2px);
}
.emp-ci-icon { font-size: 2.2rem; margin-bottom: .8rem; }
.emp-ci-title { font-weight: 700; font-size: .88rem; margin-bottom: .5rem; color: var(--text); }
.emp-ci-desc { font-size: .78rem; color: var(--text-muted); line-height: 1.7; }

/* ── 四阶段时间标签 ── */
.emp-phase-time {
  font-size: .72rem;
  color: var(--blue);
  font-weight: 600;
  margin-top: .4rem;
  background: var(--blue-light);
  display: inline-block;
  padding: .15rem .5rem;
  border-radius: 100px;
}

/* ── 套餐补充说明 ── */
.emp-pkg-extra {
  display: block;
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: .3rem;
}

/* ============================================================ SERVICE PROCESS TIMELINE */
.emp-process-section { }

/* ============================================================ CERTIFICATION VALUE */
.cert-value-banner {
  position: relative;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 4rem clamp(1rem,5vw,5rem);
  color: #fff;
}
.cert-value-banner .cert-value-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.cert-value-banner .cert-value-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 700;
  margin-bottom: .5rem;
}
.cert-value-banner .cert-value-sub {
  font-size: clamp(.85rem,1.3vw,.95rem);
  color: rgba(255,255,255,.7);
}

/* Impact Stats */
.cert-impact-stats { margin-bottom: 3rem; }
.cert-impact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.cert-impact-vs-icon {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  flex-shrink: 0;
}
.cert-impact-col { flex: 1; text-align: center; }
.cert-impact-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
  opacity: .8;
}
.cert-impact-before .cert-impact-label { color: #94a3b8; }
.cert-impact-after .cert-impact-label { color: #4ade80; }
.cert-impact-salary {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 1rem;
}
.cert-impact-salary-high { color: #fbbf24; }
.cert-impact-plus { font-size: 1.2rem; }
.cert-impact-jobs { margin-bottom: 1rem; }
.cert-impact-jobs span { font-size: .75rem; color: rgba(255,255,255,.6); }
.cert-impact-bar {
  background: rgba(255,255,255,.1);
  border-radius: 100px;
  height: 8px;
  margin-bottom: .3rem;
  overflow: hidden;
}
.cert-impact-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1s cubic-bezier(.22,1,.36,1);
}
.cert-impact-fill-gray { background: #64748b; }
.cert-impact-fill-orange { background: linear-gradient(90deg, var(--orange), #fbbf24); }
.cert-impact-tags { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; }
.cert-tag {
  font-size: .65rem;
  padding: .2rem .5rem;
  border-radius: 100px;
}
.cert-tag-gray { background: rgba(100,116,139,.3); color: #94a3b8; }
.cert-tag-orange { background: rgba(244,121,32,.25); color: #fb923c; }

/* Summary Stats */
.cert-impact-summary {
  max-width: 700px;
  margin: 0 auto;
}
.cert-impact-gain {
  background: linear-gradient(135deg, rgba(244,121,32,.15), rgba(37,99,235,.1));
  border: 1px solid rgba(244,121,32,.3);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}
.cert-gain-item { text-align: center; }
.cert-gain-num {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
}
.cert-gain-label {
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  margin-top: .2rem;
}
.cert-gain-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}
.cert-value-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(37,99,235,.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(244,121,32,.12) 0%, transparent 50%);
  pointer-events: none;
}
.cert-value-content { position: relative; z-index: 1; }
.cert-value-header {
  text-align: center;
  margin-bottom: 3rem;
}
.cert-value-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem,3.5vw,2.5rem);
  font-weight: 700;
  margin-bottom: .6rem;
}
.cert-value-sub {
  font-size: clamp(.9rem,1.5vw,1rem);
  color: rgba(255,255,255,.7);
  margin-bottom: 1.5rem;
}
.cert-value-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.cert-btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
}
.cert-btn-primary {
  background: #f60;
  color: #fff;
}
.cert-btn-primary:hover {
  background: #e55a00;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255,102,0,.4);
}
.cert-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.cert-btn-secondary:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  transform: translateY(-2px);
}
/* 1v1就业陪跑卡片特殊样式 */
.cert-value-card-emp {
  background: linear-gradient(135deg, rgba(255,102,0,.15), rgba(230,80,0,.08)) !important;
  border: 1px solid rgba(255,102,0,.3);
}
.cert-vendor-hot-emp {
  background: linear-gradient(135deg, #f60, #e55a00);
  color: #fff;
}
.cert-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.cert-value-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  transition: all .3s;
}
.cert-value-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.cert-value-card-featured {
  background: linear-gradient(135deg, rgba(244,121,32,.2), rgba(37,99,235,.15));
  border: 2px solid rgba(244,121,32,.4);
}
.cert-vendor-hot {
  position: absolute;
  top: -10px;
  right: 15px;
  background: linear-gradient(135deg, var(--orange), #f97316);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 100px;
}
.cert-vendor-icon { font-size: 2.2rem; margin-bottom: .5rem; }
.cert-vendor-name {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .2rem;
}
.cert-vendor-level {
  font-size: .7rem;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .6rem;
}
.cert-vendor-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.cert-vendor-value { margin-bottom: 1rem; }
.cert-vendor-value-title {
  font-size: .78rem;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: .5rem;
}
.cert-vendor-list {
  font-size: .72rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}
.cert-vendor-list li { padding: .2rem 0; }
.cert-vendor-req { }
.cert-vendor-req-title {
  font-size: .78rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: .5rem;
}
.cert-vendor-req-item {
  font-size: .7rem;
  color: rgba(255,255,255,.65);
  padding: .25rem 0;
  padding-left: .8rem;
  position: relative;
}
.cert-vendor-req-item::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--orange);
}
.cert-value-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.cert-summary-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cert-summary-icon { font-size: 1.8rem; flex-shrink: 0; }
.cert-summary-text strong { font-size: .85rem; color: #fff; display: block; margin-bottom: .3rem; }
.cert-summary-text p { font-size: .75rem; color: rgba(255,255,255,.65); line-height: 1.5; }

/* ============================================================ RESUME OPTIMIZATION */
.emp-resume-section { }
.emp-resume-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto 2rem;
}
.emp-resume-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.emp-resume-header {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.emp-resume-before .emp-resume-header { background: var(--bg-soft); }
.emp-resume-after .emp-resume-header { background: #f0fdf4; }
.emp-resume-header h4 { font-size: .88rem; font-weight: 700; color: var(--text); margin: 0; }
.emp-resume-badge {
  font-size: .65rem;
  font-weight: 700;
  padding: .25rem .6rem;
  border-radius: 100px;
}
.emp-resume-badge-gray { background: #e5e7eb; color: #6b7280; }
.emp-resume-badge-green { background: #dcfce7; color: #15803d; }
.emp-resume-content { padding: 1rem; }
.emp-resume-block { margin-bottom: 1rem; }
.emp-resume-block:last-child { margin-bottom: 0; }
.emp-resume-title { font-size: .75rem; font-weight: 700; color: var(--text-muted); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .05em; }
.emp-resume-item { padding: .6rem; border-radius: 6px; font-size: .75rem; line-height: 1.6; }
.emp-resume-item-bad { background: #fef2f2; border-left: 3px solid #fca5a5; color: #991b1b; }
.emp-resume-item-bad p { margin-bottom: .3rem; }
.emp-resume-item-bad p:last-child { margin-bottom: 0; }
.emp-resume-item-good { background: #f0fdf4; border-left: 3px solid #86efac; }
.emp-resume-item-good p { margin-bottom: .3rem; }
.emp-resume-item-good p:last-child { margin-bottom: 0; }
.emp-resume-item-good strong { color: var(--text); }
.emp-resume-highlight { color: #166534; }
.emp-resume-problems { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .8rem; }
.emp-problem-tag {
  font-size: .65rem;
  padding: .2rem .5rem;
  border-radius: 4px;
  background: #fee2e2;
  color: #991b1b;
}
.emp-problem-tag-good { background: #dcfce7; color: #15803d; }
.emp-resume-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
}
.emp-resume-arrow-icon {
  font-size: 2rem;
  color: var(--orange);
  font-weight: 700;
}
.emp-resume-arrow-text {
  font-size: .7rem;
  font-weight: 700;
  color: var(--orange);
  background: #fff7ed;
  padding: .2rem .6rem;
  border-radius: 100px;
  margin-top: .5rem;
}
.emp-resume-result {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.emp-result-card {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.emp-result-card:nth-child(2) { background: linear-gradient(135deg, var(--orange), #c2410c); }
.emp-result-icon { font-size: 2rem; }
.emp-result-text strong { font-size: .82rem; display: block; margin-bottom: .3rem; }
.emp-result-text p { font-size: .78rem; opacity: .9; line-height: 1.4; }
.emp-result-text .emp-highlight { color: #fef08a; font-weight: 700; }

/* ============================================================ INTERVIEW QUESTIONS PREVIEW */
.emp-interview-preview-section { }
.emp-interview-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.emp-interview-preview-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all .3s;
}
.emp-interview-preview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.emp-interview-preview-header {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: #fff;
  padding: .8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.emp-interview-preview-header-orange { background: linear-gradient(135deg, #c2410c, #f97316); }
.emp-interview-preview-header-green { background: linear-gradient(135deg, #047857, #10b981); }
.emp-interview-preview-tag { font-weight: 700; font-size: .82rem; }
.emp-interview-preview-count {
  font-size: .72rem;
  background: rgba(255,255,255,.2);
  padding: .2rem .5rem;
  border-radius: 100px;
}
.emp-interview-preview-body { padding: 1rem; }
.emp-interview-qa { margin-bottom: 1rem; }
.emp-interview-qa:last-child { margin-bottom: 0; }
.emp-interview-q {
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .3rem;
  line-height: 1.4;
}
.emp-interview-q::before { content: "Q："; font-weight: 700; }
.emp-interview-a {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: .8rem;
  border-left: 2px solid var(--border);
}
.emp-interview-a::before { content: "A："; font-weight: 700; color: var(--text); }
.emp-interview-preview-footer {
  padding: .6rem 1rem;
  background: var(--bg-soft);
  font-size: .7rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.emp-process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.emp-process-phase {
  flex: 1;
  min-width: 180px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all .3s;
}
.emp-process-phase:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.emp-phase-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.emp-phase-num {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--ff-serif);
  opacity: .7;
}
.emp-phase-title { font-weight: 700; font-size: .88rem; flex: 1; }
.emp-phase-time {
  font-size: .65rem;
  background: rgba(255,255,255,.2);
  padding: .2rem .5rem;
  border-radius: 100px;
  white-space: nowrap;
}
.emp-phase-body { padding: 1rem; }
.emp-phase-list { }
.emp-phase-list li {
  font-size: .75rem;
  color: var(--text);
  padding: .4rem 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  line-height: 1.4;
}
.emp-phase-list li:last-child { border-bottom: none; }
.emp-phase-tag {
  font-size: .6rem;
  font-weight: 700;
  padding: .15rem .4rem;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: .1rem;
}
.emp-phase-tag-blue { background: #dbeafe; color: #1e40af; }
.emp-phase-tag-green { background: #dcfce7; color: #15803d; }
.emp-phase-tag-orange { background: #ffedd5; color: #c2410c; }
.emp-phase-tag-purple { background: #f3e8ff; color: #7c3aed; }
.emp-phase-tag-pink { background: #fce7f3; color: #be185d; }
.emp-phase-tag-gold { background: #fef3c7; color: #92400e; }
.emp-process-arrow {
  font-size: 1.5rem;
  color: var(--orange);
  display: flex;
  align-items: center;
  padding: 0 .5rem;
  flex-shrink: 0;
}

/* ============================================================ EMPLOYMENT HERO BANNER */
.emp-hero-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 4rem clamp(1rem,5vw,5rem);
  text-align: center;
  color: #fff;
}
.emp-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(244,121,32,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(37,99,235,.15) 0%, transparent 60%);
  pointer-events: none;
}
.emp-hero-content { position: relative; z-index: 1; }
.emp-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), #ef4444);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .8rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
  letter-spacing: .05em;
}
.emp-hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 700;
  margin-bottom: .6rem;
}
.emp-hero-sub {
  font-size: clamp(.95rem,1.5vw,1.1rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 1.2rem;
}
.emp-hero-tags {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.emp-hero-tags span {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
}

/* ============================================================ EMPLOYMENT PACKAGES */
.emp-packages-section { padding-top: 0; }
.emp-pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.emp-pkg-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all .3s;
  position: relative;
}
.emp-pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.emp-pkg-highlight {
  border: 2px solid var(--orange);
}
.emp-pkg-pop {
  position: absolute;
  top: 12px;
  right: -28px;
  background: var(--orange);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem 2.5rem;
  transform: rotate(35deg);
}
.emp-pkg-header {
  padding: 1.8rem 1.5rem 1.2rem;
  color: #fff;
  text-align: center;
}
.emp-pkg-header-blue { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.emp-pkg-header-orange { background: linear-gradient(135deg, #c2410c, #f97316); }
.emp-pkg-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  background: rgba(255,255,255,.2);
  padding: .2rem .6rem;
  border-radius: 100px;
  margin-bottom: .6rem;
}
.emp-pkg-name {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.emp-pkg-price {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--ff-serif);
}
.emp-pkg-price span { font-size: 1.4rem; }
.emp-pkg-unit { font-size: .85rem; font-weight: 400; }
.emp-pkg-condition {
  font-size: .75rem;
  opacity: .85;
  margin-top: .3rem;
}
.emp-pkg-body { padding: 1.5rem; }
.emp-pkg-list { margin-bottom: 1.5rem; }
.emp-pkg-list li {
  padding: .5rem 0;
  font-size: .85rem;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
  line-height: 1.5;
}
.emp-pkg-list li:last-child { border-bottom: none; }
.emp-pkg-cta { text-align: center; }
.btn-emp-blue {
  display: inline-block;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: #fff;
  padding: .7rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .88rem;
  transition: all .2s;
}
.btn-emp-blue:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37,99,235,.4); }
.btn-emp-orange {
  display: inline-block;
  background: linear-gradient(135deg, #c2410c, #f97316);
  color: #fff;
  padding: .7rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .88rem;
  transition: all .2s;
}
.btn-emp-orange:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(244,121,32,.4); }
.btn-outline-orange {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--orange);
  color: var(--orange);
  padding: .6rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .88rem;
  transition: all .2s;
}
.btn-outline-orange:hover { background: var(--orange); color: #fff; }

/* ============================================================ EMPLOYMENT CASES */
.emp-case-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.emp-case-mini-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all .3s;
}
.emp-case-mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.emp-case-mini-header {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  padding: .8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.emp-case-mini-header-green { background: linear-gradient(135deg, #047857, #10b981); }
.emp-case-mini-header-purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.emp-case-mini-header-orange { background: linear-gradient(135deg, #c2410c, #f97316); }
.emp-case-mini-tag { font-size: .72rem; font-weight: 700; }
.emp-case-mini-salary {
  font-size: .82rem;
  font-weight: 700;
  font-family: var(--ff-serif);
}
.emp-case-mini-body { padding: 1rem; }
.emp-case-mini-info strong { font-size: .88rem; color: var(--text); display: block; margin-bottom: .3rem; }
.emp-case-mini-info p { font-size: .75rem; color: var(--text-muted); line-height: 1.5; }
.emp-case-mini-plan { font-style: italic; margin-top: .3rem !important; }
.emp-case-mini-offer {
  margin-top: .8rem;
  padding-top: .8rem;
  border-top: 1px dashed var(--border);
  font-size: .78rem;
  color: var(--text-muted);
}
.emp-case-mini-offer span { color: var(--orange); font-weight: 700; }

/* ============================================================ EMPLOYMENT SALARY */
.emp-salary-section { background: #fff; }
.emp-salary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.emp-salary-col-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--border);
}
.emp-salary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .8rem;
}
.emp-salary-table th {
  background: var(--bg-soft);
  padding: .6rem .8rem;
  text-align: left;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}
.emp-salary-table td {
  padding: .6rem .8rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.emp-salary-table tr:hover td { background: var(--bg-soft); }
.emp-salary-high td { color: var(--orange); font-weight: 600; }

/* ============================================================ CAMPUS RECRUITMENT */
.emp-campus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.emp-campus-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.emp-campus-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
/* ============================================================ INDUSTRY COMPARISON */
.emp-industry-section { }
.emp-industry-chart {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.emp-industry-bar {
  display: grid;
  grid-template-columns: 100px 1fr 180px;
  gap: 1rem;
  align-items: center;
}
.emp-industry-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  text-align: right;
}
.emp-industry-track {
  background: var(--bg-soft);
  border-radius: 100px;
  height: 32px;
  overflow: hidden;
}
.emp-industry-fill {
  height: 100%;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1rem;
  position: relative;
  transition: width .8s cubic-bezier(.22,1,.36,1);
}
.emp-industry-range {
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
}
.emp-industry-note {
  font-size: .72rem;
  color: var(--text-muted);
  padding-left: .5rem;
}
.emp-industry-insight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.emp-insight-card {
  background: linear-gradient(135deg, rgba(244,121,32,.08), rgba(37,99,235,.05));
  border: 1px solid rgba(244,121,32,.2);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.emp-insight-icon { font-size: 1.8rem; flex-shrink: 0; }
.emp-insight-text strong { font-size: .88rem; color: var(--text); display: block; margin-bottom: .3rem; }
.emp-insight-text p { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }
.emp-highlight { color: var(--orange); font-weight: 700; }

.emp-campus-icon { font-size: 2rem; margin-bottom: .8rem; }
.emp-campus-title { font-weight: 700; font-size: .92rem; margin-bottom: .5rem; }
.emp-campus-desc { font-size: .78rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================ CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff; text-align: center;
  padding: clamp(3rem,5vw,4.5rem) clamp(1rem,5vw,5rem);
}
.cta-banner h2 { font-family:var(--ff-serif); font-size:clamp(1.5rem,2.8vw,2.2rem); font-weight:700; margin-bottom:.8rem; }
.cta-banner p { color:rgba(255,255,255,.8); margin-bottom:2rem; max-width:480px; margin-left:auto; margin-right:auto; }
.cta-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.btn-white { background:#fff; color:var(--blue); padding:.75rem 2rem; border-radius:var(--radius-sm); font-weight:700; font-size:.92rem; transition:all .2s; border:none; }
.btn-white:hover { transform:translateY(-2px); box-shadow:0 6px 16px rgba(0,0,0,.2); }
.btn-ghost-white { background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.6); padding:.75rem 2rem; border-radius:var(--radius-sm); font-size:.92rem; font-weight:600; transition:all .2s; }
.btn-ghost-white:hover { background:rgba(255,255,255,.12); border-color:#fff; }

/* ============================================================ FOOTER */
.footer {
  background: #1a1a2e; color: rgba(255,255,255,.75);
  padding: 3.5rem clamp(1rem,5vw,5rem) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.fb-logo { display:flex; align-items:center; gap:10px; margin-bottom:.8rem; }
.fb-logo img { height:36px; }
.fb-logo-text { font-weight:700; font-size:1rem; color:#fff; }
.fb-desc { font-size:.82rem; line-height:1.8; max-width:240px; }
.fc h4 { font-size:.88rem; font-weight:700; color:#fff; margin-bottom:1rem; }
.fc ul li { margin-bottom:.55rem; }
.fc ul li a { font-size:.82rem; color:rgba(255,255,255,.6); transition:color .2s; }
.fc ul li a:hover { color:#fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.2rem 0;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem;
}
.footer-copy, .footer-icp { font-size:.75rem; color:rgba(255,255,255,.4); }

/* ============================================================ PAGE HERO (inner) */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #023e8a 100%);
  color: #fff; text-align: center;
  padding: 80px clamp(1rem,5vw,5rem) 60px;
}
.page-hero-tag { display:inline-block; font-size:.75rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.7); margin-bottom:.6rem; }
.page-hero-title { font-family:var(--ff-serif); font-size:clamp(1.8rem,3.5vw,2.8rem); font-weight:700; margin-bottom:.8rem; }
.page-hero-sub { font-size:.92rem; color:rgba(255,255,255,.75); max-width:480px; margin:0 auto; line-height:1.8; }

/* Breadcrumb */
.breadcrumb {
  padding: .9rem clamp(1rem,5vw,5rem);
  background: var(--bg-soft); border-bottom: 1px solid var(--border);
  font-size: .82rem; color: var(--text-muted);
  display: flex; align-items: center; gap: .5rem;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }

/* H3C认证入口横幅 */
.h3c-cert-entry {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  padding: 1rem clamp(1rem,5vw,5rem);
}
.h3c-cert-entry-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.h3c-cert-entry-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.h3c-cert-entry-text {
  flex: 1;
  min-width: 200px;
}
.h3c-cert-entry-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.h3c-cert-entry-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.9);
  margin-top: .25rem;
}
.h3c-cert-entry-btn {
  background: #fff;
  color: #d97706;
  font-size: .85rem;
  font-weight: 600;
  padding: .6rem 1.25rem;
  border-radius: var(--radius);
  transition: all .25s ease;
  white-space: nowrap;
}
.h3c-cert-entry-btn:hover {
  background: #fef3c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

/* ============================================================ UTILS */
.container { max-width: 1200px; margin: 0 auto; }
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.pill { display:inline-block; font-size:.7rem; font-weight:700; padding:.18rem .6rem; border-radius:100px; }
.pill-orange { background:var(--orange-light); color:var(--orange); }
.pill-blue   { background:var(--blue-light); color:var(--blue); }
.pill-green  { background:#f0fdf4; color:var(--green); }

/* ============================================================ H3C CERT PAGE */

/* H3CIE 5大优势 */
.h3c-ie-advantage { margin-bottom: 3rem; }
.h3c-ie-adv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.h3c-ie-adv-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.h3c-ie-adv-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.h3c-ie-adv-item-hot { border: 2px solid var(--orange); }
.h3c-ie-adv-icon { font-size: 1.8rem; margin-bottom: .5rem; }
.h3c-ie-adv-num { font-size: .7rem; font-weight: 700; color: var(--blue); margin-bottom: .3rem; }
.h3c-ie-adv-title { font-size: .85rem; font-weight: 700; margin-bottom: .5rem; }
.h3c-ie-adv-desc { font-size: .72rem; color: var(--text-muted); line-height: 1.5; }

/* Career Grid */
.h3c-career-section { margin-bottom: 3rem; }
.h3c-career-main-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem; text-align: center; }
.h3c-career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.h3c-career-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.h3c-career-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.h3c-career-card-featured { border: 2px solid var(--orange); }
.h3c-career-icon { font-size: 2.5rem; margin-bottom: .8rem; }
.h3c-career-title { font-weight: 700; font-size: 1rem; margin-bottom: 1rem; color: var(--text); }
.h3c-career-list { display: flex; flex-direction: column; gap: .5rem; }
.h3c-career-list span { font-size: .82rem; color: var(--text-muted); padding-left: 1rem; position: relative; }
.h3c-career-list span::before { content: '▸'; position: absolute; left: 0; color: var(--orange); }

/* Career Path */
.h3c-career-path { max-width: 900px; margin: 0 auto 3rem; }
.h3c-career-path-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; text-align: center; }
.h3c-path-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.h3c-path-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  min-width: 140px;
  transition: all .3s;
}
.h3c-path-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.h3c-path-item-center { border: 2px solid var(--blue); }
.h3c-path-item-final { border: 2px solid var(--orange); background: linear-gradient(135deg, #fff7ed, #fff); }
.h3c-path-icon { font-size: 1.8rem; margin-bottom: .5rem; }
.h3c-path-name { font-weight: 700; font-size: .88rem; margin-bottom: .3rem; }
.h3c-path-desc { font-size: .72rem; color: var(--text-muted); }
.h3c-path-arrow { font-size: 1.5rem; color: var(--orange); }
.h3c-path-note { font-size: .78rem; color: var(--blue); text-align: center; font-weight: 600; }

/* Salary Table */
.h3c-salary-section { max-width: 900px; margin: 0 auto; }
.h3c-salary-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem; text-align: center; }
.h3c-salary-table-wrapper { overflow-x: auto; }
.h3c-salary-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.h3c-salary-table th {
  background: var(--bg-soft);
  padding: .8rem;
  text-align: left;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}
.h3c-salary-table td { padding: .7rem .8rem; border-bottom: 1px solid var(--border); }
.h3c-salary-table tr:hover td { background: var(--bg-soft); }
.h3c-salary-high td { color: var(--orange); font-weight: 600; }

/* Exam Fee */
.h3c-exam-fee { max-width: 900px; margin: 0 auto 2rem; }
.h3c-exam-fee-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem; text-align: center; }
.h3c-fee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.h3c-fee-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.h3c-fee-item-hot { border: 2px solid var(--orange); }
.h3c-fee-name { font-size: .78rem; font-weight: 600; color: var(--text-muted); margin-bottom: .5rem; }
.h3c-fee-price { font-size: 1.2rem; font-weight: 700; color: var(--text); }
.h3c-fee-note { display: flex; align-items: center; justify-content: center; }
.h3c-fee-note-text { font-size: .75rem; color: var(--text-muted); }

/* Cert Path */
.h3c-cert-path {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.h3c-cert-step {
  flex: 1;
  min-width: 200px;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.h3c-cert-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.h3c-cert-badge {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--ff-serif);
  background: var(--blue);
  color: #fff;
  padding: .4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: .8rem;
}
.h3c-cert-badge-orange { background: var(--orange); }
.h3c-cert-name { font-weight: 700; font-size: .95rem; margin-bottom: .3rem; }
.h3c-cert-level { font-size: .72rem; color: var(--orange); font-weight: 700; margin-bottom: 1rem; }
.h3c-cert-info { font-size: .72rem; color: var(--text-muted); text-align: left; margin-bottom: 1rem; }
.h3c-cert-info p { padding: .2rem 0; }
.h3c-cert-desc { font-size: .75rem; color: var(--text); line-height: 1.5; }
.h3c-cert-arrow { font-size: 2rem; color: var(--orange); display: flex; align-items: center; flex-shrink: 0; }

/* Exam Grid */
.h3c-exam-section { }
.h3c-exam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}
.h3c-exam-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.h3c-exam-header {
  color: #fff;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.h3c-exam-header-blue { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.h3c-exam-header-orange { background: linear-gradient(135deg, #c2410c, #f97316); }
.h3c-exam-header-green { background: linear-gradient(135deg, #047857, #10b981); }
.h3c-exam-num { font-size: 1.5rem; font-weight: 700; opacity: .7; }
.h3c-exam-title { font-size: 1.1rem; font-weight: 700; }
.h3c-exam-body { padding: 1.2rem; }
.h3c-exam-detail { margin-bottom: 1.2rem; }
.h3c-exam-item { font-size: .8rem; color: var(--text); padding: .3rem 0; }
.h3c-exam-advantage { background: var(--bg-soft); padding: 1rem; border-radius: var(--radius-sm); }
.h3c-exam-adv-title { font-size: .82rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.h3c-exam-advantage ul { font-size: .78rem; }
.h3c-exam-advantage li { padding: .25rem 0; }
.h3c-exam-content { }
.h3c-exam-content-title { font-size: .85rem; font-weight: 700; color: var(--text); margin-bottom: .8rem; }
.h3c-exam-lab { background: var(--bg-soft); padding: 1rem; border-radius: var(--radius-sm); }
.h3c-exam-lab-item { font-size: .78rem; color: var(--text); padding: .3rem 0; border-bottom: 1px dashed var(--border); }
.h3c-exam-lab-item:last-child { border-bottom: none; }
.h3c-exam-interview { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.h3c-exam-interview-item { font-size: .78rem; background: var(--bg-soft); padding: .4rem .8rem; border-radius: 100px; }
.h3c-exam-tech { background: #fff7ed; padding: .8rem; border-radius: var(--radius-sm); font-size: .75rem; }
.h3c-exam-tech strong { color: var(--orange); }
.h3c-exam-tech p { color: var(--text-muted); margin-top: .3rem; }

/* Exam Location */
.h3c-exam-location { max-width: 900px; margin: 0 auto; }
.h3c-exam-location h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; text-align: center; }
.h3c-location-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.h3c-location-item { background: #fff; padding: 1.2rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); text-align: center; }
.h3c-location-icon { font-size: 2rem; margin-bottom: .8rem; }
.h3c-location-title { font-weight: 700; font-size: .88rem; margin-bottom: .5rem; }
.h3c-location-desc { font-size: .75rem; color: var(--text-muted); line-height: 1.5; }

/* Timeline */
.h3c-timeline {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.h3c-timeline-item {
  flex: 1;
  min-width: 160px;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.h3c-timeline-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.h3c-timeline-item-last { border: 2px solid var(--orange); }
.h3c-timeline-time { font-size: .7rem; font-weight: 700; color: var(--blue); margin-bottom: .5rem; }
.h3c-timeline-title { font-weight: 700; font-size: .88rem; margin-bottom: .3rem; }
.h3c-timeline-desc { font-size: .72rem; color: var(--text-muted); margin-bottom: .8rem; }
.h3c-timeline-modules { display: flex; flex-wrap: wrap; gap: .3rem; }
.h3c-timeline-modules span { font-size: .62rem; background: var(--bg-soft); padding: .2rem .4rem; border-radius: 4px; }
.h3c-timeline-arrow { font-size: 1.5rem; color: var(--orange); display: flex; align-items: center; flex-shrink: 0; }

/* Study Plan */
.h3c-study-plan { max-width: 1100px; margin: 0 auto 3rem; }
.h3c-study-plan-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; text-align: center; }
.h3c-study-flow {
  display: flex;
  align-items: stretch;
  gap: .5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.h3c-study-step {
  flex: 1;
  min-width: 150px;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .3s;
}
.h3c-study-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.h3c-study-step-hot { border: 2px solid var(--blue); }
.h3c-study-step-final { border: 2px solid var(--orange); background: linear-gradient(135deg, #fff7ed, #fff); }
.h3c-study-num { font-size: .7rem; font-weight: 700; color: var(--blue); margin-bottom: .3rem; }
.h3c-study-time { font-size: .65rem; background: var(--blue-light); color: var(--blue); padding: .15rem .5rem; border-radius: 100px; display: inline-block; margin-bottom: .5rem; }
.h3c-study-name { font-weight: 700; font-size: .95rem; margin-bottom: .3rem; }
.h3c-study-key { font-size: .72rem; color: var(--orange); font-weight: 600; margin-bottom: .5rem; }
.h3c-study-tips { display: flex; flex-direction: column; gap: .3rem; }
.h3c-study-tips span { font-size: .65rem; color: var(--text-muted); background: var(--bg-soft); padding: .2rem .4rem; border-radius: 4px; }
.h3c-study-arrow { font-size: 1.5rem; color: var(--orange); display: flex; align-items: center; flex-shrink: 0; }
.h3c-study-note { font-size: .78rem; color: var(--blue); text-align: center; font-weight: 600; background: var(--blue-light); padding: .5rem 1rem; border-radius: var(--radius-sm); }

/* Hover Dropdown - 悬停子界面 */
.h3c-hover-dropdown {
  position: relative;
  margin-bottom: 1.5rem;
}
.h3c-hover-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.h3c-hover-tab {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  border: 2px solid var(--border);
  color: var(--text);
  transition: all .25s ease;
  position: relative;
}
.h3c-hover-tab:hover,
.h3c-hover-tab.active {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 4px 12px rgba(10, 110, 189, 0.15);
  transform: translateY(-2px);
}
.h3c-hover-tab.active {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  border-color: var(--blue);
}
.h3c-hover-arrow {
  font-size: .7rem;
  transition: transform .25s ease;
}
.h3c-hover-tab:hover .h3c-hover-arrow {
  transform: rotate(180deg);
}

/* Hover Panels */
.h3c-hover-panel {
  display: none;
  margin-top: 1rem;
  padding: 1.5rem;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  animation: fadeInUp .3s ease;
}
.h3c-hover-panel.active {
  display: block;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 1v1就业陪跑样式 */
.h3c-career-support {
  max-width: 1000px;
  margin: 0 auto;
}
.h3c-career-support-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px dashed var(--border);
}
.h3c-career-support-icon {
  font-size: 2rem;
}
.h3c-career-support-header h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.h3c-career-support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.h3c-career-support-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .25s ease;
}
.h3c-career-support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.h3c-career-support-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: .5rem;
}
.h3c-career-support-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.h3c-career-support-list {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.h3c-career-support-list li {
  padding: .15rem 0;
  padding-left: .6rem;
  position: relative;
}
.h3c-career-support-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

/* 就业流程 */
.h3c-career-support-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  padding: 1rem;
  background: linear-gradient(135deg, var(--blue-light), #fff);
  border-radius: var(--radius);
}
.h3c-career-flow-item {
  padding: .5rem 1rem;
  background: #fff;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
  border: 1px solid var(--blue);
}
.h3c-career-flow-final {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  border-color: var(--orange);
}

/* Module Tabs */
.h3c-modules-detail { max-width: 1100px; margin: 0 auto 2rem; }
.h3c-modules-title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; text-align: center; }
.h3c-modules-tabs { display: flex; justify-content: center; gap: .5rem; margin-bottom: 1.5rem; }
.h3c-module-tab {
  padding: .6rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  transition: all .2s;
}
.h3c-module-tab:hover { border-color: var(--blue); color: var(--blue); }
.h3c-module-tab.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.h3c-module-content { display: none; }
.h3c-module-content.active { display: block; }
.h3c-module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.h3c-module-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.h3c-mod-title { font-weight: 700; font-size: .85rem; color: var(--text); margin-bottom: .8rem; padding-bottom: .5rem; border-bottom: 1px dashed var(--border); }
.h3c-mod-list { font-size: .72rem; color: var(--text-muted); line-height: 1.8; }
.h3c-mod-list li { padding: .15rem 0; padding-left: .8rem; position: relative; }
.h3c-mod-list li::before { content: '▸'; position: absolute; left: 0; color: var(--blue); font-size: .65rem; }

/* LAB/Interview Plan */
.h3c-lab-plan, .h3c-interview-plan { max-width: 800px; margin: 0 auto 2rem; }
.h3c-lab-plan h4, .h3c-interview-plan h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; text-align: center; }
.h3c-lab-note, .h3c-interview-note { font-size: .72rem; color: var(--text-muted); text-align: center; margin-bottom: 1rem; }
.h3c-lab-schedule {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.h3c-lab-item { font-size: .82rem; }
.h3c-lab-item strong { color: var(--blue); }
.h3c-lab-item-final strong { color: var(--orange); }
.h3c-lab-tip { font-size: .72rem; color: var(--text-muted); text-align: center; margin-top: .8rem; background: var(--blue-light); padding: .5rem 1rem; border-radius: var(--radius-sm); }
.h3c-interview-schedule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
}
.h3c-interview-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.h3c-interview-phase { font-size: .65rem; font-weight: 700; color: var(--blue); margin-bottom: .3rem; }
.h3c-interview-topic { font-size: .72rem; color: var(--text); margin-bottom: .5rem; line-height: 1.4; }
.h3c-interview-days { font-size: .88rem; font-weight: 700; color: var(--orange); }

/* Service Advantage */
.h3c-service-section { }
.h3c-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
}
.h3c-advantage-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.h3c-advantage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.h3c-advantage-card-wide { grid-column: span 1; }
.h3c-advantage-icon { font-size: 2rem; margin-bottom: 1rem; }
.h3c-advantage-title { font-weight: 700; font-size: .95rem; margin-bottom: 1rem; color: var(--text); }
.h3c-advantage-list { font-size: .78rem; }
.h3c-advantage-list li { padding: .35rem 0; color: var(--text-muted); border-bottom: 1px dashed var(--border); line-height: 1.5; }
.h3c-advantage-list li:last-child { border-bottom: none; }

/* Training Flow */
.h3c-training-flow { max-width: 1100px; margin: 0 auto 3rem; }
.h3c-training-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; text-align: center; }
.h3c-training-steps {
  display: flex;
  align-items: stretch;
  gap: .5rem;
  overflow-x: auto;
  padding-bottom: .5rem;
}
.h3c-training-step {
  flex: 1;
  min-width: 180px;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .3s;
}
.h3c-training-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.h3c-training-step-final { border: 2px solid var(--orange); background: linear-gradient(135deg, #fff7ed, #fff); }
.h3c-training-icon { font-size: 1.8rem; margin-bottom: .5rem; }
.h3c-training-name { font-weight: 700; font-size: .85rem; margin-bottom: .3rem; color: var(--text); }
.h3c-training-desc { font-size: .65rem; color: var(--text-muted); line-height: 1.4; }
.h3c-training-arrow { font-size: 1.5rem; color: var(--orange); display: flex; align-items: center; flex-shrink: 0; }

/* Cert Flow */
.h3c-cert-flow { max-width: 800px; margin: 0 auto 3rem; }
.h3c-cert-flow-title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; text-align: center; }
.h3c-cert-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
}
.h3c-cert-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  min-width: 120px;
  transition: all .3s;
}
.h3c-cert-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.h3c-cert-step-icon { font-size: 1.5rem; margin-bottom: .3rem; }
.h3c-cert-step-name { font-weight: 700; font-size: .8rem; color: var(--text); }
.h3c-cert-step-desc { font-size: .65rem; color: var(--text-muted); }
.h3c-cert-arrow { font-size: 1.2rem; color: var(--orange); }

/* 就业双通道 */
.h3c-career-path-section {
  max-width: 1000px;
  margin: 0 auto 3rem;
}
.h3c-career-path-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.h3c-career-path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.h3c-career-path-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
  transition: all .3s ease;
}
.h3c-career-path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.h3c-career-path-card-warm {
  border-color: #f59e0b;
  background: linear-gradient(135deg, #fffbeb 0%, #fff 100%);
}
.h3c-career-path-card-hot {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue-light) 0%, #fff 100%);
}
.h3c-career-path-card h3c-career-path-icon,
.h3c-career-path-icon {
  font-size: 2.5rem;
  margin-bottom: .75rem;
}
.h3c-career-path-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}
.h3c-career-path-card-desc {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--border);
}
.h3c-career-path-features {
  font-size: .8rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.h3c-career-path-features li {
  padding: .3rem 0;
}
.h3c-career-path-features strong {
  color: var(--blue);
}
.h3c-career-path-tag {
  font-size: .75rem;
  color: var(--text-muted);
  background: rgba(0,0,0,.05);
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

/* Process Flow */
.h3c-process-section { max-width: 1100px; margin: 0 auto; }
.h3c-process-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem; text-align: center; }
.h3c-process-flow {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}
.h3c-process-step {
  flex: 1;
  min-width: 80px;
  max-width: 110px;
  background: #fff;
  border-radius: var(--radius);
  padding: .75rem .5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.h3c-process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.h3c-process-step-final { background: linear-gradient(135deg, var(--orange), #c2410c); color: #fff; }
.h3c-process-step-final .h3c-process-num { background: #fff; color: var(--orange); }
.h3c-process-step-final .h3c-process-name,
.h3c-process-step-final .h3c-process-desc { color: #fff; }
.h3c-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.h3c-process-name { font-size: .78rem; font-weight: 700; margin-bottom: .2rem; }
.h3c-process-desc { font-size: .65rem; color: var(--text-muted); }

/* Comparison */
.h3c-compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.h3c-compare-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.h3c-compare-header {
  padding: 1rem;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}
.h3c-compare-card-good .h3c-compare-header { background: #dcfce7; color: #15803d; }
.h3c-compare-card-bad .h3c-compare-header { background: #fef2f2; color: #991b1b; }
.h3c-compare-body { padding: 1rem; }
.h3c-compare-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: .8rem;
  padding: .6rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: .78rem;
}
.h3c-compare-item:last-child { border-bottom: none; }
.h3c-compare-label { font-weight: 700; color: var(--text-muted); }
.h3c-compare-value { color: var(--text); line-height: 1.4; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .h3c-advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .h3c-ie-adv-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-menu, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .steps-grid::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .h3c-advantage-grid { grid-template-columns: 1fr; }
  .h3c-ie-adv-grid { grid-template-columns: repeat(2, 1fr); }
  .h3c-path-flow { flex-direction: column; align-items: center; }
  .h3c-path-arrow { transform: rotate(90deg); }
  .h3c-study-flow { flex-direction: column; }
  .h3c-study-arrow { transform: rotate(90deg); }
  .h3c-training-steps { flex-direction: column; }
  .h3c-training-arrow { transform: rotate(90deg); }
  .h3c-cert-steps { flex-wrap: wrap; }
  /* 悬停子界面响应式 */
  .h3c-hover-tabs { flex-direction: column; align-items: stretch; }
  .h3c-hover-tab { justify-content: center; }
  .h3c-career-support-grid { grid-template-columns: repeat(2, 1fr); }
  /* 就业双通道响应式 */
  .h3c-career-path-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btn-main, .hero-btn-ghost { width: 100%; text-align: center; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .h3c-ie-adv-grid { grid-template-columns: 1fr; }
  .h3c-modules-tabs { flex-direction: column; }
  /* 悬停子界面响应式 */
  .h3c-career-support-grid { grid-template-columns: 1fr; }
  .h3c-career-support-flow { flex-direction: column; gap: .5rem; }
  .h3c-career-flow-item { width: 100%; text-align: center; }
}

/* ==================== 痛点切换 ==================== */
.emp-pain-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.emp-pain-tab {
  padding: .75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  background: #e2e8f0;
  color: #64748b;
  transition: all .3s;
}
.emp-pain-tab:hover { background: #cbd5e1; }
.emp-pain-tab.active {
  background: linear-gradient(135deg, #f47920, #d4560a);
  color: #fff;
}
.emp-pain-content { display: none; }
.emp-pain-content.active { display: block; }
.emp-pain-conclusion {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: 10px;
  border-left: 4px solid #22c55e;
  color: #166534;
  line-height: 1.7;
}
.emp-pain-conclusion mark {
  background: #bbf7d0;
  padding: .1rem .3rem;
  border-radius: 4px;
}

/* ==================== 服务流程 ==================== */
.emp-phase-intro {
  text-align: center;
  color: #64748b;
  margin-bottom: 1.5rem;
  font-size: .95rem;
}
.emp-phase-duration {
  font-size: .85rem;
  color: #64748b;
  margin-bottom: .75rem;
}
.emp-phase-details {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.emp-pd-item {
  font-size: .85rem;
  color: #475569;
  line-height: 1.5;
}
.emp-pd-item strong {
  color: #0a6ebd;
}

/* ==================== 面试题库增强 ==================== */
.emp-interview-intro {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  color: #1e40af;
  font-size: .9rem;
  text-align: center;
}
.emp-interview-extras {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.emp-ie-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  background: #f8fafc;
  border-radius: 8px;
  font-size: .9rem;
  color: #475569;
}

/* ==================== 简历优化对比 ==================== */
.emp-resume-compare {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
}
.emp-resume-intro {
  text-align: center;
  color: #64748b;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.emp-resume-grid {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.emp-resume-card {
  flex: 1;
  max-width: 48%;
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.emp-resume-card-before {
  border: 2px solid #ef4444;
}
.emp-resume-card-after {
  border: 2px solid #22c55e;
}
.emp-resume-label {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-align: center;
}
.emp-resume-card-before .emp-resume-label { color: #ef4444; }
.emp-resume-card-after .emp-resume-label { color: #22c55e; }
.emp-resume-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: contain;
}
.emp-resume-tag {
  margin-top: 0.75rem;
  padding: .5rem;
  border-radius: 6px;
  font-size: 0.85rem;
  text-align: center;
}
.emp-resume-tag-red {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.emp-resume-tag-green {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}
.emp-resume-arrow {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: #f47920;
  font-weight: bold;
  padding-top: 80px;
}
.emp-resume-keys {
  background: #fff;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  border-left: 3px solid #f47920;
}
.emp-resume-key-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}
.emp-resume-key-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.emp-resume-key-item {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.5;
}
.emp-resume-key-item strong {
  color: #0a6ebd;
}

@media (max-width: 768px) {
  .emp-resume-grid {
    flex-direction: column;
    align-items: center;
  }
  .emp-resume-arrow {
    transform: rotate(90deg);
    padding-top: 0;
    margin: .5rem 0;
  }
  .emp-resume-card {
    max-width: 100%;
  }
  .emp-resume-key-list {
    grid-template-columns: 1fr;
  }
}

/* ==================== 服务流程可视化 ==================== */
.emp-flow-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  text-align: center;
}

.emp-flow-intro {
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.emp-flow-timeline {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.emp-flow-step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  padding: 30px 24px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
  transition: all 0.3s ease;
}

.emp-flow-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(16, 185, 129, 0.15);
}

.emp-flow-step-highlight {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.emp-flow-step-highlight:hover {
  box-shadow: 0 16px 48px rgba(16, 185, 129, 0.3);
}

.emp-flow-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.emp-flow-step-highlight .emp-flow-icon {
  background: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.emp-flow-icon svg {
  width: 100%;
  height: 100%;
  color: white;
}

.emp-flow-step-highlight .emp-flow-icon svg {
  color: #10b981;
}

.emp-flow-number {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #10b981;
  background: #ecfdf5;
  padding: 5px 12px;
  border-radius: 20px;
}

.emp-flow-step-highlight .emp-flow-number {
  background: rgba(255,255,255,0.25);
  color: white;
}

.emp-flow-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
}

.emp-flow-step p {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.emp-flow-step-highlight p,
.emp-flow-step-highlight li {
  color: rgba(255,255,255,0.9);
}

.emp-flow-step-highlight h3 {
  color: white;
}

.emp-flow-detail {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  background: #f8fafc;
  border-radius: 12px;
  padding: 12px 16px;
}

.emp-flow-step-highlight .emp-flow-detail {
  background: rgba(255,255,255,0.15);
}

.emp-flow-detail li {
  color: #475569;
  font-size: 0.9rem;
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
}

.emp-flow-detail li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.emp-flow-step-highlight .emp-flow-detail li::before {
  color: white;
}

.emp-flow-connector {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  flex-shrink: 0;
}

.emp-flow-connector svg {
  width: 100%;
  height: 24px;
}

.emp-flow-summary {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e2e8f0;
}

.emp-flow-stat {
  text-align: center;
}

.emp-flow-stat-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.emp-flow-stat-label {
  display: block;
  color: #64748b;
  font-size: 0.95rem;
  margin-top: 8px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.emp-flow-step:hover .emp-flow-icon {
  animation: float 1s ease-in-out infinite;
}

@media (max-width: 900px) {
  .emp-flow-timeline {
    flex-direction: column;
    align-items: center;
  }
  .emp-flow-step {
    max-width: 100%;
    width: 100%;
  }
  .emp-flow-connector {
    transform: rotate(90deg);
    height: 40px;
    width: 40px;
  }
  .emp-flow-summary {
    gap: 30px;
    flex-wrap: wrap;
  }
  .emp-flow-stat-num {
    font-size: 2.2rem;
  }
}

/* ==================== 面试题库真实截图展示 ==================== */
.emp-interview-showcase {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  margin: 30px auto;
  max-width: 900px;
}

.emp-interview-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.badge-icon {
  font-size: 1.2rem;
}

.emp-interview-screenshot {
  text-align: center;
}

.emp-interview-screenshot img {
  max-width: 100%;
  max-height: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1px solid #e2e8f0;
}

.emp-interview-caption {
  margin-top: 14px;
  color: #64748b;
  font-size: 0.9rem;
}

.emp-interview-stats-inline {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #e2e8f0;
}

.emp-isi-item {
  text-align: center;
}

.emp-isi-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.emp-isi-item span:last-child {
  display: block;
  color: #64748b;
  font-size: 0.85rem;
  margin-top: 6px;
}

@media (max-width: 600px) {
  .emp-interview-showcase {
    padding: 24px;
    border-radius: 16px;
  }
  .emp-interview-stats-inline {
    gap: 20px;
    flex-wrap: wrap;
  }
  .emp-isi-num {
    font-size: 1.6rem;
  }
}

/* ==================== 薪资分布图展示 ==================== */
.emp-salary-chart {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-top: 30px;
}

.emp-salary-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.emp-salary-chart-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
}

.emp-salary-chart-note {
  color: #64748b;
  font-size: 0.9rem;
}

.emp-salary-chart-img {
  text-align: center;
}

.emp-salary-chart-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border: 1px solid #e2e8f0;
}

@media (max-width: 600px) {
  .emp-salary-chart {
    padding: 20px;
  }
  .emp-salary-chart-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==================== 页面章节分隔标题 ==================== */
.emp-part-header {
  text-align: center;
  padding: 60px 20px 40px;
  margin-bottom: 30px;
  position: relative;
}

.emp-part-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 12px;
  opacity: 0.7;
}

.emp-part-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.emp-part-desc {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* PART 01 - 这是什么？蓝色系 */
.emp-part-what {
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 50%, transparent 100%);
}

.emp-part-what .emp-part-label {
  color: #0a6ebd;
}

.emp-part-what .emp-part-title {
  color: #0369a1;
}

/* PART 02 - 我们怎么做的？绿色系 */
.emp-part-how {
  background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 50%, transparent 100%);
}

.emp-part-how .emp-part-label {
  color: #10b981;
}

.emp-part-how .emp-part-title {
  color: #059669;
}

/* PART 03 - 有什么案例？橙色系 */
.emp-part-proof {
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 50%, transparent 100%);
}

.emp-part-proof .emp-part-label {
  color: #f47920;
}

.emp-part-proof .emp-part-title {
  color: #d4560a;
}

@media (max-width: 768px) {
  .emp-part-header {
    padding: 40px 20px 30px;
  }
  .emp-part-title {
    font-size: 1.6rem;
  }
  .emp-part-desc {
    font-size: 1rem;
  }
}
