:root {
  --ink: #38211f;
  --muted: #7a665f;
  --line: #eadbd0;
  --paper: #fffaf3;
  --mist: #f5ece3;
  --green: #d73543;
  --green-dark: #4b241f;
  --coral: #b44a45;
  --gold: #b9845b;
  --leaf: #6c9d57;
  --teal-soft: #f1e3dd;
  --accent-rgb: 215, 53, 67;
  --ink-rgb: 75, 36, 31;
  --panel-rgb: 124, 32, 38;
  --deep-a: #7c2026;
  --deep-b: #4b171a;
  --footer: #241012;
  --table-a: #b73542;
  --table-b: #8f2630;
  --shadow: 0 18px 50px rgba(var(--ink-rgb), 0.12);
}

:root[data-theme="leaf"] {
  --ink: #203528;
  --muted: #647366;
  --line: #dbe9d3;
  --paper: #fbfff7;
  --mist: #edf6e7;
  --green: #55ae57;
  --green-dark: #2f5127;
  --coral: #8fbc66;
  --gold: #c9b76d;
  --leaf: #6dbf74;
  --teal-soft: #e4f4df;
  --accent-rgb: 85, 174, 87;
  --ink-rgb: 47, 81, 39;
  --panel-rgb: 61, 92, 44;
  --deep-a: #3e612e;
  --deep-b: #223b1c;
  --footer: #1e321b;
  --table-a: #59af5b;
  --table-b: #3f8d43;
}

:root[data-theme="academy"] {
  --ink: #20304b;
  --muted: #61728c;
  --line: #d7e4f2;
  --paper: #f7fbff;
  --mist: #e9f2fb;
  --green: #2d6fbd;
  --green-dark: #173767;
  --coral: #b86745;
  --gold: #c49a47;
  --leaf: #3f9a7a;
  --teal-soft: #e5f2ef;
  --accent-rgb: 45, 111, 189;
  --ink-rgb: 23, 55, 103;
  --panel-rgb: 31, 73, 131;
  --deep-a: #214a83;
  --deep-b: #142f5b;
  --footer: #10264d;
  --table-a: #3276c8;
  --table-b: #2b7a68;
}

html {
  scroll-padding-top: 128px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(232, 218, 206, 0.78), rgba(255, 250, 243, 0.96) 14%, rgba(255, 250, 243, 0.96) 86%, rgba(232, 218, 206, 0.78)),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
}

:root[data-theme="leaf"] body {
  background:
    linear-gradient(90deg, rgba(221, 237, 211, 0.82), rgba(251, 255, 247, 0.97) 14%, rgba(251, 255, 247, 0.97) 86%, rgba(221, 237, 211, 0.82)),
    var(--paper);
}

