:root {
  --teal:      #64b5f6;
  --teal-dark: #1e88e5;
  --teal-mid:  #90caf9;
  --teal-lt:   #e3f2fd;
  --sky:       #bbdefb;
  --sky-deep:  #90caf9;
  --gold:      #c8942a;
  --gold-lt:   #f0d8a0;
  --cream:     #f0f7ff;
  --white:     #ffffff;
  --ink:       #1a1a1a;
  --ink-mid:   #37474f;
  --ink-lt:    #78909c;
  --bg-section:#e3f2fd;
  --radius:    16px;
  --shadow-sm: 0 4px 20px rgba(30,136,229,.08);
  --shadow-md: 0 8px 40px rgba(30,136,229,.1);
  --shadow-lg: 0 16px 60px rgba(30,136,229,.12);
  --glow-sm:   0 0 30px rgba(100,181,246,.15);
  --glow-md:   0 0 60px rgba(100,181,246,.2);
  --glow-lg:   0 0 100px rgba(100,181,246,.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans SC', sans-serif;
  background: linear-gradient(180deg, #f0f7ff 0%, var(--cream) 100%);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-optical-sizing: none;
  font-kerning: normal;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-synthesis: style;
}

/* ─── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: linear-gradient(135deg, rgba(30,136,229,.92) 0%, rgba(100,181,246,.88) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(30,136,229,.25), 0 1px 0 rgba(255,255,255,.15);
}
.nav-logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.nav-logo img { height: 52px; width: auto; display: block; filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: .875rem;
  letter-spacing: .04em;
  transition: color .2s;
  white-space: nowrap;
  font-weight: 500;
}
.nav-links a:hover { color: #fff; }

/* ─── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 光影层 */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(100,181,246,.10) 0%,
    rgba(30,136,229,.15) 45%,
    rgba(16,60,100,.30) 100%
  );
}
/* 底部暗角：强化最下方文字对比 */
.hero-grad-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 220px;
  background: linear-gradient(0deg, rgba(10,40,70,.55) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* 顶部光晕过渡 */
.hero-grad-top {
  position: absolute; top: 0; left: 0; right: 0; height: 160px;
  background: linear-gradient(180deg, rgba(179,229,252,.5) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* 浮动光球装饰 */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(100,181,246,.35) 0%, transparent 70%);
  animation: orbFloat1 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  bottom: 50px; left: -60px;
  background: radial-gradient(circle, rgba(144,202,249,.28) 0%, transparent 70%);
  animation: orbFloat2 10s ease-in-out infinite;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  top: 40%; left: 15%;
  background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 70%);
  animation: orbFloat3 7s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.05); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(20px) scale(1.08); }
}
@keyframes orbFloat3 {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-15px) rotate(10deg); }
}

/* 光线装饰 */
.hero-rays {
  position: absolute; top: 0; right: 0;
  width: 60%; height: 100%;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,.04) 50%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative; z-index: 3;
  padding: 0 2rem;
  max-width: 900px;
}
@keyframes fadeUp {
  from { opacity:0; transform: translateY(32px); }
  to   { opacity:1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-family: 'Noto Serif SC', serif;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  color: #172B4D;
  font-size: 1.9rem;
  letter-spacing: .08em;
  padding: .55rem 2rem;
  border-radius: var(--radius);
  margin-bottom: 1.4rem;
  font-weight: 700;
  animation: fadeUp .9s .1s ease both;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--glow-sm), inset 0 1px 0 rgba(255,255,255,.2);
}

.hero h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: .06em;
  font-optical-sizing: none;
  text-shadow: 0 4px 30px rgba(30,136,229,.4), 0 2px 14px rgba(0,0,0,.25);
  animation: fadeUp .9s .2s ease both;
}

.hero-subtitle {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: rgba(255,255,255,.95);
  letter-spacing: .2em;
  animation: fadeUp .9s .28s ease both;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-top: .8rem;
  letter-spacing: .1em;
  animation: fadeUp .9s .3s ease both;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}

