/* =========================================================
   CCAA 注册审核员报考中心
   全局样式 · 深墨绿+翡翠绿+暖金 · 高端专业风格
   ========================================================= */

:root {
  --brand-dark: #0d3b2e;        /* 主深墨绿 */
  --brand-green: #1a7a5c;       /* 翡翠绿 */
  --brand-light: #e8f3ee;       /* 浅绿底 */
  --accent-gold: #d4a843;       /* 暖金 */
  --accent-gold-light: #f0dca8; /* 浅金 */
  --accent-orange: #e8734a;     /* 珊瑚橙（CTA） */
  --ink-1: #1a2e26;             /* 主文字 */
  --ink-2: #4a5e54;             /* 次文字 */
  --ink-3: #8a9a90;             /* 弱文字 */
  --line: #e2e8e4;              /* 描边 */
  --bg-soft: #f5f2ec;           /* 浅米色段 */
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 20px rgba(13, 59, 46, .06);
  --shadow-md: 0 14px 40px rgba(13, 59, 46, .10);
  --shadow-green: 0 20px 50px rgba(13, 59, 46, .20);
  --maxw: 1200px;
  --font-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", "STSong", Georgia, serif;
  --font-sans: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Source Han Sans CN", "Noto Sans CJK SC", "微软雅黑", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--ink-1);
  background: var(--white);
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* 通用容器 */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== 顶部条 ===================== */
.topbar {
  background: var(--brand-dark);
  color: #b8cdc4;
  font-size: 13px;
  position: relative;
  overflow: hidden;
}
.topbar::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,.08));
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  position: relative;
  z-index: 2;
}
.topbar a { color: #b8cdc4; transition: .2s; }
.topbar a:hover { color: var(--accent-gold); }
.topbar .tb-left span { margin-right: 22px; display: inline-flex; align-items: center; gap: 6px; }
.topbar .tb-left i { color: var(--accent-gold); font-style: normal; font-size: 10px; }
.topbar .tb-right { display: flex; align-items: center; gap: 18px; }
.topbar .tb-cta {
  background: linear-gradient(135deg, var(--accent-orange), #d45a2e);
  color: #fff !important;
  padding: 6px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(232,115,74,.35);
  transition: .25s;
}
.topbar .tb-cta:hover { color: #fff !important; filter: brightness(1.08); transform: translateY(-1px); }

/* ===================== 头部导航 ===================== */
.header {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 24px rgba(13,59,46,.06);
  border-bottom: 1px solid rgba(226,232,228,.8);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo .mark {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-green));
  color: #fff; font-weight: 800; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-green);
  font-family: var(--font-serif);
  position: relative;
}
.logo .mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(212,168,67,.4);
  border-radius: 10px;
}
.logo .txt { white-space: nowrap; }
.logo .txt b {
  font-size: 20px;
  color: var(--brand-dark);
  letter-spacing: 1px;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-weight: 700;
}
.logo .txt span {
  display: block;
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 2.5px;
  white-space: nowrap;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 2px; white-space: nowrap; }
.nav a {
  padding: 10px 16px;
  font-size: 15px;
  color: var(--ink-2);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: .2s;
  white-space: nowrap;
  position: relative;
}
.nav a:hover, .nav a.active {
  color: var(--brand-green);
  background: var(--brand-light);
}
.nav a.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent-gold);
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 26px; height: 3px; background: var(--brand-dark); border-radius: 3px; transition: .3s; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  width: 100%;
  background:
    radial-gradient(ellipse 800px 500px at 85% 0%, rgba(26,122,92,.4), transparent 60%),
    radial-gradient(ellipse 600px 400px at 5% 100%, rgba(212,168,67,.18), transparent 55%),
    linear-gradient(135deg, #08281e 0%, #0d3b2e 50%, #13523f 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: .8;
}
.hero::after {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,.12), transparent 70%);
}
.hero .container {
  position: relative; z-index: 2;
  padding: 90px 24px 80px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: center;
}
.hero .eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,.15);
  border: 1px solid rgba(212,168,67,.35);
  color: var(--accent-gold-light);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.hero .eyebrow-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}