:root[data-theme="academy"] body {
  background:
    linear-gradient(90deg, rgba(218, 232, 247, 0.86), rgba(247, 251, 255, 0.97) 14%, rgba(247, 251, 255, 0.97) 86%, rgba(218, 232, 247, 0.86)),
    var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0 12px;
  background: transparent;
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 48px;
  background: rgba(255, 250, 243, 0.9);
  box-shadow: 0 14px 36px rgba(var(--ink-rgb), 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: contain;
  padding: 5px;
  background: #fffdf8;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(var(--ink-rgb), 0.08);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(74, 17, 24, 0.08);
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 24px;
  color: #6d5c56;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-dark);
  background: var(--teal-soft);
}

.nav-tools {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-control {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
}

.nav-control span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.nav-control select {
  min-height: 32px;
  max-width: 112px;
  border: 0;
  border-radius: 18px;
  color: var(--green-dark);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  outline: none;
}

.nav-links a.auth-link {
  border: 1px solid var(--line);
}

.nav-links a.auth-link.primary {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.nav-links a.auth-link.primary:hover {
  color: #fff;
  background: var(--green-dark);
}

.nav-form {
  margin: 0;
}

.nav-form button {
  cursor: pointer;
  padding: 9px 12px;
  border: 0;
  border-radius: 24px;
  color: #6d5c56;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
}

.nav-form button:hover {
  color: var(--green-dark);
  background: var(--teal-soft);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(14, 28, 35, 0.84), rgba(14, 28, 35, 0.32)),
    var(--hero-image) center / cover no-repeat;
}

.hero-inner,
.page-head-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  padding: 72px 0 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.06;
}

.hero p {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-note {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.home-page {
  padding-bottom: 72px;
}

.home-hero {
  padding: 18px 0 22px;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 38px;
  min-height: 580px;
  padding: 44px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(var(--accent-rgb), 0.08) 52%, rgba(255, 255, 255, 0.88)),
    var(--paper);
  box-shadow: var(--shadow);
}

.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 20px;
  padding: 5px 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-title {
  max-width: 720px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 58px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.home-copy {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.85;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.hero-metric {
  position: relative;
  min-height: 140px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(var(--accent-rgb), 0.06));
  box-shadow: 0 12px 28px rgba(var(--ink-rgb), 0.08);
  overflow: hidden;
}

.hero-metric::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.hero-metric::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 92px;
  height: 92px;
  border-radius: 8px;
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  transform: rotate(14deg);
  background: rgba(255, 255, 255, 0.38);
}

.hero-metric strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 14px;
  color: var(--green);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", Arial, sans-serif;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.metric-number {
  color: var(--green);
  font-family: "STKaiti", "KaiTi", "Songti SC", Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 800;
  line-height: 0.95;
}

.metric-number.metric-word {
  font-size: 44px;
}

.metric-unit {
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 850;
}

.metric-label {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

.brand-card {
  min-height: 470px;
  padding: 28px;
  border-radius: 28px;
  color: #fff5ed;
  background:
    linear-gradient(145deg, rgba(var(--panel-rgb), 0.96), rgba(var(--ink-rgb), 1)),
    var(--green-dark);
  box-shadow: 0 22px 46px rgba(var(--ink-rgb), 0.24);
}

.hero-logo {
  width: 104px;
  height: 104px;
  margin-bottom: 30px;
  border-radius: 24px;
  object-fit: contain;
  padding: 10px;
  background: rgba(255, 250, 243, 0.98);
  border: 1px solid rgba(255, 245, 237, 0.32);
}

.brand-card-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
  color: rgba(255, 245, 237, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.brand-card h2 {
  max-width: 320px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 34px;
  line-height: 1.12;
}

.brand-card p {
  color: rgba(255, 245, 237, 0.68);
}

.exam-priority {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.exam-priority-main,
.exam-priority-row {
  border: 1px solid rgba(255, 245, 237, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.exam-priority-main {
  padding: 18px;
}

.exam-priority-main span,
.exam-priority-row span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 245, 237, 0.66);
  font-size: 13px;
  font-weight: 900;
}

.exam-priority-main strong {
  display: block;
  color: #fff;
  font-size: 23px;
  line-height: 1.35;
}

.exam-priority-main p {
  margin: 10px 0 0;
  color: rgba(255, 245, 237, 0.78);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.7;
}

.exam-priority-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px 15px;
}

.exam-priority-row span {
  margin: 0;
}

.exam-priority-row strong {
  color: rgba(255, 245, 237, 0.95);
  font-size: 15px;
  line-height: 1.45;
}

.module {
  scroll-margin-top: 128px;
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 250, 245, 0.9);
  box-shadow: 0 12px 34px rgba(74, 17, 24, 0.07);
}

.module.dark {
  color: #fff5ed;
  background:
    linear-gradient(145deg, var(--deep-a), var(--deep-b)),
    var(--green-dark);
}

.module-head {
  margin-bottom: 22px;
}

.module-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.module h2 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 42px;
  line-height: 1.15;
}

.module p {
  color: var(--muted);
}

.module.dark p {
  color: rgba(255, 245, 237, 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.exam-card,
.direction-card,
.result-card {
  min-height: 164px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.service-card:first-child {
  background: linear-gradient(145deg, #f4e2dd, rgba(255, 255, 255, 0.72));
}

.service-card .num,
.flow-card .num {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--green);
  background: var(--teal-soft);
  font-weight: 900;
}

.service-card h3,
.exam-card h3,
.direction-card h3,
.result-card h3,
.flow-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

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

.exam-card {
  border-color: rgba(255, 245, 237, 0.14);
  background: rgba(255, 245, 237, 0.08);
}

.exam-card p {
  color: rgba(255, 245, 237, 0.68);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.flow-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

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

.result-module {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.4fr;
  gap: 30px;
  align-items: center;
}

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

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

.trust-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.trust-card strong {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-family: Georgia, "Times New Roman", serif;
}

.trust-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.split-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.split-head > div {
  max-width: 760px;
}

.text-link {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 8px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.text-link.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.school-module {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(var(--accent-rgb), 0.05)),
    rgba(255, 250, 245, 0.95);
}

.country-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.country-tabs button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.country-tabs button:hover,
.country-tabs button.active {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 22px rgba(var(--accent-rgb), 0.18);
}

.school-layout {
  display: block;
}

.country-school-panels {
  min-width: 0;
}

.country-school-panel {
  display: none;
}

.country-school-panel.active {
  display: block;
}

.country-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), rgba(255, 255, 255, 0.82)),
    #fff;
}

.country-panel-head span,
.famous-school-card span,
.school-guide span,
.competitiveness-grid span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.country-panel-head h3 {
  margin-bottom: 4px;
  font-size: 28px;
}

.country-panel-head p {
  max-width: 660px;
  color: var(--muted);
}

.famous-school-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.famous-school-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(var(--ink-rgb), 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.famous-school-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.32);
  box-shadow: 0 16px 34px rgba(var(--ink-rgb), 0.12);
}

.famous-school-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.famous-school-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: 18px 20px;
}

