/* 中国政法大学企业合规师 - 传统架构样式 */

/* ===== 基础重置 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Microsoft YaHei', 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #334155;
  background: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== 变量定义 ===== */
:root {
  --primary: #1e3a5f;
  --primary-dark: #152a45;
  --primary-light: #2d5a87;
  --gold: #c9a227;
  --gold-dark: #b8921f;
  --text-dark: #1e293b;
  --text-gray: #64748b;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --bg-gray: #f1f5f9;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ===== 容器 ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== 导航栏 ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 15px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 10px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}

.navbar.scrolled .logo-icon {
  background: var(--primary);
}

.logo-text {
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.navbar.scrolled .logo-text {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
}

.nav-menu a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  transition: all 0.3s;
}

.navbar.scrolled .nav-menu a {
  color: var(--text-dark);
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.navbar.scrolled .nav-menu a:hover {
  background: var(--bg-gray);
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--gold);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .btn-outline {
  color: var(--primary);
  border-color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.navbar.scrolled .mobile-menu-btn {
  color: var(--primary);
}

/* ===== Hero区域 ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(30, 58, 95, 0.75) 100%),
              url('../images/hero-bg.jpg') center/cover no-repeat;
  padding: 100px 0 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--white);
  font-size: 13px;
  margin-bottom: 24px;
}

.hero-badge i {
  color: var(--gold);
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-icon {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: rgba(201, 162, 39, 0.2);
  border-radius: 20px;
  filter: blur(30px);
}

.hero-image img {
  position: relative;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator .wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== 通用区块样式 ===== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(30, 58, 95, 0.1);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== 政策背景 ===== */
.policy-section {
  background: var(--bg-light);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.policy-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.policy-card:hover {
  box-shadow: var(--shadow-lg);
}

.policy-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.policy-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}

.policy-year {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.policy-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.policy-card-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

.local-policy {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.local-policy-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.local-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.local-policy-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: 8px;
  font-size: 14px;
}

.local-policy-item .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.local-policy-item .region {
  font-weight: 600;
  color: var(--primary);
}

.local-policy-item .desc {
  color: var(--text-gray);
  font-size: 13px;
}

/* ===== 行业需求 ===== */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.role-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.role-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.role-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  margin: 0 auto 16px;
}

.role-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.role-desc {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

.market-data {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 48px;
  margin-bottom: 48px;
}

.market-data-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 32px;
}

.market-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.market-data-item {
  text-align: center;
}

.market-data-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 28px;
  margin: 0 auto 16px;
}

.market-data-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.market-data-item p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.career-path {
  text-align: center;
}

.career-path-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 32px;
}

.career-path-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.career-step {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 24px 32px;
  min-width: 200px;
  transition: all 0.3s;
}

.career-step:hover {
  background: var(--primary);
}

.career-step .level {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.career-step:hover .level {
  color: var(--white);
}

.career-step .desc {
  font-size: 13px;
  color: var(--text-gray);
}

.career-step:hover .desc {
  color: rgba(255, 255, 255, 0.9);
}

.career-arrow {
  width: 32px;
  height: 2px;
  background: var(--gold);
}

/* ===== 主办单位 ===== */
.university-section {
  background: var(--primary);
  color: var(--white);
}

.university-section .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.university-section .section-title {
  color: var(--white);
}

.university-section .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.university-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.university-image {
  position: relative;
}

.university-image::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: rgba(201, 162, 39, 0.2);
  border-radius: 20px;
  filter: blur(20px);
}

.university-image img {
  position: relative;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.university-info p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.university-highlights {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.highlight-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.highlight-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.honors-section {
  margin-top: 48px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
}

.honors-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.honors-title i {
  color: var(--gold);
}

.honors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.honor-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.honor-item i {
  color: var(--gold);
  font-size: 14px;
}

/* ===== 课程体系 ===== */
.courses-section {
  background: var(--bg-light);
}

.course-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.responsibilities {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}

.responsibilities-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.responsibilities-title i {
  color: var(--primary);
}

.responsibilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.responsibility-item {
  display: flex;
  gap: 12px;
}

.responsibility-num {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.responsibility-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.responsibility-content p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
}

.course-levels {
  text-align: center;
}

.course-levels-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.level-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.level-tab {
  padding: 10px 32px;
  background: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.3s;
}

.level-tab:hover {
  background: var(--bg-gray);
}

.level-tab.active {
  background: var(--primary);
  color: var(--white);
}

.level-content {
  display: none;
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: left;
}

.level-content.active {
  display: block;
}

.level-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.level-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.level-header p {
  font-size: 14px;
  color: var(--text-gray);
}

.level-hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 50px;
  color: var(--gold);
  font-weight: 700;
}

.level-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.module-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-dark);
}

.module-item i {
  color: var(--primary);
}

/* ===== 项目优势 ===== */
.advantages-section {
  background: var(--white);
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.authority-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.authority-card:hover {
  box-shadow: var(--shadow-lg);
}

.authority-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 16px;
}

.authority-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.authority-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.faculty-section {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 48px;
}