.hero-stats {
  display: flex; gap: 0;
  justify-content: center;
  margin-top: 2.8rem;
  animation: fadeUp .9s .45s ease both;
}
.stat-item {
  text-align: center;
  padding: .9rem 1.8rem;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 120px;
  box-shadow: var(--glow-sm), inset 0 1px 0 rgba(255,255,255,.2);
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.2);
  margin: .6rem 0;
}
.stat-number {
  display: block;
  font-family: 'Noto Serif SC', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.stat-unit {
  font-size: .9rem;
  font-weight: 500;
  margin-left: .1rem;
}
.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.82);
  letter-spacing: .08em;
  margin-top: .3rem;
  white-space: nowrap;
}

.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: .9rem 3rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  border-radius: 3rem;
  text-decoration: none;
  box-shadow: var(--shadow-md), 0 0 30px rgba(100,181,246,.25);
  transition: all .3s ease;
  animation: fadeUp .9s .55s ease both;
  border: none;
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .5s ease;
}
.hero-cta:hover {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  box-shadow: var(--shadow-lg), 0 0 50px rgba(100,181,246,.35);
  transform: translateY(-3px);
}
.hero-cta:hover::before { left: 100%; }

.hero-scroll {
  position: absolute; bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem;
  color: var(--gold-lt);
  font-size: .75rem;
  letter-spacing: .1em;
  animation: bounce 2.2s ease-in-out infinite;
  text-shadow: 0 1px 6px rgba(200,148,42,.4), 0 0 12px rgba(240,216,160,.25);
  font-weight: 500;
}
.hero-scroll svg {
  width: 22px;
  stroke: var(--gold-lt);
  filter: drop-shadow(0 1px 4px rgba(200,148,42,.35));
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ─── SECTION COMMONS ──────────────────────── */
section { padding: 64px 5vw 48px; }

.section-label {
  display: block;
  font-size: clamp(.82rem, 1.5vw, .92rem);
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--teal);
  margin-bottom: .25rem;
}
/* no pseudo-elements — pure typography */

.section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 1.8rem;
  padding-bottom: .6rem;
  position: relative;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 192px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  border-radius: 2px;
}

/* ─── ABOUT ─────────────────────────────────── */
#about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(100,181,246,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
/* 左下角光晕 */
#about::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(144,202,249,.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#about .section-title::after { left: 0; transform: none; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-img-stack {
  position: relative;
  height: 480px;
}
.about-img-stack img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(100,181,246,.06);
}
.about-img-stack .img-main {
  width: 78%; height: 78%;
  top: 0; left: 0;
  z-index: 2;
}
.about-img-stack .img-sec {
  width: 58%; height: 55%;
  bottom: 0; right: 0;
  z-index: 3;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-img-stack .img-badge {
  position: absolute;
  top: 58%; left: 60%;
  z-index: 4;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  color: #fff;
  border-radius: 50%;
  width: 88px; height: 88px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: .7rem; letter-spacing: .06em; text-align: center;
  line-height: 1.3; font-weight: 600;
  box-shadow: var(--shadow-md), 0 0 30px rgba(100,181,246,.3);
}

.about-text {}
.about-intro {
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 2;
  margin-bottom: .6rem;
  text-indent: 2em;
  text-align: justify;
}

.about-facts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}
.fact-card {
  background: linear-gradient(135deg, var(--bg-section) 0%, rgba(179,229,252,.3) 100%);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--teal);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.fact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.fact-card .num {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal-dark);
  white-space: nowrap;
}
.fact-card .num span { font-size: 1rem; font-weight: 400; }
.fact-card .desc { font-size: .82rem; color: var(--ink-lt); margin-top: .15rem; }

.about-hosp {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  font-size: .9rem;
  line-height: 1.8;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.15);
}
.about-hosp strong { color: rgba(255,255,255,.88); }

/* ─── GALLERY ─────────────────────────────── */
#campus {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
#campus::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(100,181,246,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.campus-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  position: relative; z-index: 1;
}
.campus-header .section-label { text-align: center; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.g-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.g-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.25,.8,.25,1);
}
.g-item:hover img { transform: scale(1.07); }