.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: var(--font-serif);
}
.hero h1 .hl {
  color: var(--accent-gold);
  position: relative;
}
.hero h1 .hl::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  border-radius: 3px;
}
.hero .sub {
  font-size: 18px;
  color: #c8d8d0;
  max-width: 580px;
  margin-bottom: 16px;
  line-height: 1.85;
}
.hero .badges { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 32px; }
.hero .badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 16px; border-radius: 999px; font-size: 13.5px; color: #dce8e2;
  display: inline-flex; align-items: center; gap: 6px;
  transition: .25s;
}
.hero .badge:hover {
  background: rgba(212,168,67,.12);
  border-color: rgba(212,168,67,.4);
  color: var(--accent-gold-light);
}
.hero .badge svg { width: 14px; height: 14px; }
.hero .btns { display: flex; gap: 18px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 34px; border-radius: 999px; font-size: 16px; font-weight: 700;
  transition: .3s; cursor: pointer; border: 0; font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: linear-gradient(135deg, #e6be6a, var(--accent-gold));
  color: #3a2a0a;
  box-shadow: 0 12px 30px rgba(212,168,67,.4);
}
.btn-gold:hover { filter: brightness(1.06); transform: translateY(-3px); box-shadow: 0 16px 36px rgba(212,168,67,.5); }
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.55); transform: translateY(-2px); }

/* hero 右侧卡片 */
.hero-card {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  color: var(--ink-1);
  box-shadow: var(--shadow-green);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand-green), var(--accent-gold));
}
.hero-card h3 {
  font-size: 19px;
  color: var(--brand-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
}
.hero-card h3 .icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.hero-card .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
}
.hero-card .row:last-of-type { border-bottom: 0; }
.hero-card .row span { color: var(--ink-2); }
.hero-card .row b { color: var(--brand-green); font-weight: 700; }
.hero-card .mini-btn {
  margin-top: 22px;
  width: 100%;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-green));
  color: #fff;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14.5px;
  transition: .25s;
  display: block;
}
.hero-card .mini-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* ===================== 数据条 ===================== */
.stats {
  background: linear-gradient(135deg, var(--brand-green), #156b50);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3Ccircle cx='30' cy='30' r='1' fill='white' opacity='0.15'/%3E%3C/svg%3E");
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.stats .num {
  font-size: 38px;
  font-weight: 800;
  color: var(--accent-gold);
  font-family: var(--font-serif);
  line-height: 1.1;
}
.stats .num small { font-size: 18px; font-weight: 600; }
.stats .lab { font-size: 14.5px; color: #c8e0d6; margin-top: 6px; }

/* ===================== 通用段 ===================== */
.section { padding: 56px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 36px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: 4px;
  color: var(--brand-green);
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  position: relative;
  padding: 0 30px;
}
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--accent-gold);
}
.section-head .eyebrow::before { left: 0; }
.section-head .eyebrow::after { right: 0; }
.section-head h2 {
  font-size: 34px;
  color: var(--brand-dark);
  font-weight: 800;
  position: relative;
  padding-bottom: 18px;
  font-family: var(--font-serif);
  line-height: 1.3;
}
.section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--brand-green));
}
.section-head p { color: var(--ink-2); margin-top: 18px; font-size: 16px; line-height: 1.85; }

/* 关于我们 */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-text h3 {
  font-size: 26px;
  color: var(--brand-dark);
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.4;
}
.about-text > p { color: var(--ink-2); margin-bottom: 16px; font-size: 15.5px; }
.about-text .feat {
  display: flex;
  gap: 14px;
  margin: 18px 0;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  transition: .25s;
}
.about-text .feat:hover {
  border-color: var(--brand-green);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.about-text .feat .ic {
  flex: 0 0 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-green));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  font-family: var(--font-serif);
}
.about-text .feat b { color: var(--ink-1); font-size: 15.5px; display: block; margin-bottom: 2px; }
.about-text .feat span { color: var(--ink-2); font-size: 14px; line-height: 1.6; }

