:root {
  --blue: #006172;
  --blue-dark: #004a58;
  --orange: #d9a31a;
  --ink: #152033;
  --muted: #5f6b7a;
  --line: #dbe4ef;
  --soft: #f4f9f8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 74, 88, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 80, 150, 0.12);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  flex: 0 0 auto;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.2;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.nav-links li {
  flex: 0 0 auto;
}

.nav-links a {
  display: block;
  padding: 10px 11px;
  border-radius: 6px;
  white-space: nowrap;
  color: #203047;
  font-size: 15px;
}

.nav-links a[href="/login"],
.nav-links a[href="/register"],
.nav-links a[href="apply.html"] {
  display: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: #eaf3fb;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 6px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  min-width: 96px;
}

.btn.secondary {
  background: var(--blue);
}

.btn.ghost {
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--blue);
  font-size: 24px;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #082b4d;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.hero.gate-focus img {
  object-position: center 68%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 32, 62, 0.9), rgba(0, 80, 150, 0.48) 52%, rgba(0, 0, 0, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 94px 0 74px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 14px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero h1.single-line-title {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(30px, 4.8vw, 58px);
}

.hero p {
  max-width: 680px;
  margin: 20px 0 26px;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}

.stat {
  background: #fff;
  padding: 26px;
  border-bottom: 3px solid var(--blue);
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 78px 0;
}

.section.soft {
  background: var(--soft);
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-title h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.22;
  color: var(--ink);
}

.section-title p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 50, 100, 0.06);
}

.card-body {
  padding: 22px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  color: var(--blue-dark);
}

.card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #edf5fb;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--orange);
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 50, 100, 0.06);
}

.media-block {
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.media-block iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 260px;
  border: 0;
}

.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  padding: 78px 0 62px;
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 18px;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 12px;
  font-size: 14px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 10px 32px rgba(0, 50, 100, 0.07);
}

.timeline {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.timeline-item {
  position: relative;
  padding: 20px 20px 20px 62px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--blue-dark);
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.application-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.notice {
  padding: 14px 16px;
  border-radius: 6px;
  background: #fff7ed;
  color: #7a3a00;
  border: 1px solid #ffd7b5;
}

.site-footer {
  background: #082742;
  color: rgba(255, 255, 255, 0.86);
  padding: 52px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin: 0 0 14px;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-icp {
  display: inline-block;
  margin-left: 12px;
}

.footer-icp a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-icp a:hover {
  color: #fff;
}

.wechat-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 132px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(0, 31, 60, 0.22);
  text-align: center;
  border: 1px solid var(--line);
}

.wechat-float img {
  width: 100%;
  border-radius: 4px;
}

.wechat-float span {
  display: block;
  margin-top: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.article-list {
  display: grid;
  gap: 18px;
}

.article-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.article-row-featured {
  grid-template-columns: 1fr;
  border-left: 5px solid var(--orange);
  background: #fbfdfd;
}

.article-row img {
  height: 140px;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.article-row time {
  color: var(--orange);
  font-weight: 800;
  font-size: 14px;
}

.article-row h3 {
  margin: 6px 0 8px;
  color: var(--blue-dark);
}

.article-row p {
  margin: 0;
  color: var(--muted);
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.category-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 97, 114, 0.2);
  color: var(--blue);
  font-weight: 800;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.article-card {
  min-height: 210px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 25px rgba(0, 50, 100, 0.05);
}

.article-card span,
.compact-article-list span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.article-card h3 {
  margin: 8px 0 10px;
  color: var(--blue-dark);
  line-height: 1.35;
}

.article-card p {
  margin: 0;
  color: var(--muted);
}

.media-coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.media-coverage-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 250px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0, 97, 114, 0.16);
  box-shadow: 0 8px 25px rgba(0, 50, 100, 0.05);
}

.media-coverage-card time {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.media-coverage-card h3 {
  margin: 0;
  color: var(--blue-dark);
  line-height: 1.35;
}

.media-coverage-card p {
  margin: 0;
  color: var(--muted);
}

.compact-title {
  margin-bottom: 20px;
}

.compact-article-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.compact-article-list a {
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.compact-article-list a:last-child {
  border-right: 0;
}

.compact-article-list strong {
  color: var(--blue-dark);
  line-height: 1.4;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 800;
}

.article-hero h1 {
  max-width: 980px;
}

.article-detail {
  max-width: 860px;
}

.article-meta {
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 20px;
}

.article-detail p {
  margin: 0 0 18px;
  font-size: 18px;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.related-box {
  margin-top: 34px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(0, 97, 114, 0.18);
  background: var(--soft);
}

.related-box h2 {
  margin: 0 0 12px;
  color: var(--blue-dark);
}

.related-box ul {
  margin: 0;
  padding-left: 20px;
}

.info-summary {
  border: 1px solid rgba(0, 97, 114, 0.18);
  background: #f8fbff;
  border-radius: 8px;
  padding: 22px;
}

.info-summary h2,
.info-summary h3 {
  margin-top: 0;
  color: var(--blue-dark);
}

.program-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.program-table th,
.program-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.program-table th {
  background: var(--blue-dark);
  color: #fff;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--blue);
  font-weight: 900;
}

.section-kicker .num {
  font-size: 46px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0;
}

.pill-heading {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 22px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.brochure-band {
  background: var(--blue-dark);
  color: #fff;
}

.brochure-band .section-title h2,
.brochure-band .section-title p,
.brochure-band .eyebrow {
  color: #fff;
}

.slant-card {
  position: relative;
  border-left: 5px solid var(--orange);
}

.slant-card::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 54px;
  height: 12px;
  background: rgba(0, 97, 114, 0.12);
  transform: skewX(-22deg);
}

.compact-section {
  padding: 34px 0;
}

.admission-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 50, 100, 0.06);
}

.admission-flow div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: center;
  min-height: 70px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #f7fbfc;
}

.admission-flow span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
}