.g-item .g-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .6rem .9rem;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  color: #fff;
  font-size: .78rem;
  letter-spacing: .06em;
  transform: translateY(100%);
  transition: transform .3s;
}
.g-item:hover .g-caption { transform: translateY(0); }

.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.g-item { height: 100%; }

/* ─── PROGRAMS ─────────────────────────────── */
#programs {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
#programs::before {
  content: '';
  position: absolute; bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(100,181,246,.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.programs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  position: relative; z-index: 1;
}

#programs .section-title::after { left: 0; transform: none; }

.programs-tabs {
  display: flex; gap: .5rem;
}
.tab-btn {
  padding: .5rem 1.2rem;
  border-radius: 2rem;
  border: 1.5px solid rgba(100,181,246,.35);
  background: rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: .82rem;
  color: var(--teal-dark);
  cursor: pointer;
  transition: all .25s ease;
  font-family: inherit;
  white-space: nowrap;
  font-weight: 500;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: var(--glow-sm);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

/* ── 卡片整体 ── */
.prog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(100,181,246,.14);
  transition: box-shadow .35s cubic-bezier(.25,.8,.25,1), transform .35s cubic-bezier(.25,.8,.25,1);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.prog-card:hover {
  box-shadow: var(--shadow-lg), var(--glow-md);
  transform: translateY(-5px);
}

/* ── 卡片顶部图片区（图片 + 覆盖文字） ── */
.prog-card-top {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.prog-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s cubic-bezier(.25,.8,.25,1);
  display: block;
}
.prog-card:hover .prog-img { transform: scale(1.06); }

.prog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,40,80,.5) 0%, rgba(10,40,80,.2) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.2rem 1.4rem;
}
.prog-tag {
  display: inline-block;
  background: rgba(100,181,246,.30);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #e3f2fd;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  padding: .18rem .7rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.25);
  margin-bottom: .5rem;
  width: fit-content;
}
.prog-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
  white-space: nowrap;
}
.prog-code {
  font-size: .76rem;
  color: rgba(255,255,255,.7);
  margin-top: .25rem;
  letter-spacing: .04em;
}

/* ── 卡片主体 ── */
.prog-body {
  padding: 1.4rem 1.6rem 1.2rem;
  flex: 1;
  display: flex; flex-direction: column;
  gap: 1.1rem;
}

/* ── 顶部信息行：招生人数 + 核心证书 ── */
.prog-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  background: linear-gradient(135deg, rgba(21,101,192,.06) 0%, rgba(100,181,246,.08) 100%);
  border-radius: 10px;
  border: 1px solid rgba(100,181,246,.14);
}
.prog-quota-badge {
  display: flex; align-items: baseline; gap: .35rem;
}
.quota-num {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
}
.quota-text {
  font-size: .72rem;
  color: var(--ink-lt);
  letter-spacing: .04em;
}
.prog-cert-quick {
  display: flex; align-items: center; gap: .35rem;
  font-size: .76rem;
  color: var(--teal-dark);
  font-weight: 600;
  max-width: 54%;
  text-align: right;
}
.cert-icon { font-size: .9rem; flex-shrink: 0; }

/* ── 三段详情（培养目标 / 就业面向 / 可考证书） ── */
.prog-detail-sections {
  display: flex; flex-direction: column; gap: .85rem;
}
.prog-detail-item {
  border-left: 3px solid rgba(100,181,246,.35);
  padding-left: .85rem;
  transition: border-color .2s;
}
.prog-card:hover .prog-detail-item { border-left-color: var(--teal); }

.prog-detail-label {
  display: flex; align-items: center; gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: .06em;
  margin-bottom: .4rem;
}
.detail-icon { font-size: .85rem; }

.prog-detail-content {
  font-size: .82rem;
  color: var(--ink-mid);
  line-height: 1.75;
}

