:root {
  --ink: #11233a;
  --muted: #5f6d7c;
  --line: #dfe7ed;
  --paper: #ffffff;
  --mist: #f4f8f7;
  --green: #0f8c6b;
  --teal: #0b7085;
  --amber: #d99124;
  --coral: #d75f4b;
  --blue: #315fa8;
  --shadow: 0 20px 50px rgba(24, 48, 68, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: var(--paper);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 231, 237, 0.8);
  backdrop-filter: blur(16px);
}

.topbar,
.navbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
}

.topbar-contact {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 18px;
  color: #0c6b56;
  font-weight: 800;
}

.topbar-links {
  display: flex;
  gap: 18px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--teal));
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #24394d;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a:hover,
.topbar-links a:hover {
  color: var(--green);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
}

.hero > img {
  width: 100%;
  height: 660px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 29, 45, 0.82) 0%, rgba(9, 29, 45, 0.58) 42%, rgba(9, 29, 45, 0.08) 78%),
    linear-gradient(0deg, rgba(7, 24, 33, 0.42), rgba(7, 24, 33, 0.05));
}

.hero-content {
  position: absolute;
  inset: 0;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: white;
  padding-bottom: 40px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7be0bd;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--green);
}

.button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.14);
}

.hero-stats span {
  min-width: 150px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.hero-stats strong {
  display: block;
  font-size: 24px;
}

.quick-panel {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1040px, calc(100% - 40px));
  margin: -42px auto 0;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.quick-panel a {
  display: grid;
  min-height: 84px;
  place-items: center;
  border-right: 1px solid var(--line);
  color: #24394d;
  font-weight: 800;
}

.quick-panel a:last-child {
  border-right: 0;
}

.quick-panel a:hover {
  color: white;
  background: var(--teal);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.section-heading p:not(.eyebrow),
.school-copy p,
.contact-section p,
.service-card p,
.plan-card p,
.consultant-card p,
.case-list p,
.school-detail p,
.why-grid p,
.library-card p,
.vip-steps p,
.stage-panel p {
  color: var(--muted);
}

.why-section {
  padding-bottom: 72px;
}

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

.why-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f5faf8 100%);
  box-shadow: 0 14px 35px rgba(33, 55, 72, 0.06);
}

.why-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 20px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

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

.service-card,
.plan-card,
.consultant-card,
.case-list article,
.school-detail {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 35px rgba(33, 55, 72, 0.07);
}

.service-card {
  min-height: 230px;
  padding: 26px;
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--blue);
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.icon.amber {
  background: var(--amber);
}

.icon.teal {
  background: var(--teal);
}

.icon.coral {
  background: var(--coral);
}

.school-band {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 24px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 84px max(20px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, #eef8f3 0%, #f9fbff 58%, #fff5e8 100%);
}

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

.school-tab {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--ink);
  background: white;
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.school-tab.active {
  color: white;
  border-color: var(--green);
  background: var(--green);
}

.school-detail {
  grid-column: 2;
  padding: 28px;
}

.school-detail span {
  display: inline-block;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 800;
}

.plan-grid {
  display: grid;
  width: min(840px, 100%);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(223, 231, 237, 0.9);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 45px rgba(33, 55, 72, 0.08);
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  transform: translateY(0) scale(1);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    background 220ms ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(15, 140, 107, 0.92), rgba(11, 112, 133, 0.92)),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.32), transparent 34%);
  transition: opacity 220ms ease;
}

.plan-card > * {
  position: relative;
  z-index: 1;
}

.plan-card:hover,
.plan-card:focus-visible {
  color: white;
  border-color: rgba(15, 140, 107, 0.28);
  box-shadow: 0 16px 32px rgba(15, 79, 91, 0.18);
  transform: translateY(-4px) scale(1.018);
}

.plan-card:hover::before,
.plan-card:focus-visible::before {
  opacity: 1;
}

.plan-card:nth-child(1) {
  grid-column: span 5;
}

.plan-card:nth-child(2) {
  grid-column: span 3;
}

.plan-card:nth-child(3) {
  grid-column: span 4;
}

.plan-card:nth-child(4) {
  grid-column: span 5;
}

.plan-card:nth-child(5) {
  grid-column: span 7;
}

.stage-copy {
  display: block;
  min-width: 0;
}

.plan-card h3 {
  margin-bottom: 4px;
  font-size: 24px;
}