.admission-flow strong {
  color: var(--blue-dark);
  line-height: 1.25;
}

.admission-flow em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  line-height: 1.35;
}

.brochure-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 0;
}

.thumb-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  color: var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 12px 28px rgba(0, 24, 44, 0.18);
}

.thumb-card img {
  width: 100%;
  aspect-ratio: 3 / 4.8;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.22s ease;
}

.thumb-card:hover img {
  transform: scale(1.08);
}

.thumb-card span {
  display: block;
  padding: 10px;
  color: var(--blue-dark);
  font-weight: 900;
  background: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.video-section .feature-list strong {
  color: var(--blue-dark);
}

.video-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 97, 114, 0.9), rgba(217, 163, 26, 0.82)), url("../images/optimized/campus-banner.webp") center/cover;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28);
}

.video-placeholder.video-defense {
  background: linear-gradient(135deg, rgba(0, 40, 58, 0.68), rgba(0, 97, 114, 0.52)), url("../images/optimized/news-defense.webp") center/cover;
}

.video-placeholder.video-auto {
  background: linear-gradient(135deg, rgba(0, 40, 58, 0.68), rgba(0, 97, 114, 0.52)), url("../images/optimized/vocational-certificate.webp") center/cover;
}

.video-placeholder.video-order {
  background: linear-gradient(135deg, rgba(0, 40, 58, 0.68), rgba(0, 97, 114, 0.52)), url("../images/optimized/major-model.webp") center/cover;
}

.video-placeholder.video-startup {
  background: linear-gradient(135deg, rgba(0, 40, 58, 0.68), rgba(0, 97, 114, 0.52)), url("../images/optimized/major-media.webp") center/cover;
}

.video-placeholder.video-art {
  background: linear-gradient(135deg, rgba(0, 40, 58, 0.68), rgba(0, 97, 114, 0.52)), url("../images/optimized/partner-laoying-art.webp") center/cover;
}

.video-placeholder button {
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  background: #fff;
  color: var(--blue-dark);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.video-placeholder iframe,
.media-block iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.mindmap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.mindmap-card {
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 24, 44, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mindmap-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 42px rgba(0, 24, 44, 0.24);
}

.mindmap-card strong {
  display: block;
  color: var(--blue-dark);
  font-size: 20px;
  margin-bottom: 18px;
}

.mindmap-card span {
  display: block;
  padding: 12px;
  border-left: 4px solid var(--orange);
  background: #f7fbfc;
  color: var(--muted);
  font-weight: 700;
}

.mindmap-modal[hidden] {
  display: none;
}

.mindmap-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 24, 36, 0.72);
}