.famous-school-card h4 {
  margin-bottom: 6px;
  font-size: 24px;
}

.famous-school-card p {
  margin-bottom: 6px;
  color: var(--muted);
}

.famous-school-card small {
  display: block;
  margin-bottom: 8px;
  color: #6f7f99;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 750;
}

.famous-school-card em {
  margin-top: auto;
  color: var(--green-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.more-school-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.more-school-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  border-radius: 8px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 820;
}

.more-school-links a:hover {
  color: #fff;
  background: var(--green);
}

.school-guide {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.school-guide img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.school-guide div {
  padding: 22px;
}

.school-guide h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.school-guide ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.school-guide li {
  color: var(--muted);
  font-weight: 780;
}

.school-guide li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  vertical-align: 2px;
}

.exam-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.exam-focus-grid article {
  position: relative;
  min-height: 188px;
  padding: 24px;
  border: 1px solid rgba(255, 245, 237, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
}

.exam-focus-grid article::after {
  content: "主力服务";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 9px;
  border-radius: 8px;
  color: #10264d;
  background: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 900;
}

.exam-focus-grid strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  letter-spacing: 0;
}

.exam-focus-grid h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 23px;
}

.exam-secondary {
  display: grid;
  grid-template-columns: 150px repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 245, 237, 0.16);
}

.exam-secondary > span,
.exam-secondary > div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255, 245, 237, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.exam-secondary > span {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
}

.exam-secondary strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 15px;
}

.exam-secondary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.65;
}

.journey-module {
  overflow: hidden;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  gap: 28px;
  overflow-x: auto;
  padding: 8px 4px 12px;
}

.journey-steps article {
  position: relative;
  min-height: 236px;
  padding: 26px 20px;
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  border-radius: 999px 999px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(var(--accent-rgb), 0.06)),
    #fff;
  text-align: center;
  box-shadow: 0 10px 26px rgba(var(--ink-rgb), 0.06);
}

.journey-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  width: 24px;
  height: 14px;
  background: rgba(var(--accent-rgb), 0.28);
  clip-path: polygon(0 39%, 62% 39%, 62% 0, 100% 50%, 62% 100%, 62% 61%, 0 61%);
  transform: translateY(-50%);
  z-index: 1;
}

.journey-steps span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.journey-steps h3 {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 22px;
}

.journey-steps p {
  color: #3f4c5e;
  font-weight: 760;
}

.competitiveness-module {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb), 0.11), rgba(255, 255, 255, 0.88)),
    rgba(255, 250, 245, 0.96);
}

.competitiveness-intro {
  padding: 28px;
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(145deg, var(--deep-a), var(--deep-b)),
    var(--green-dark);
  box-shadow: 0 18px 42px rgba(var(--ink-rgb), 0.18);
}

.competitiveness-intro .module-label,
.competitiveness-intro h2,
.competitiveness-intro p {
  color: #fff;
}

.competitiveness-intro p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.74);
}

.competitiveness-intro .button {
  background: #fff;
  color: var(--green-dark);
}

.competitiveness-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.competitiveness-grid article {
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(var(--ink-rgb), 0.06);
}

.competitiveness-grid h3 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 22px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.72);
}

.home-hero .button.secondary {
  color: var(--green);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.button.leaf {
  color: #fff;
  background: var(--leaf);
}

.button.light {
  background: #fff;
  color: var(--green-dark);
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: var(--mist);
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.page-head h1 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.14;
}

.section-head p,
.page-head p,
.lead {
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(24, 32, 42, 0.06);
}

.card-body {
  padding: 24px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.card p {
  color: var(--muted);
}

.card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-visual {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px rgba(var(--ink-rgb), 0.1);
}

.photo-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.photo-row img {
  height: 100%;
  min-height: 220px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-row img:first-child {
  aspect-ratio: 21 / 10;
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--green-dark);
  font-weight: 750;
  font-size: 14px;
}

.resource-hub {
  padding-bottom: 44px;
}

.resource-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.resource-nav a {
  min-height: 74px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 22px rgba(var(--ink-rgb), 0.06);
  font-weight: 850;
  text-align: center;
}

.resource-nav a:hover {
  border-color: rgba(var(--accent-rgb), 0.32);
  transform: translateY(-2px);
}

.exam-resource-section {
  scroll-margin-top: 128px;
}

.resource-first {
  padding-top: 54px;
  background:
    radial-gradient(circle at 92% 10%, rgba(108, 157, 87, 0.14), transparent 28%),
    linear-gradient(180deg, #fffaf3, var(--mist));
}

.toefl-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 34px;
}

.toefl-overview > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.toefl-overview > div:first-child {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 243, 0.78)),
    #fff;
}