/* 就业面向：列表 */
.employ-list { display: flex; flex-direction: column; gap: .35rem; }
.employ-item {
  position: relative;
  padding-left: .9rem;
  font-size: .82rem;
  color: var(--ink-mid);
  line-height: 1.7;
}
.employ-item::before {
  content: '';
  position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px;
  background: var(--teal);
  border-radius: 50%;
  opacity: .7;
}

/* 可考证书：标签云 */
.cert-tags {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-top: .1rem;
}
.cert-tag {
  display: inline-block;
  padding: .22rem .65rem;
  border-radius: .5rem;
  font-size: .72rem;
  font-weight: 500;
  background: rgba(100,181,246,.1);
  color: #1565c0;
  border: 1px solid rgba(100,181,246,.2);
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.prog-card:hover .cert-tag { background: rgba(100,181,246,.18); }

/* ── 了解详情按钮 ── */
.prog-detail-btn {
  display: block;
  margin: .5rem 1.6rem 1.4rem;
  padding: .6rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  border-radius: 2rem;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(100,181,246,.3);
  transition: all .28s ease;
  position: relative;
  overflow: hidden;
}
.prog-detail-btn::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .45s ease;
}
.prog-detail-btn:hover {
  background: linear-gradient(135deg, #0d47a1, var(--teal-dark));
  box-shadow: 0 5px 20px rgba(100,181,246,.4);
  transform: translateY(-2px);
}
.prog-detail-btn:hover::before { left: 100%; }

/* ── 就业去向标题 + 标签 ── */
.prog-meta-wrap {
  padding-top: .5rem;
  border-top: 1px solid rgba(100,181,246,.1);
}
.prog-meta-label {
  display: flex; align-items: center; gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: .06em;
  margin-bottom: .35rem;
}
.prog-meta {
  display: flex; flex-wrap: wrap; gap: .45rem;
  padding-top: 0;
  border-top: none;
}
.meta-chip {
  background: rgba(100,181,246,.1);
  color: #1565c0;
  border-radius: .5rem;
  padding: .22rem .65rem;
  font-size: .72rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid rgba(100,181,246,.2);
  transition: background .2s;
}
.prog-card:hover .meta-chip { background: rgba(100,181,246,.18); }

/* ─── PLAN TABLE ────────────────────────────── */
#plan {
  background: var(--white);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
#plan::after {
  content: '2026';
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: 'Noto Serif SC', serif;
  font-size: 22vw; font-weight: 900;
  color: rgba(100,181,246,.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.plan-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

#plan .section-label { color: var(--teal); }
#plan .section-title { color: var(--ink); }

.plan-table-wrap {
  margin-top: 2.5rem;
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  color: var(--ink);
  font-size: .9rem;
}
thead tr {
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  color: #fff;
  box-shadow: 0 2px 10px rgba(100,181,246,.2);
}
th, td {
  padding: 1rem 1.3rem;
  text-align: center;
}
th { font-weight: 600; letter-spacing: .06em; font-size: .82rem; white-space: nowrap; }
td { vertical-align: middle; }
tbody tr:nth-child(even) { background: rgba(179,229,252,.15); }
tbody tr:hover { background: rgba(100,181,246,.1); }

.quota-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  border-radius: 2rem;
  padding: .2rem .7rem;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(100,181,246,.25);
}

.plan-note {
  margin-top: 1.5rem;
  padding: 1.2rem 1.6rem;
  background: linear-gradient(135deg, var(--bg-section) 0%, rgba(179,229,252,.3) 100%);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
  font-size: .85rem;
  color: var(--ink-mid);
  line-height: 1.9;
  box-shadow: var(--shadow-sm);
}
.plan-note p {
  margin: 0;
  padding: 0;
}
.plan-note-title {
  color: var(--teal-dark);
  font-weight: 600;
}

/* ─── FACILITIES ────────────────────────────── */
#facilities {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
#facilities::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 300px;
  background: radial-gradient(ellipse, rgba(100,181,246,.08) 0%, transparent 70%);
  pointer-events: none;
}
.facilities-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  position: relative; z-index: 1;
}
.facilities-header .section-label { text-align: center; }