.plan-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  transition: color 220ms ease;
}

.stage-visual {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: currentColor;
  background: rgba(255, 255, 255, 0.46);
  opacity: 0.72;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.stage-visual svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.plan-card:hover .stage-visual,
.plan-card:focus-visible .stage-visual {
  background: rgba(255, 255, 255, 0.18);
  opacity: 0.95;
  transform: translateX(3px) scale(1.08);
}

.stage-undergraduate {
  color: #0f8c6b;
  background: #dff7ee;
}

.stage-foundation {
  color: #c98215;
  background: #fff0d7;
}

.stage-school {
  color: #335fae;
  background: #e9efff;
}

.stage-master {
  color: #996528;
  background: #f8ead6;
}

.stage-doctor {
  color: #0b7085;
  background: #e0f5fb;
}

.plan-card:hover,
.plan-card:hover p,
.plan-card:focus-visible,
.plan-card:focus-visible p,
.plan-card:hover h3,
.plan-card:focus-visible h3 {
  color: white;
}

.stage-detail {
  width: min(980px, 100%);
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 45px rgba(33, 55, 72, 0.08);
}

.stage-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}

.stage-tab {
  min-height: 54px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  background: #f8fbfb;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.stage-tab:last-child {
  border-right: 0;
}

.stage-tab.active {
  color: white;
  background: var(--green);
}

.stage-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  padding: 30px;
}

.stage-panel h3 {
  margin-bottom: 14px;
  font-size: 28px;
}

.stage-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stage-panel li {
  position: relative;
  padding-left: 22px;
  color: #2c4052;
}

.stage-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.library-section {
  padding-top: 30px;
}

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

.library-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 35px rgba(33, 55, 72, 0.07);
}

.library-card h3 {
  margin-bottom: 14px;
}

.library-card span {
  display: block;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 800;
}

.major-bank {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.major-bank span {
  padding: 10px 14px;
  border: 1px solid rgba(15, 140, 107, 0.2);
  border-radius: 8px;
  color: #0c6b56;
  background: #edf9f4;
  font-weight: 800;
}

.vip-section {
  padding-top: 30px;
}

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

.vip-steps article {
  min-height: 230px;
  padding: 28px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, #10283b, #0f8c6b);
  box-shadow: 0 18px 45px rgba(16, 40, 59, 0.18);
}

.vip-steps span {
  display: block;
  margin-bottom: 34px;
  color: #9be5c7;
  font-size: 34px;
  font-weight: 900;
}

.vip-steps p {
  color: rgba(255, 255, 255, 0.82);
}

.consultants {
  display: grid;
  grid-template-columns: minmax(300px, 0.64fr) minmax(560px, 1fr);
  gap: 54px;
  align-items: center;
}

.consultant-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: end;
}

.consultant-card {
  min-height: 430px;
  padding: 22px;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.advisor-profile {
  display: flex;
  flex-direction: column;
}

.featured-advisor {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1fr);
  gap: 26px;
  align-items: stretch;
  min-height: 0;
}

.consultant-card:hover,
.consultant-card.contact-open {
  border-color: rgba(15, 140, 107, 0.32);
  box-shadow: 0 24px 56px rgba(33, 55, 72, 0.13);
  transform: translateY(-4px);
}

.advisor-media {
  position: relative;
  display: block;
  width: 100%;
  min-height: 260px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: white;
  background: #edf3f5;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.featured-advisor .advisor-media {
  min-height: 420px;
}

.advisor-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 16%;
  transform: scale(1);
  transition: transform 280ms ease, filter 280ms ease;
}

.featured-advisor .advisor-photo {
  height: 100%;
  min-height: 420px;
}

.advisor-media:hover .advisor-photo,
.contact-open .advisor-photo {
  filter: saturate(0.98) contrast(1.04);
  transform: scale(1.055);
}