.toefl-overview h1 {
  max-width: 760px;
  margin: 8px 0 18px;
  color: var(--green-dark);
  font-size: clamp(42px, 6vw, 66px);
}

.toefl-overview p {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 18px;
}

.resource-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.resource-chip-row a {
  padding: 9px 13px;
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  border-radius: 8px;
  color: var(--green-dark);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 227, 221, 0.88));
  box-shadow: 0 8px 18px rgba(var(--ink-rgb), 0.06);
  font-weight: 900;
}

.resource-chip-row a:hover {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.resource-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.resource-entry-card {
  min-height: 285px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(245, 236, 227, 0.72)),
    #fff;
  box-shadow: 0 12px 26px rgba(var(--ink-rgb), 0.08);
}

.resource-entry-card.dark {
  color: #fff5ed;
  background:
    linear-gradient(145deg, rgba(var(--panel-rgb), 0.98), rgba(var(--ink-rgb), 1)),
    var(--green-dark);
}

.resource-entry-card span {
  width: fit-content;
  margin-bottom: 32px;
  padding: 6px 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.resource-entry-card.dark span {
  color: var(--green-dark);
  background: #f3c98f;
}

.resource-entry-card h2 {
  margin-bottom: 12px;
  font-size: 29px;
  line-height: 1.18;
}

.resource-entry-card p {
  color: var(--muted);
}

.resource-entry-card.dark p {
  color: rgba(255, 245, 237, 0.76);
}

.toefl-guide {
  padding: 26px;
  display: flex;
  flex-direction: column;
  color: #fff5ed;
  background:
    linear-gradient(145deg, rgba(var(--panel-rgb), 0.98), rgba(var(--ink-rgb), 1)),
    var(--green-dark);
}

.toefl-guide strong {
  margin-bottom: 12px;
  color: #f3c98f;
  font-size: 20px;
}

.toefl-guide p {
  color: rgba(255, 245, 237, 0.78);
}

.toefl-guide .button {
  width: fit-content;
  margin-top: auto;
}

.resource-section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.resource-section-top.compact {
  margin-bottom: 18px;
}

.resource-section-top h2 {
  margin: 8px 0 10px;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.14;
}

.resource-section-top p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.resource-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 16px;
  align-items: stretch;
}

.resource-card {
  min-height: 238px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 26px rgba(var(--ink-rgb), 0.06);
  position: relative;
  overflow: hidden;
}

.resource-card::before {
  content: "";
  width: 64px;
  height: 6px;
  position: absolute;
  top: 0;
  left: 24px;
  border-radius: 0 0 8px 8px;
  background: var(--green);
}

.resource-card.primary {
  grid-row: span 2;
  min-height: 492px;
  color: #fff5ed;
  background:
    linear-gradient(145deg, rgba(var(--panel-rgb), 0.96), rgba(var(--ink-rgb), 1)),
    var(--green-dark);
}

.resource-card.primary::before {
  background: #f3c98f;
}

.resource-card.mock::before {
  background: var(--gold);
}

.resource-card.sample::before {
  background: var(--leaf);
}

.resource-card.speaking::before {
  background: var(--coral);
}

.resource-card.review::before {
  background: #6d5c56;
}

.resource-card.slim {
  min-height: auto;
}

.resource-card .module-label {
  color: var(--gold);
}

.resource-card.primary .module-label {
  color: #d9aa72;
}

.resource-card h3 {
  margin: 10px 0 12px;
  font-size: 25px;
  line-height: 1.22;
}

.resource-card p {
  color: var(--muted);
}

.resource-card.primary p {
  color: rgba(255, 245, 237, 0.76);
}

.card-meta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0 26px;
}

.card-meta-row span {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 245, 237, 0.92);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 850;
}

.resource-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.resource-actions .button {
  min-height: 42px;
  padding: 9px 14px;
}

.resource-actions .button.light {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 10px 20px rgba(var(--accent-rgb), 0.16);
}