.about-img {
  border-radius: var(--radius-lg);
  min-height: 400px;
  background:
    linear-gradient(135deg, rgba(13,59,46,.94), rgba(26,122,92,.85)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3Cpath d='M40 10 L70 40 L40 70 L10 40 Z' fill='none' stroke='white' stroke-width='0.5' opacity='0.2'/%3E%3C/svg%3E");
  color: #fff;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.about-img::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,.2), transparent 70%);
}
.about-img h4 {
  font-size: 24px;
  margin-bottom: 22px;
  font-family: var(--font-serif);
  position: relative;
  z-index: 2;
}
.about-img ul li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-size: 15px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-img ul li::before {
  content: "✓";
  color: var(--accent-gold);
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212,168,67,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ===================== 认证体系中心 ===================== */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cert-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: .35s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-green);
}
.cert-top {
  padding: 32px 28px 24px;
  color: #fff;
  position: relative;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-green));
  overflow: hidden;
}
.cert-top::after {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(212,168,67,.15);
}
.cert-top .cert-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.25);
}
.cert-top .tag {
  font-size: 12px;
  background: rgba(212,168,67,.25);
  color: var(--accent-gold-light);
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: .5px;
}
.cert-top h3 {
  font-size: 22px;
  margin: 0 0 6px;
  font-weight: 800;
  font-family: var(--font-serif);
  position: relative;
  z-index: 2;
}
.cert-top .en {
  font-size: 12.5px;
  opacity: .8;
  letter-spacing: .5px;
  position: relative;
  z-index: 2;
}
.cert-body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.cert-body p { color: var(--ink-2); font-size: 14.5px; margin-bottom: 18px; line-height: 1.75; }
.cert-body .kv { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.cert-body .kv div {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  border-left: 3px solid var(--brand-green);
}
.cert-body .kv b { display: block; color: var(--brand-dark); font-size: 12.5px; margin-bottom: 2px; }
.cert-body .kv span { font-size: 13.5px; color: var(--ink-1); font-weight: 600; }
.cert-body .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.cert-body .chip {
  background: var(--brand-light);
  color: var(--brand-green);
  font-size: 12.5px;
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 600;
}
.cert-body .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-green);
  font-weight: 700;
  font-size: 14.5px;
  transition: .2s;
}
.cert-body .more:hover { gap: 10px; color: var(--accent-orange); }
.cert-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: auto; padding-top: 18px; }
.btn-sm { padding: 10px 20px; font-size: 14px; border-radius: var(--radius-sm); }

/* ===================== 报考条件对比表 ===================== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: #fff;
}
table.cmp { width: 100%; border-collapse: collapse; min-width: 760px; background: #fff; }
table.cmp th, table.cmp td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14.8px;
}
table.cmp thead th {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-green));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
table.cmp tbody tr:nth-child(even) { background: var(--bg-soft); }
table.cmp tbody tr:hover { background: var(--brand-light); }
table.cmp td b { color: var(--brand-green); font-weight: 700; }
table.cmp .level-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}
.level-badge.trainee { background: #e8f3ee; color: var(--brand-green); }
.level-badge.formal { background: #fdf0e6; color: var(--accent-orange); }

/* ===================== 考试科目与课程 ===================== */
.courses { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.course-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.course-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand-green), var(--accent-gold));
}
.course-box h3 {
  color: var(--brand-dark);
  font-size: 22px;
  margin-bottom: 8px;
  font-family: var(--font-serif);
  font-weight: 700;
}
.course-box .desc { color: var(--ink-3); font-size: 14px; margin-bottom: 22px; }
.mod {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  transition: .2s;
}
.mod:last-child { border-bottom: 0; }
.mod:hover { padding-left: 6px; }
.mod .no {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-green));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  font-family: var(--font-serif);
  box-shadow: 0 4px 12px rgba(13,59,46,.2);
}
.mod .info b { color: var(--ink-1); font-size: 15.5px; display: block; margin-bottom: 3px; }
.mod .info span { display: block; color: var(--ink-3); font-size: 13.5px; line-height: 1.6; }
.mod.opt .no {
  background: linear-gradient(135deg, var(--accent-gold), #c49530);
  box-shadow: 0 4px 12px rgba(212,168,67,.3);
}

/* ===================== 考试安排 ===================== */
.exam-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.exam-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: .3s;
  position: relative;
  overflow: hidden;
}
.exam-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-green), var(--accent-gold));
  transition: .3s;
}
.exam-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.exam-card:hover::after { width: 60%; }
.exam-card .ic {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-light), #d4e8df);
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
}
.exam-card h4 { color: var(--brand-dark); font-size: 18px; margin-bottom: 12px; font-family: var(--font-serif); font-weight: 700; }
.exam-card p { color: var(--ink-2); font-size: 14.2px; line-height: 1.75; }