.mindmap-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 24px;
  cursor: pointer;
}

.mindmap-large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.mindmap-large span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 8px;
  background: #f4f9f8;
  border: 1px solid var(--line);
  color: var(--blue-dark);
  font-weight: 900;
  text-align: center;
}

.ticker {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 0 14px;
}

.vertical-ticker {
  width: min(620px, 100%);
  height: 228px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 50, 100, 0.06);
}

.vertical-ticker > div {
  display: grid;
  gap: 8px;
  padding: 12px;
  animation: verticalScroll 18s linear infinite;
}

.vertical-ticker span {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  background: #f7fbfc;
  border: 1px solid var(--line);
  color: var(--blue-dark);
  font-weight: 800;
}

@keyframes verticalScroll {
  from { transform: translateY(0); }
  to { transform: translateY(-45%); }
}

.training-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.training-info-grid .panel {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ticker span,
.college-list span {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue-dark);
  font-weight: 800;
}

.college-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-template-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.article-template-preview div {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #f7fbfc;
}

.article-template-preview strong,
.article-template-preview span {
  display: block;
}

.article-template-preview strong {
  color: var(--blue-dark);
  font-size: 18px;
}

.article-page .narrow {
  max-width: 920px;
}

.article-page h1 {
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.16;
  margin: 10px 0 18px;
}

.article-page time {
  color: var(--muted);
}

.article-page img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 8px;
  margin: 20px 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  margin: 12px 0 18px;
}

.article-meta a {
  color: var(--blue);
  font-weight: 800;
}

.article-lead {
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  background: #f7fbfc;
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 700;
}

.article-content h2 {
  margin-top: 34px;
  color: var(--blue-dark);
  font-size: 26px;
}

.article-content p {
  font-size: 17px;
}

.article-content figure {
  margin: 28px 0;
}

.article-content figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.article-share,
.related-articles {
  margin-top: 34px;
  padding: 20px;
  border-radius: 8px;
  background: #f7fbfc;
  border: 1px solid var(--line);
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.share-buttons span,
.share-buttons a,
.share-buttons button {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue-dark);
  font-weight: 800;
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
  min-width: 96px;
}

.copy-status {
  margin: 10px 0 0;
  color: var(--blue);
  font-weight: 800;
}

.two-related {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.related-articles a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue-dark);
  font-weight: 800;
}

.related-articles a:last-child {
  border-bottom: 0;
}

.article-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.application-form input::placeholder,
.application-form textarea::placeholder {
  color: rgba(95, 107, 122, 0.42);
}

.image-panel img {
  width: 100%;
  border-radius: 8px;
  margin-top: 14px;
}

.campus-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 46%;
  gap: 10px;
  overflow: hidden;
  margin-top: 14px;
}

.campus-carousel img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  margin: 0;
  animation: carouselSlide 18s linear infinite;
}

@keyframes carouselSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 10px)); }
}

.college-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.college-table span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--blue-dark);
  font-weight: 800;
  text-align: center;
}

.faq-compact {
  grid-template-columns: repeat(2, 1fr);
}

.compact-map {
  display: grid;
  grid-template-columns: 1.35fr 320px;
  gap: 24px;
  align-items: center;
}

.compact-map img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 50, 100, 0.08);
}

.traffic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.traffic-chips span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 16px;
  }

  .nav-links.open {
    display: grid;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero-stats,
  .grid-3,
  .grid-4,
  .training-info-grid,
  .college-table,
  .mindmap-grid,
  .mindmap-large,
  .article-template-preview,
  .admission-flow,
  .brochure-thumbs,
  .faq-compact,
  .compact-map,
  .article-card-grid,
  .media-coverage-grid,
  .compact-article-list,
  .footer-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section-title {
    display: block;
  }

  .section-title p {
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  .topbar {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand strong {
    font-size: 17px;
  }

  .hero-content {
    padding: 74px 0 56px;
  }

  .section {
    padding: 54px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .page-hero h1.single-line-title {
    font-size: clamp(22px, 7vw, 34px);
  }

  .hero-stats {
    margin-top: 0;
  }

  .form-grid,
  .article-row {
    grid-template-columns: 1fr;
  }

  .article-row img {
    height: 190px;
  }

  .compact-article-list a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .compact-article-list a:last-child {
    border-bottom: 0;
  }

  .wechat-float {
    width: 96px;
    right: 10px;
    bottom: 10px;
  }
}

.wechat-float {
  cursor: pointer;
}

.wechat-float:focus-visible {
  outline: 3px solid rgba(217, 163, 26, 0.45);
  outline-offset: 3px;
}

.wechat-modal,
.callback-modal,
.mindmap-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 39, 66, 0.58);
}

.wechat-modal[hidden],
.callback-modal[hidden],
.mindmap-modal[hidden] {
  display: none;
}

.wechat-dialog,
.callback-dialog {
  position: relative;
  width: min(420px, calc(100vw - 40px));
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 31, 60, 0.28);
  text-align: center;
}