.resource-actions .button.light:hover {
  background: var(--green-dark);
}

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

.scenario-card {
  min-height: 315px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 243, 0.8)),
    #fff;
  box-shadow: 0 10px 26px rgba(var(--ink-rgb), 0.06);
}

.scenario-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--green);
}

.scenario-card span {
  width: fit-content;
  margin-bottom: 34px;
  padding: 7px 11px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.scenario-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.24;
}

.scenario-card p {
  color: var(--muted);
}

.scenario-card.answer::before,
.scenario-card.answer span {
  background: var(--gold);
}

.scenario-card.transcript::before,
.scenario-card.transcript span {
  background: var(--leaf);
}

.scenario-card.speaking-answer::before,
.scenario-card.speaking-answer span {
  background: var(--coral);
}

.scenario-card.full-pack {
  color: #fff5ed;
  background:
    linear-gradient(145deg, rgba(var(--panel-rgb), 0.96), rgba(var(--ink-rgb), 1)),
    var(--green-dark);
}

.scenario-card.full-pack::before,
.scenario-card.full-pack span {
  color: var(--green-dark);
  background: #f3c98f;
}

.scenario-card.full-pack p {
  color: rgba(255, 245, 237, 0.76);
}

.scenario-card.official::before,
.scenario-card.official span {
  background: #6d5c56;
}

.tiny-link {
  width: fit-content;
  margin-top: auto;
  min-height: 42px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 20px rgba(var(--accent-rgb), 0.16);
  font-weight: 850;
}

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

.exam-resource-card {
  min-height: 258px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 243, 0.76)),
    #fff;
  box-shadow: 0 10px 26px rgba(var(--ink-rgb), 0.06);
}

.exam-resource-card span {
  width: fit-content;
  margin-bottom: 34px;
  padding: 6px 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.exam-resource-card.toeic span {
  background: var(--gold);
}

.exam-resource-card.gre span {
  background: var(--green-dark);
}

.exam-resource-card.duolingo span {
  background: var(--leaf);
}

.exam-resource-card.ielts span {
  background: var(--coral);
}

.exam-resource-card.other span {
  background: #6d5c56;
}

.exam-resource-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.exam-resource-card p {
  color: var(--muted);
}

.exam-resource-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--green);
  font-weight: 850;
}

.exam-resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
}

.exam-resource-links a {
  width: auto;
  margin-top: 0;
  padding: 8px 11px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 8px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.exam-resource-links a:hover {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.resource-student-guide {
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), rgba(255, 255, 255, 0.42)),
    var(--mist);
}

.student-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.student-guide-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    #fff;
  box-shadow: 0 12px 30px rgba(var(--ink-rgb), 0.07);
}

.student-guide-grid strong {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.student-guide-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.student-guide-grid p {
  color: var(--muted);
}

.about-stats {
  margin: 0;
}

.about-pillars .module-label {
  color: var(--gold);
}

.about-offline-first {
  padding-top: 58px;
  background:
    radial-gradient(circle at 92% 8%, rgba(var(--accent-rgb), 0.08), transparent 28%),
    var(--mist);
}

.campus-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.campus-card {
  min-height: 240px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 243, 0.8)),
    #fff;
  box-shadow: 0 10px 26px rgba(var(--ink-rgb), 0.06);
}

.campus-card.featured {
  color: #fff5ed;
  background:
    linear-gradient(145deg, rgba(var(--panel-rgb), 0.96), rgba(var(--ink-rgb), 1)),
    var(--green-dark);
}