.fac-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.fac-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.fac-card:hover {
  box-shadow: var(--shadow-lg), var(--glow-sm);
  transform: translateY(-3px);
}
.fac-card img {
  width: 100%; height: 280px;
  object-fit: cover;
  display: block;
  transition: opacity .4s ease;
}
.fac-card .fac-label {
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal-dark);
  display: flex; align-items: center; gap: .5rem;
  justify-content: space-between;
}
.fac-card .fac-label span {
  display: flex; align-items: center; gap: .5rem;
}
.fac-card .fac-label span::before {
  content: '';
  display: block; width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(100,181,246,.5);
}
.fac-cycle-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(100,181,246,.35);
  background: rgba(100,181,246,.1);
  color: var(--teal-dark);
  font-size: .7rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
  font-family: inherit;
}
.fac-cycle-btn:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 10px rgba(100,181,246,.4);
}

/* ─── LOCATION ──────────────────────────────── */
#location {
  background: var(--white);
}

#location .section-title::after { left: 0; transform: none; }

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.loc-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.loc-img img { width: 100%; display: block; border-radius: var(--radius); }

.loc-info {}
.loc-item {
  display: flex; gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(100,181,246,.1);
}
.loc-item:last-child { border-bottom: none; }
.loc-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(100,181,246,.15), rgba(144,202,249,.2));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 12px rgba(100,181,246,.1);
  padding: 8px;
}
.loc-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.loc-item-text h4 {
  font-size: .82rem; font-weight: 600;
  color: var(--ink-lt); letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: .25rem;
}
.loc-item-text p { font-size: .95rem; color: var(--ink); }

/* ─── CONTACT ───────────────────────────────── */
#contact {
  background: linear-gradient(180deg, var(--bg-section) 0%, rgba(255,255,255,1) 100%);
  text-align: center;
  padding: 80px 5vw;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at top, rgba(100,181,246,.1) 0%, transparent 60%);
  pointer-events: none;
}
#contact .section-label { color: var(--teal); text-align: center; }
#contact .section-title { color: var(--ink); margin: 0 auto 1.5rem; text-align: center; }
#contact .section-title::after { left: 50%; transform: translateX(-50%); }

/* ─── NEWS ─────────────────────────────────── */
.news-header .section-title { text-align: center; }
.news-header .section-title::after { left: 50%; transform: translateX(-50%); }

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.contact-card {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(100,181,246,.15);
  border-radius: var(--radius);
  padding: 1.8rem 2.2rem;
  min-width: 200px;
  transition: all .3s ease;
  box-shadow: var(--shadow-sm);
}
.contact-card:hover { box-shadow: var(--shadow-md), var(--glow-md); transform: translateY(-3px); }
.contact-card .cc-icon { width: 100%; margin-bottom: .7rem; display: flex; align-items: center; justify-content: center; }
.contact-card .cc-icon img { width: 48px; height: 48px; object-fit: contain; filter: brightness(0); }
.contact-card .cc-label {
  font-size: .78rem; color: var(--ink-lt);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: .35rem;
}
.contact-card .cc-val { font-size: 1.02rem; font-weight: 600; color: var(--teal-dark); }

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: rgba(255,255,255,.7);
  text-align: center;
  padding: 2rem 5vw;
  font-size: .82rem;
  line-height: 1.8;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
footer a { color: rgba(255,255,255,.7); text-decoration: none; }
footer strong { color: var(--gold-lt); }

/* ─── SCROLL REVEAL ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.25,.8,.25,1), transform .7s cubic-bezier(.25,.8,.25,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .about-inner, .location-inner { grid-template-columns: 1fr; }
  .about-img-stack { height: 320px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .g-tall { grid-row: span 1; }
  .fac-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .fac-card img { height: 200px; }
  .programs-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  nav { padding: 0 1.2rem; }
  .nav-links { gap: 1rem; }
  .hero-stats { gap: 1.5rem; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .fac-grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .fac-card img { height: 160px; }
  .contact-cards { flex-direction: column; align-items: center; }
  .programs-tabs { flex-wrap: wrap; }
  .about-facts { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
  .nav-links { display: none; }
}