.faculty-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.faculty-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.faculty-header span {
  font-size: 14px;
  color: var(--text-gray);
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.faculty-item {
  display: flex;
  gap: 12px;
}

.faculty-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.faculty-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.faculty-content p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.support-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.support-card:hover {
  box-shadow: var(--shadow-lg);
}

.support-icon {
  width: 48px;
  height: 48px;
  background: rgba(30, 58, 95, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  margin: 0 auto 12px;
}

.support-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.support-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
}

.differentiators {
  background: var(--primary);
  border-radius: 16px;
  padding: 32px;
}

.differentiators-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 24px;
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.differentiator-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 24px;
}

.differentiator-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.differentiator-header .icon {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
}

.differentiator-header h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.differentiator-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* ===== 招生对象 ===== */
.enrollment-section {
  background: var(--bg-light);
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.target-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.target-card:hover {
  box-shadow: var(--shadow-lg);
}

.target-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 16px;
}

.target-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.target-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.7;
}

.faculty-team {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.faculty-team-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.faculty-team-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.faculty-team-header span {
  font-size: 14px;
  color: var(--text-gray);
}

.faculty-members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.faculty-member {
  text-align: center;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 12px;
}

.faculty-avatar {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 12px;
}

.faculty-member h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.faculty-member p {
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 4px;
}

.faculty-member .specialty {
  font-size: 11px;
  color: var(--gold);
}

.faculty-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.faculty-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.faculty-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 58, 95, 0.9) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.faculty-image-overlay h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.faculty-image-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== 考试体系 ===== */
.exam-section {
  background: var(--white);
}

.exam-steps {
  margin-bottom: 48px;
}

.exam-steps-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.step-item {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s;
}

.step-item:hover {
  background: rgba(30, 58, 95, 0.05);
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  margin: 0 auto 12px;
}

.step-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.step-item p {
  font-size: 12px;
  color: var(--text-gray);
}

.exam-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.exam-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.exam-info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.exam-info-header i {
  color: var(--gold);
  font-size: 20px;
}

.exam-info-header h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.exam-info-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.exam-checklist {
  list-style: none;
}

.exam-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.exam-checklist li i {
  color: #22c55e;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.requirement-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.requirement-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.requirement-level {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.requirement-header h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.requirement-card > p {
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.requirement-list {
  list-style: none;
}

.requirement-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.requirement-list li i {
  color: #22c55e;
  margin-top: 2px;
}

.restriction-card {
  background: #fef2f2;
  border-radius: 12px;
  padding: 24px;
}

.restriction-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.restriction-header i {
  color: #ef4444;
  font-size: 20px;
}

.restriction-header h4 {
  font-size: 16px;
  font-weight: 700;
  color: #991b1b;
}

.restriction-card > p {
  font-size: 13px;
  color: #dc2626;
  margin-bottom: 12px;
}

.restriction-list {
  list-style: none;
}

.restriction-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #dc2626;
  margin-bottom: 8px;
}

.restriction-list li i {
  margin-top: 2px;
}

/* ===== 合作案例 ===== */
.cases-section {
  background: var(--primary);
  color: var(--white);
}

.cases-section .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.cases-section .section-title {
  color: var(--white);
}

.cases-section .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.case-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
}

.case-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.case-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
}

.case-title h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.case-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.case-card > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 16px;
}

.case-highlights h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.case-highlights ul {
  list-style: none;
  margin-bottom: 16px;
}

.case-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.case-highlights li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.case-feedback {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  gap: 12px;
}

.case-feedback i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.case-feedback p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  line-height: 1.5;
}

.training-showcase {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.training-showcase img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.training-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 58, 95, 0.9) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.training-showcase-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.training-showcase-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Footer ===== */
.footer-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 64px 0;
  text-align: center;
}

.footer-cta h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-cta h2 span {
  color: var(--gold);
}

.footer-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.footer-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-main {
  background: #0f1f33;
  padding: 64px 0 32px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
}

.footer-brand-title h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-title p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-website {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-item i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
}

.contact-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-image {
    display: none;
  }
  
  .hero-desc {
    margin: 0 auto 32px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .university-content {
    grid-template-columns: 1fr;
  }
  
  .university-image {
    order: -1;
  }
  
  .policy-grid,
  .roles-grid,
  .course-features,
  .authority-grid,
  .target-grid,
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .local-policy-grid,
  .responsibilities-grid,
  .honors-grid,
  .faculty-grid,
  .support-grid,
  .requirements-grid,
  .differentiators-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .market-data-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .career-path-flow {
    flex-direction: column;
  }
  
  .career-arrow {
    width: 2px;
    height: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .navbar .btn {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .policy-grid,
  .roles-grid,
  .course-features,
  .authority-grid,
  .target-grid,
  .cases-grid,
  .exam-info-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }
  
  .local-policy-grid,
  .responsibilities-grid,
  .honors-grid,
  .faculty-grid,
  .support-grid,
  .differentiators-grid,
  .market-data-grid,
  .steps-grid,
  .faculty-members {
    grid-template-columns: 1fr;
  }
  
  .level-modules {
    grid-template-columns: 1fr;
  }
  
  .level-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ===== 动画 ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 移动端菜单 ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  padding: 80px 24px 24px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu-list {
  list-style: none;
}

.mobile-menu-list li {
  margin-bottom: 8px;
}

.mobile-menu-list a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-dark);
  border-radius: 8px;
  transition: all 0.3s;
}

.mobile-menu-list a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
}