.campus-card span {
  width: fit-content;
  margin-bottom: 34px;
  padding: 6px 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.campus-card.featured span {
  color: var(--green-dark);
  background: #f3c98f;
}

.campus-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.campus-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.campus-card.featured p {
  color: rgba(255, 245, 237, 0.92);
}

.campus-card small {
  display: block;
  margin-top: auto;
  color: var(--muted);
  font-weight: 700;
}

.campus-card.featured small {
  color: rgba(255, 245, 237, 0.7);
}

.resource-pack {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: start;
}

.resource-pack-main {
  padding: 28px;
  border-radius: 8px;
  color: #fff5ed;
  background:
    linear-gradient(145deg, rgba(var(--panel-rgb), 0.96), rgba(var(--ink-rgb), 1)),
    var(--green-dark);
  box-shadow: var(--shadow);
}

.resource-pack-main .module-label {
  color: var(--gold);
}

.resource-pack-main h3 {
  margin: 12px 0 12px;
  font-size: 32px;
  line-height: 1.18;
}

.resource-pack-main p {
  margin-bottom: 22px;
  color: rgba(255, 245, 237, 0.74);
}

.pack-meta {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

.pack-meta div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.pack-meta dt,
.pack-meta dd {
  margin: 0;
}

.pack-meta dt {
  color: rgba(255, 245, 237, 0.56);
  font-size: 13px;
  font-weight: 800;
}

.pack-meta dd {
  color: rgba(255, 245, 237, 0.9);
  font-weight: 750;
}

.resource-pack-main .tag {
  color: #fff5ed;
  background: rgba(255, 255, 255, 0.12);
}

.download-panel {
  display: grid;
  gap: 12px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.download-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(var(--ink-rgb), 0.05);
}

.download-item:hover {
  border-color: rgba(var(--accent-rgb), 0.36);
  box-shadow: 0 14px 28px rgba(var(--ink-rgb), 0.09);
}

.download-item.feature {
  padding: 18px;
  border-color: rgba(108, 157, 87, 0.26);
  background:
    linear-gradient(90deg, rgba(108, 157, 87, 0.09), rgba(255, 255, 255, 0.92)),
    #fff;
}

.download-item strong,
.download-item small,
.download-item i {
  display: block;
}

.download-item strong {
  font-size: 17px;
}

.download-item small {
  color: var(--muted);
  font-size: 13px;
}

.download-item i {
  margin-bottom: 4px;
  color: var(--gold);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.download-item em {
  min-width: 86px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.download-grid .download-item {
  grid-template-columns: minmax(0, 1fr);
  align-content: space-between;
  min-height: 150px;
  padding: 17px;
}

.download-grid .download-item em {
  width: fit-content;
  min-width: 74px;
  margin-top: 10px;
}

.download-item.highlight em {
  background: var(--leaf);
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 44px;
}

.split img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 30px;
  position: relative;
  color: #37424d;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--coral);
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-item {
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.process-item::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 24px;
  color: var(--coral);
  font-weight: 900;
  font-size: 26px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pillar {
  min-height: 220px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.pillar h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.pillar p {
  color: var(--muted);
}

.mini-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.mini-item {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mini-item strong {
  display: block;
  margin-bottom: 6px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  font-weight: 800;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.notice-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.notice {
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--teal-soft);
  color: #24443e;
  font-weight: 700;
}

.banner {
  color: #fff;
  background: var(--green-dark);
}

.banner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.banner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.page-head {
  padding: 74px 0;
  background:
    linear-gradient(90deg, rgba(14, 28, 35, 0.82), rgba(14, 28, 35, 0.28)),
    var(--page-image) center / cover no-repeat;
  color: #fff;
}

.page-head p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(24, 32, 42, 0.06);
}

.table th,
.table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.table th {
  background: var(--green);
  color: #fff;
}

.table tr:last-child td {
  border-bottom: 0;
}

.exam-page .section {
  padding: 64px 0;
}

.exam-table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  overflow: hidden;
}

.exam-table th {
  background: linear-gradient(135deg, var(--table-a), var(--table-b));
}

.exam-table th:first-child,
.exam-table td:first-child {
  width: 15%;
  text-align: center;
}

.exam-table td:first-child {
  color: var(--green-dark);
  font-weight: 900;
  vertical-align: middle;
}

.exam-table tbody tr:nth-child(2n) td {
  background: #fffaf3;
}

.exam-table tbody tr:nth-child(2n + 1) td {
  background: #fff;
}

.stage-card {
  border-radius: 12px;
  position: relative;
}

.stage-card::before {
  content: "";
  display: block;
  height: 8px;
  background: var(--green);
}

.stage-foundation::before {
  background: var(--leaf);
}

.stage-boost::before {
  background: var(--gold);
}

.stage-sprint::before {
  background: var(--green);
}

.stage-card h3 {
  color: var(--green-dark);
}

.mini-item:nth-child(1) {
  border-left: 6px solid var(--leaf);
}

.mini-item:nth-child(2) {
  border-left: 6px solid var(--gold);
}

.mini-item:nth-child(3) {
  border-left: 6px solid var(--green);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 32px;
  align-items: start;
}

.contact-main {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.consult-note {
  margin: 10px 0 18px;
  padding: 20px;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.15), rgba(var(--panel-rgb), 0.08) 58%, rgba(255, 255, 255, 0.88));
}

.consult-note strong,
.consult-note span {
  display: block;
}

.consult-note strong {
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 22px;
}

.consult-note span {
  color: #5f504b;
  font-weight: 760;
  line-height: 1.75;
}

.wechat-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.wechat-list div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wechat-list div.featured {
  color: #fff;
  border-color: rgba(149, 42, 52, 0.34);
  background: linear-gradient(135deg, #c72f42, #df4050);
  box-shadow: 0 12px 24px rgba(149, 42, 52, 0.18);
}

.wechat-list div.featured.alt {
  color: #fff;
  border-color: rgba(112, 39, 49, 0.28);
  background: linear-gradient(135deg, #8c2f38, #bd4551);
}

.wechat-list strong,
.wechat-list span {
  display: block;
}

.wechat-list strong {
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.25;
}

.wechat-list div.featured strong {
  color: #fff;
}

.wechat-list span {
  margin-top: 4px;
  color: #6d5b54;
  font-weight: 800;
  line-height: 1.35;
}

.wechat-list div.featured span {
  color: rgba(255, 255, 255, 0.92);
}

.qr-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-frame {
  width: min(100%, 340px);
  max-width: 340px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.qr-frame::before {
  content: "";
  display: block;
  aspect-ratio: 1;
}

.qr-panel img,
.qr-slide {
  width: min(100%, 340px);
  max-width: 340px;
  margin: 0;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.qr-frame .qr-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  border: 0;
  opacity: 0;
  object-fit: contain;
  transform: scale(1.006);
  transition: opacity 520ms ease, transform 520ms ease;
}

.qr-frame .qr-slide.active {
  opacity: 1;
  transform: scale(1);
}

.qr-copy {
  width: min(100%, 360px);
  margin-top: 18px;
  padding: 18px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: var(--paper);
}

.qr-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.qr-panel h2 {
  margin-bottom: 8px;
}

.qr-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.qr-dots {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.qr-dots button {
  width: 28px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: rgba(var(--accent-rgb), 0.22);
  cursor: pointer;
}

.qr-dots button.active {
  background: var(--green);
}

.contact-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-service-card {
  min-height: 270px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 243, 0.8)),
    #fff;
  box-shadow: 0 10px 26px rgba(var(--ink-rgb), 0.06);
}

.contact-service-card span {
  width: fit-content;
  margin-bottom: 34px;
  padding: 6px 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.contact-service-card:nth-child(2) span {
  background: var(--leaf);
}

.contact-service-card:nth-child(3) span {
  background: var(--green-dark);
}

.contact-service-card:nth-child(4) span {
  background: var(--gold);
}

.contact-service-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.contact-service-card p {
  color: var(--muted);
}

.contact-panel {
  padding: 28px;
  border-radius: 8px;
  background: var(--mist);
  border: 1px solid var(--line);
}

.auth-head {
  min-height: 360px;
  display: grid;
  align-items: end;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}

.auth-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(24, 32, 42, 0.06);
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field label {
  color: #33404d;
  font-weight: 800;
}

.form-field input {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.form-field input:focus {
  outline: 3px solid rgba(31, 122, 103, 0.18);
  border-color: var(--green);
}

.form-error {
  display: none;
  margin-bottom: 18px;
  color: var(--coral);
  font-weight: 800;
}

.auth-button {
  width: 100%;
}

.auth-switch {
  margin-top: 18px;
  color: var(--muted);
}

.auth-switch a {
  color: var(--green-dark);
  font-weight: 800;
}

.placeholder {
  min-height: 140px;
  display: grid;
  place-items: center;
  border: 1px dashed #aab8bf;
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.credits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.credit-item {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(var(--ink-rgb), 0.05);
}

.credit-item strong {
  color: var(--green-dark);
  font-size: 18px;
}

.credit-item span,
.credit-item em {
  color: var(--muted);
  font-style: normal;
}

.credit-item a {
  color: var(--green);
  font-weight: 850;
}

.site-footer {
  padding: 42px 0 32px;
  background: var(--footer);
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(300px, 0.82fr) minmax(480px, 1.32fr);
  gap: 22px;
  align-items: stretch;
}

.footer-brand,
.footer-nav,
.footer-contact {
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-footer strong {
  color: #fff;
}

.site-footer a {
  display: block;
}

.footer-addresses {
  width: 100%;
  display: grid;
  gap: 10px;
}

.footer-addresses b,
.footer-nav-group span,
.footer-contact-section b {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 860;
}

.footer-addresses span {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 720;
  line-height: 1.6;
}

.footer-nav strong {
  margin-bottom: 16px;
}

.footer-nav-groups {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.footer-nav-group {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 7px;
}

.footer-nav-group span {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-nav a {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.35;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.footer-contact-section {
  display: grid;
  gap: 10px;
}

.footer-contact-list {
  display: grid;
  gap: 10px;
}

.footer-email-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-phone-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-contact-list a {
  display: flex;
  min-width: 0;
  min-height: 76px;
  margin: 0;
  padding: 12px 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  text-align: center;
}

.footer-contact-list span {
  color: #fff;
  font-weight: 860;
  line-height: 1.25;
  word-break: break-word;
}

.footer-contact-list em {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.copyright {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
  text-align: center;
}

.consult-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: min(360px, calc(100vw - 32px));
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", Arial, sans-serif;
}

.consult-toggle {
  display: grid;
  width: 168px;
  min-height: 62px;
  margin-left: auto;
  padding: 10px 18px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 36px rgba(var(--ink-rgb), 0.24);
  cursor: pointer;
  text-align: left;
}

.consult-toggle span {
  font-size: 12px;
  font-weight: 900;
  opacity: 0.82;
}

.consult-toggle strong {
  font-size: 17px;
  line-height: 1.25;
}

.consult-panel {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 60px rgba(var(--ink-rgb), 0.22);
}

.consult-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--deep-a), var(--deep-b));
}

.consult-head span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
}

.consult-head strong {
  display: block;
  font-size: 17px;
  line-height: 1.4;
}

.consult-close {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.consult-form {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.consult-form label {
  display: grid;
  gap: 6px;
}

.consult-form label span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
}

.consult-form textarea {
  min-height: 96px;
  resize: vertical;
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(var(--accent-rgb), 0.15);
}

.consult-honey {
  position: absolute;
  left: -9999px;
}

.consult-submit {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  cursor: pointer;
  font-weight: 900;
}

.consult-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.consult-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-tools {
    justify-content: flex-start;
  }

  .hero {
    min-height: 760px;
  }

  .grid.three,
  .grid.two,
  .split,
  .photo-row,
  .toefl-overview,
  .resource-entry-grid,
  .resource-layout,
  .resource-pack,
  .scenario-grid,
  .exam-resource-grid,
  .student-guide-grid,
  .campus-grid,
  .contact-layout,
  .contact-service-grid,
  .auth-layout,
  .hero-stage,
	  .service-grid,
	  .exam-grid,
	  .exam-focus-grid,
	  .exam-secondary,
	  .flow-grid,
	  .direction-grid,
	  .result-module,
	  .result-grid,
	  .trust-grid,
	  .school-layout,
	  .competitiveness-module,
	  .competitiveness-grid,
	  .process,
	  .stats,
	  .pillars,
  .credits-list,
  .notice-strip,
	  .footer-grid {
	    grid-template-columns: 1fr;
	  }

  .resource-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

	  .resource-section-top {
	    align-items: flex-start;
	    flex-direction: column;
	  }

  .split-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .famous-school-card {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .famous-school-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-steps {
    grid-template-columns: repeat(3, minmax(190px, 1fr));
  }

  .journey-steps article:not(:last-child)::after {
    display: none;
  }

  .footer-brand,
  .footer-nav,
  .footer-contact {
    min-height: auto;
  }

  .footer-brand,
  .footer-nav {
    justify-content: flex-start;
  }

  .footer-nav-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-phone-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-card.primary {
    min-height: auto;
  }

  .toefl-overview > div:first-child,
  .toefl-guide {
    padding: 24px;
  }

  .banner .wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-stage {
    min-height: auto;
    padding: 30px 22px;
  }

  .home-title {
    font-size: 42px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .brand-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .nav-links a {
    padding: 8px 9px;
    font-size: 14px;
  }

  .section {
    padding: 58px 0;
  }

  .hero-inner {
    padding-bottom: 58px;
  }

  .table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .resource-nav {
    grid-template-columns: 1fr;
  }

  .card-meta-row {
    grid-template-columns: 1fr;
  }

  .module {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .module h2 {
    font-size: 32px;
  }

  .country-tabs {
    gap: 8px;
  }

  .country-tabs button {
    min-height: 32px;
    padding: 0 10px;
    font-size: 13px;
  }

  .country-panel-head {
    padding: 16px;
  }

  .famous-school-card {
    grid-template-columns: 1fr;
  }

  .famous-school-grid {
    grid-template-columns: 1fr;
  }

  .famous-school-card img {
    min-height: 160px;
    aspect-ratio: 16 / 9;
  }

  .journey-steps {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .journey-steps article {
    min-height: auto;
    border-radius: 18px;
  }

  .wechat-list {
    grid-template-columns: 1fr;
  }

  .download-item {
    grid-template-columns: 1fr;
  }

  .download-item em {
    width: fit-content;
  }

  .footer-email-list,
  .footer-phone-list,
  .footer-nav-groups {
    grid-template-columns: 1fr;
  }

  .consult-widget {
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
  }

  .consult-toggle {
    width: 152px;
  }
}