/* ===================== 证书价值 ===================== */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--accent-gold);
  transition: .3s;
  position: relative;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--brand-green);
}
.value-card .ic {
  font-size: 32px;
  margin-bottom: 16px;
  display: inline-block;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card h4 { color: var(--brand-dark); font-size: 18px; margin-bottom: 12px; font-family: var(--font-serif); font-weight: 700; }
.value-card p { color: var(--ink-2); font-size: 14.3px; line-height: 1.8; }

/* ===================== 报考优势 ===================== */
.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.adv-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: .3s;
}
.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}
.adv-card .ic {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-green));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(13,59,46,.25);
  position: relative;
}
.adv-card .ic::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(212,168,67,.35);
  border-radius: 14px;
}
.adv-card h4 { color: var(--ink-1); font-size: 16.5px; margin-bottom: 8px; font-weight: 700; }
.adv-card p { color: var(--ink-2); font-size: 13.8px; line-height: 1.7; }

/* ===================== 报考流程 ===================== */
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}
.flow .step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: .3s;
}
.flow .step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-green);
}
.flow .step .n {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-green));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 19px;
  font-family: var(--font-serif);
  box-shadow: 0 6px 16px rgba(13,59,46,.25);
  position: relative;
}
.flow .step .n::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1.5px solid rgba(212,168,67,.5);
  border-radius: 50%;
}
.flow .step h4 { color: var(--brand-dark); font-size: 16px; margin-bottom: 8px; font-weight: 700; }
.flow .step p { color: var(--ink-2); font-size: 13px; line-height: 1.65; }

/* ===================== FAQ ===================== */
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: .25s;
}
.faq-item:hover { border-color: var(--brand-green); }
.faq-item.open { border-color: var(--brand-green); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  transition: .2s;
}
.faq-q:hover { color: var(--brand-green); }
.faq-q .pm {
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: .3s;
  font-weight: 400;
}
.faq-item.open .faq-q .pm {
  transform: rotate(45deg);
  background: var(--brand-green);
  color: #fff;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p {
  padding: 0 26px 24px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.85;
}

/* ===================== 资讯 ===================== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: .3s;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-green);
}
.news-card .nc-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.news-card .ni-tag {
  background: var(--brand-light);
  color: var(--brand-green);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
}
.news-card .nc-date { color: var(--ink-3); font-size: 13px; }
.news-card h4 {
  font-size: 17.5px;
  color: var(--ink-1);
  line-height: 1.55;
  margin: 0 0 12px;
  font-weight: 700;
  transition: .2s;
}
.news-card h4 a { color: inherit; text-decoration: none; }
.news-card:hover h4 { color: var(--brand-green); }
.news-card p {
  color: var(--ink-2);
  font-size: 14.2px;
  line-height: 1.8;
  margin: 0 0 16px;
  flex: 1;
}
.news-card .ni-more {
  color: var(--brand-green);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  align-self: flex-start;
  display: inline-flex;
  gap: 6px;
  transition: .2s;
}
.news-card .ni-more:hover { gap: 10px; color: var(--accent-orange); }

/* ===================== 咨询区 ===================== */
.contact {
  background:
    radial-gradient(ellipse 700px 400px at 80% 20%, rgba(26,122,92,.3), transparent 60%),
    linear-gradient(135deg, #08281e, #0d3b2e 60%, #13523f);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50'%3Cpath d='M0 49h50M49 0v50' stroke='white' stroke-width='0.5' opacity='0.04'/%3E%3C/svg%3E");
}
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 70px 24px;
  position: relative;
  z-index: 2;
}
.contact h2 {
  font-size: 32px;
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 1.3;
}
.contact h2 .hl { color: var(--accent-gold); }
.contact p { color: #c8d8d0; margin-bottom: 24px; font-size: 15.5px; line-height: 1.85; }
.contact .info-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact .info-row b {
  color: var(--accent-gold);
  min-width: 80px;
  font-size: 14px;
  font-weight: 700;
}
.contact .info-row span { color: #dce8e2; font-size: 15px; }
.contact .info-row a { color: #dce8e2; transition: .2s; }
.contact .info-row a:hover { color: var(--accent-gold); }

.contact .form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  color: var(--ink-1);
  box-shadow: var(--shadow-green);
  position: relative;
}
.contact .form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand-green), var(--accent-gold));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.contact .form h3 {
  color: var(--brand-dark);
  font-size: 20px;
  margin-bottom: 22px;
  font-family: var(--font-serif);
  font-weight: 700;
}
.contact .form input,
.contact .form select,
.contact .form textarea {
  width: 100%;
  padding: 13px 16px;
  margin-bottom: 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-family: var(--font-sans);
  color: var(--ink-1);
  transition: .2s;
  background: #fdfcf9;
}
.contact .form input:focus,
.contact .form select:focus,
.contact .form textarea:focus {
  outline: none;
  border-color: var(--brand-green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,122,92,.1);
}
.contact .form .submit {
  width: 100%;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-green));
  color: #fff;
  border: 0;
  padding: 15px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: .25s;
  font-family: var(--font-sans);
}
.contact .form .submit:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(13,59,46,.3); }
.contact .form .note { font-size: 12.5px; color: var(--ink-3); text-align: center; margin-top: 10px; }