.wechat-dialog h3,
.callback-dialog h3 {
  margin: 0 34px 16px;
  color: var(--blue-dark);
  font-size: 22px;
}

.wechat-dialog img {
  width: min(260px, 76vw);
  margin: 0 auto 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.wechat-dialog p,
.callback-dialog p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.mobile-bottom-bar {
  display: none;
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    padding-bottom: 74px;
  }

  .mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 7px 6px calc(7px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(0, 74, 88, 0.14);
    box-shadow: 0 -10px 30px rgba(0, 31, 60, 0.14);
    backdrop-filter: blur(14px);
  }

  .mobile-bottom-bar a,
  .mobile-bottom-bar button {
    display: grid;
    place-items: center;
    width: auto;
    min-width: 0;
    min-height: 46px;
    padding: 0;
    border-radius: 6px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-bottom-bar a:nth-child(1),
  .mobile-bottom-bar button:nth-child(2),
  .mobile-bottom-bar button:nth-child(3) {
    color: #fff;
  }

  .mobile-bottom-bar a:nth-child(1) {
    background: var(--orange);
  }

  .mobile-bottom-bar button:nth-child(2) {
    background: var(--blue);
  }

  .mobile-bottom-bar button:nth-child(3) {
    background: #0f766e;
  }

  .wechat-float {
    display: block;
    width: 82px;
    right: 10px;
    bottom: 86px;
    padding: 7px;
  }

  .wechat-float span {
    font-size: 11px;
  }
}
.mindmap-head {
  padding-right: 42px;
}

.mindmap-head span {
  color: var(--orange);
  font-weight: 900;
}

.mindmap-head h3 {
  margin: 6px 0 10px;
  color: var(--blue-dark);
  font-size: 28px;
  line-height: 1.25;
}

.mindmap-head p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
}

.mindmap-large {
  display: grid;
  grid-template-columns: repeat(7, minmax(160px, 1fr));
  gap: 12px;
  align-items: stretch;
  min-width: 1120px;
}

.mindmap-branch {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(0, 97, 114, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f4f9f8);
  box-shadow: 0 10px 26px rgba(0, 50, 100, 0.07);
}

.mindmap-branch::before {
  content: "";
  position: absolute;
  top: 26px;
  left: -12px;
  width: 12px;
  height: 2px;
  background: var(--orange);
}

.mindmap-branch:first-child::before {
  display: none;
}

.mindmap-branch h4 {
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(217, 163, 26, 0.38);
  color: var(--blue-dark);
  font-size: 17px;
}

.mindmap-nodes {
  display: grid;
  gap: 7px;
}

.mindmap-node {
  min-height: auto;
  display: block;
  padding: 7px 8px;
  border: 1px solid rgba(0, 97, 114, 0.14);
  border-radius: 6px;
  background: #fff;
  color: #26384c;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.mindmap-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.mindmap-foot span {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 760px) {
  .mindmap-dialog {
    padding: 22px 16px;
  }

  .mindmap-large {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .mindmap-branch::before {
    display: none;
  }

  .mindmap-foot {
    display: grid;
  }
}

.wechat-actions {
  display: grid;
  gap: 10px;
}

.callback-dialog form {
  display: grid;
  gap: 12px;
  text-align: left;
}

.callback-dialog input {
  width: 100%;
}

.mobile-bottom-bar button {
  border: 0;
  font: inherit;
  line-height: 1;
  cursor: pointer;
}