.advisor-media-hint {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: white;
  background: rgba(16, 40, 59, 0.68);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.advisor-mask {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  background: rgba(244, 248, 247, 0.78);
  backdrop-filter: blur(3px);
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.contact-open .advisor-mask {
  opacity: 1;
  transform: translateY(0);
}

.contact-open .advisor-media-hint {
  opacity: 0;
  transform: translateY(8px);
}

.advisor-mask span {
  display: grid;
  min-height: 38px;
  align-items: start;
  gap: 3px;
  border-bottom: 1px solid rgba(95, 109, 124, 0.22);
  color: #33475b;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.advisor-mask span:last-child {
  border-bottom: 0;
}

.advisor-mask strong {
  color: #11233a;
  font-size: 13px;
  font-weight: 900;
}

.avatar {
  display: grid;
  width: 92px;
  height: 92px;
  margin-bottom: 0;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--coral);
  font-size: 34px;
  font-weight: 900;
}

.avatar.green {
  background: var(--green);
}

.avatar.blue {
  background: var(--blue);
}

.advisor-body {
  flex: 1;
  padding: 22px 4px 4px;
}

.featured-advisor .advisor-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 6px 8px;
}

.advisor-role {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 8px;
  color: #0c6b56;
  background: #edf9f4;
  font-size: 13px;
  font-weight: 900;
}

.advisor-credential {
  color: #2f4b64;
  font-weight: 800;
}


.case-news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

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

.case-list article {
  padding: 22px;
}

.news-list {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.news-list a {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: white;
  font-weight: 800;
}

.news-list a:last-child {
  border-bottom: 0;
}

.news-list a:hover {
  color: var(--green);
  background: var(--mist);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
  padding: 84px max(20px, calc((100vw - 1180px) / 2));
  color: white;
  background: #10283b;
}

.contact-section .eyebrow,
.contact-section p {
  color: #9be5c7;
}

.contact-copy {
  display: grid;
  gap: 18px;
}

.direct-contact {
  display: grid;
  gap: 8px;
  max-width: 420px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.direct-contact strong {
  color: white;
  font-size: 18px;
}

.direct-contact span {
  color: #9be5c7;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 14px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
}

.contact-form textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.contact-form select option {
  color: var(--ink);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #9be5c7;
}

.footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 28px max(20px, calc((100vw - 1180px) / 2));
  color: var(--muted);
  background: #f6f8fa;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: white;
  background: var(--green);
  box-shadow: 0 16px 36px rgba(15, 79, 91, 0.26);
  transform: translateY(0) scale(1);
  transition:
    transform 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--teal);
  box-shadow: 0 20px 46px rgba(11, 112, 133, 0.3);
  transform: translateY(-4px) scale(1.04);
}

@media (max-width: 900px) {
  .topbar-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 118px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero,
  .hero > img {
    min-height: 720px;
    height: 720px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(9, 29, 45, 0.86), rgba(9, 29, 45, 0.32));
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 92px;
  }

  .quick-panel,
  .intro-grid,
  .why-grid,
  .school-band,
  .stage-panel,
  .library-grid,
  .vip-steps,
  .consultants,
  .consultant-grid,
  .case-news,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .consultant-grid {
    justify-content: stretch;
  }

  .featured-advisor {
    grid-template-columns: 1fr;
  }

  .featured-advisor .advisor-media,
  .featured-advisor .advisor-photo {
    min-height: 360px;
  }

  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
  }

  .plan-card,
  .plan-card:nth-child(1),
  .plan-card:nth-child(2),
  .plan-card:nth-child(3),
  .plan-card:nth-child(4),
  .plan-card:nth-child(5) {
    grid-column: auto;
  }

  .quick-panel {
    margin-top: -34px;
  }

  .quick-panel a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-panel a:last-child {
    border-bottom: 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .school-detail {
    grid-column: auto;
  }

  .stage-tabs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .stage-tab {
    padding: 0 8px;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .topbar,
  .navbar,
  .section,
  .hero-content,
  .quick-panel {
    width: min(100% - 28px, 1180px);
  }

  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .plan-card {
    min-height: 104px;
    padding: 18px;
  }

  .why-grid article,
  .library-card,
  .vip-steps article {
    min-height: auto;
  }

  .stage-tabs {
    grid-template-columns: 1fr;
  }

  .stage-tab {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stage-tab:last-child {
    border-bottom: 0;
  }

  .stage-panel {
    padding: 22px;
  }

  .featured-advisor .advisor-media,
  .featured-advisor .advisor-photo {
    min-height: 320px;
  }

  .stage-visual {
    width: 58px;
    height: 58px;
  }

  .stage-visual svg {
    width: 34px;
    height: 34px;
  }

  .section,
  .school-band,
  .contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .footer {
    flex-direction: column;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}