/* ===================== 页脚 ===================== */
.footer {
  width: 100%;
  background: #061a14;
  color: #a8bcb2;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.9;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand-green), var(--accent-gold), var(--brand-green), var(--brand-dark));
}
.footer .container { padding: 60px 24px 32px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer .f-brand .logo .mark {
  background: linear-gradient(135deg, var(--brand-green), var(--accent-gold));
}
.footer .f-brand .logo .txt b { color: #fff; }
.footer .f-brand .logo .txt span { color: #6a8076; }
.footer .f-brand p { margin: 18px 0; color: #8aa096; font-size: 14px; max-width: 340px; line-height: 1.85; }
.footer .f-brand .social { display: flex; gap: 10px; }
.footer .f-brand .social a {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #a8bcb2;
  font-size: 14px;
  font-weight: 700;
  transition: .25s;
}
.footer .f-brand .social a:hover { background: var(--brand-green); color: #fff; transform: translateY(-2px); }

.footer h5 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 14px;
  font-family: var(--font-serif);
}
.footer h5::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 4px; height: 18px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent-gold), var(--brand-green));
}
.footer ul li { padding: 6px 0; }
.footer ul li a { color: #8aa096; font-size: 14px; transition: .2s; }
.footer ul li a:hover { color: var(--accent-gold); padding-left: 4px; }
.footer .f-contact li { color: #8aa096; font-size: 14px; }
.footer .f-contact li b { color: #c8d8d0; font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 42px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  color: #6a8076;
  font-size: 13.5px;
}
.footer-bottom > div { white-space: nowrap; }
.footer-bottom .icp { white-space: nowrap; }
.footer-bottom .links { white-space: nowrap; }
.footer-bottom a { color: #6a8076; transition: .2s; }
.footer-bottom a:hover { color: var(--accent-gold); }
.footer .links { display: flex; flex-wrap: wrap; gap: 16px; }

/* 返回顶部 */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 28px;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-green));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 900;
  border: 1px solid rgba(212,168,67,.3);
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(13,59,46,.35); }

/* ===================== 响应式 ===================== */
@media (max-width: 1200px) {
  .adv-grid { grid-template-columns: repeat(3, 1fr); }
  .flow { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 480px; }
  .about-grid, .courses, .contact .container { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .cert-grid, .exam-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav a { padding: 8px 12px; font-size: 14px; }
  .hero h1 { font-size: 40px; }
  .faq-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .cert-grid, .exam-grid, .value-grid, .news-grid, .adv-grid { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: 1fr 1fr; }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .nav {
    position: fixed;
    top: 118px;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 24px;
    gap: 2px;
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: .3s;
    max-height: calc(100vh - 118px);
    overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 16px; font-size: 16px; border-radius: var(--radius-sm); }
  .nav a.active::after { display: none; }
  .hamburger { display: flex; }
}

/* ===================== 新增页面样式 ===================== */

/* 页面头部 */
.page-hero { background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-green) 100%); color: #fff; padding: 60px 0 50px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(212,168,67,.15) 0%, transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 36px; margin-bottom: 12px; line-height: 1.3; }
.page-hero h1 .hl { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,.8); font-size: 16px; max-width: 700px; line-height: 1.7; }
.crumb { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.crumb a { color: rgba(255,255,255,.8); }
.crumb a:hover { color: var(--gold); }

/* 通用按钮 */
.btn { display: inline-block; padding: 12px 28px; border-radius: var(--radius-md); font-size: 15px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: all .3s; }
.btn-gold { background: linear-gradient(135deg, var(--gold), #e8c46a); color: var(--brand-dark); box-shadow: 0 4px 15px rgba(212,168,67,.3); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,168,67,.4); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* 提示框 */
.alert { padding: 14px 20px; border-radius: var(--radius-md); margin-bottom: 20px; font-size: 14px; line-height: 1.6; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert-error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

/* 分类筛选 */
.filters { display: flex; gap: 10px; flex-wrap: wrap; padding: 24px 0; }
.filter-btn { padding: 8px 20px; border-radius: 20px; background: #f0f4f2; color: var(--ink-2); font-size: 14px; text-decoration: none; transition: all .3s; border: 1px solid transparent; }
.filter-btn:hover { background: #e0ebe5; color: var(--brand-green); }
.filter-btn.active { background: var(--brand-green); color: #fff; }

/* 文章列表 */
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-item { display: block; background: #fff; border-radius: var(--radius-md); padding: 24px 28px; box-shadow: var(--shadow-sm); transition: all .3s; text-decoration: none; color: inherit; border-left: 4px solid transparent; }
.news-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); border-left-color: var(--gold); }
.ni-head { display: flex; gap: 16px; align-items: center; margin-bottom: 10px; font-size: 13px; }
.ni-tag { background: var(--brand-green); color: #fff; padding: 2px 10px; border-radius: 4px; font-size: 12px; }
.ni-date { color: var(--ink-3); }
.ni-views { color: var(--ink-3); margin-left: auto; }
.ni-body h3 { font-size: 18px; color: var(--brand-dark); margin-bottom: 8px; line-height: 1.5; }
.news-item:hover .ni-body h3 { color: var(--brand-green); }
.ni-body p { color: var(--ink-2); font-size: 14px; line-height: 1.7; margin-bottom: 10px; }
.ni-more { color: var(--brand-green); font-size: 13px; font-weight: 600; }

/* 分页 */
.pagination { display: flex; gap: 6px; margin-top: 30px; justify-content: center; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 8px 14px; border: 1px solid #e0e0e0; border-radius: 6px; font-size: 14px; color: var(--ink-2); text-decoration: none; transition: all .2s; }
.pagination a:hover { background: var(--brand-green); color: #fff; border-color: var(--brand-green); }
.pagination .current { background: var(--brand-green); color: #fff; border-color: var(--brand-green); }

/* 文章详情 */
.article-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.article-main { min-width: 0; }
.article-body { background: #fff; border-radius: var(--radius-md); padding: 40px; box-shadow: var(--shadow-sm); line-height: 1.9; font-size: 16px; color: var(--ink-1); }
.article-body h2, .article-body h3 { color: var(--brand-dark); margin: 28px 0 14px; line-height: 1.4; }
.article-body h2 { font-size: 24px; border-left: 4px solid var(--gold); padding-left: 12px; }
.article-body h3 { font-size: 20px; }
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 16px 0; padding-left: 24px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--brand-dark); }
.article-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.article-body th, .article-body td { border: 1px solid #e0e0e0; padding: 10px 14px; text-align: left; }
.article-body th { background: #f5f8f6; font-weight: 600; color: var(--brand-dark); }

.article-meta { display: flex; gap: 20px; flex-wrap: wrap; color: var(--ink-3); font-size: 14px; }

/* 文章侧边栏 */
.article-sidebar { position: sticky; top: 20px; align-self: start; }
.sidebar-widget { background: #fff; border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.sidebar-widget h4 { font-size: 16px; color: var(--brand-dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.rel-item { display: block; padding: 10px 0; border-bottom: 1px solid #f0f0f0; text-decoration: none; color: inherit; }
.rel-item:last-child { border-bottom: none; }
.rel-cat { display: inline-block; font-size: 11px; color: var(--brand-green); background: #e8f5ef; padding: 1px 6px; border-radius: 3px; margin-bottom: 4px; }
.rel-t { font-size: 13px; color: var(--ink-2); line-height: 1.5; display: block; }
.rel-item:hover .rel-t { color: var(--brand-green); }
.rel-back { display: block; text-align: center; margin-top: 12px; color: var(--brand-green); font-size: 13px; text-decoration: none; }

/* 文章底部CTA */
.article-cta { background: linear-gradient(135deg, var(--brand-dark), var(--brand-green)); border-radius: var(--radius-md); padding: 30px; margin-top: 30px; color: #fff; text-align: center; }
.article-cta b { display: block; font-size: 20px; margin-bottom: 8px; }
.article-cta span { display: block; color: rgba(255,255,255,.8); margin-bottom: 16px; font-size: 14px; }

/* 上下篇导航 */
.article-nav { display: flex; justify-content: space-between; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.article-nav a { flex: 1; min-width: 200px; padding: 16px 20px; background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); font-size: 14px; color: var(--ink-2); text-decoration: none; transition: all .3s; }
.article-nav a:hover { box-shadow: var(--shadow-md); color: var(--brand-green); }
.article-nav .next { text-align: right; }

/* 联系页 */
.contact-wrap { display: grid; grid-template-columns: 380px 1fr; gap: 40px; }
.contact-info-side { background: linear-gradient(135deg, var(--brand-dark), var(--brand-green)); border-radius: var(--radius-md); padding: 36px; color: #fff; }
.contact-info-side h3 { font-size: 22px; margin-bottom: 8px; }
.contact-info-side > p { color: rgba(255,255,255,.8); margin-bottom: 30px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-item .ic { width: 44px; height: 44px; background: rgba(255,255,255,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item h4 { font-size: 15px; margin-bottom: 4px; color: var(--gold); }
.contact-item p { font-size: 14px; color: rgba(255,255,255,.9); margin: 0; }
.contact-item a { color: #fff; text-decoration: none; }
.contact-item a:hover { color: var(--gold); }

/* 表单 */
.form { background: #fff; border-radius: var(--radius-md); padding: 36px; box-shadow: var(--shadow-sm); }
.form h3 { font-size: 22px; color: var(--brand-dark); margin-bottom: 8px; }
.form-large { padding: 40px; }
.form-row { display: flex; gap: 16px; }
.form-group { flex: 1; margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; color: var(--ink-1); font-size: 14px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid #d0d8d4; border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; transition: all .3s; background: #fafcfb; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brand-green); background: #fff; box-shadow: 0 0 0 3px rgba(26,122,92,.1); }
.form-group textarea { resize: vertical; }
.submit { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--brand-dark), var(--brand-green)); color: #fff; border: none; border-radius: var(--radius-md); font-size: 16px; font-weight: 600; cursor: pointer; transition: all .3s; margin-top: 10px; }
.submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(13,59,46,.3); }
.note { text-align: center; margin-top: 14px; font-size: 12px; color: var(--ink-3); }

/* 关于页联系卡片 */
.contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-info-card { background: #fff; border-radius: var(--radius-md); padding: 30px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: all .3s; }
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-info-card .ic { font-size: 36px; margin-bottom: 14px; }
.contact-info-card h4 { font-size: 16px; color: var(--brand-dark); margin-bottom: 10px; }
.contact-info-card p { font-size: 15px; color: var(--ink-2); margin: 0; }
.contact-info-card a { color: var(--brand-green); text-decoration: none; font-weight: 600; }

/* 响应式补充 */
@media (max-width: 1024px) {
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .page-hero h1 { font-size: 28px; }
  .form-row { flex-direction: column; gap: 0; }
  .article-body { padding: 24px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .article-nav { flex-direction: column; }
  .article-nav .next { text-align: left; }
}
  .topbar .tb-left,
  .topbar .tb-right a:not(.tb-cta) { display: none; }
  .topbar .container { justify-content: flex-end; }
  .topbar .tb-cta { font-size: 13px; padding: 5px 14px; }
  .hero { text-align: center; }
  .hero h1 { font-size: 32px; }
  .hero .sub { font-size: 16px; margin: 0 auto; }
  .hero .badges, .hero .btns { justify-content: center; }
  .hero .eyebrow-tag { margin: 0 auto 24px; }
  .hero .container { padding: 60px 20px 54px; }
  .section { padding: 56px 0; }
  .section-head h2 { font-size: 26px; }
  .section-head { margin-bottom: 38px; }
  .stats .container { grid-template-columns: 1fr 1fr; gap: 16px; padding: 28px 16px; }
  .stats .num { font-size: 30px; }
  .cert-grid, .exam-grid, .value-grid, .news-grid, .adv-grid, .flow, .footer-top { grid-template-columns: 1fr; }
  .cert-body .kv { grid-template-columns: 1fr; }
  .contact .container { padding: 50px 18px; }
  .contact .form { padding: 26px 22px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer .links { justify-content: center; gap: 12px; }
  .about-text .feat:hover { transform: none; }
  .course-box { padding: 26px 22px; }
}
