:root {
  --header-height: clamp(64px, 8vh, 72px);
  --blue: #2f83cf;
  --deep-blue: #1265b6;
  --orange: #ff9828;
  --orange-light: #ffc35f;
  --mint: #eafff8;
  --paper: #fbfffc;
  --text: #134f8f;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: var(--header-height);
  scroll-snap-type: y proximity;
}

body {
  background: #e9fbff;
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    Arial,
    sans-serif;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #eceaf8;
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  align-items: center;
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  margin: 0 auto;
  max-width: min(2240px, 94vw);
  padding: 0 clamp(20px, 5vw, 120px);
  width: 100%;
}

.brand,
.top-nav,
.header-actions {
  align-items: center;
  display: flex;
}

.brand {
  color: #111827;
  gap: 12px;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  height: 36px;
  object-fit: contain;
  width: 36px;
}

.top-nav {
  gap: clamp(28px, 3.2vw, 48px);
}

.top-nav a,
.header-actions a {
  color: #4b5563;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.16s ease;
}

.top-nav a:hover,
.header-actions a:hover {
  color: var(--orange);
}

.header-actions {
  gap: 18px;
}

.consult-button {
  background: linear-gradient(135deg, var(--orange), #ff8617);
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(255, 143, 32, 0.22);
  color: #ffffff !important;
  min-width: 84px;
  padding: 10px 22px;
  text-align: center;
}

.deck {
  background: #ffffff;
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
}

.deck::before {
  display: none;
  background:
    linear-gradient(rgba(59, 112, 150, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 112, 150, 0.08) 1px, transparent 1px);
  background-size: 88px 18px, 88px 18px;
  bottom: -36%;
  content: "";
  height: 58%;
  left: -6%;
  opacity: 0.62;
  position: absolute;
  right: -6%;
  transform: perspective(620px) rotateX(65deg);
  transform-origin: bottom;
}

.deck::after {
  display: none;
  background:
    radial-gradient(circle, #ffd22e 0 4px, transparent 5px) 83% 7% / 80px 80px no-repeat,
    radial-gradient(circle, #ffd22e 0 3px, transparent 4px) 57% 51% / 70px 70px no-repeat,
    radial-gradient(circle, #ffd22e 0 2px, transparent 3px) 86% 68% / 64px 64px no-repeat;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.slide {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 228, 91, 0.24), transparent 10%),
    radial-gradient(circle at 92% 6%, rgba(54, 210, 213, 0.18), transparent 18%),
    linear-gradient(90deg, #effffc 0%, #ffffff 49%, #ecfbff 100%);
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

#slide-1 {
  background:
    #f5fffb
    url("./assets/home/home-hero-banner.png")
    center / contain
    no-repeat;
}

#slide-1::before,
#slide-1::after {
  display: none;
}

#slide-1 .slide-inner,
#slide-3 .slide-inner {
  display: block;
  height: calc(100svh - var(--header-height));
  inset: 0;
  margin: 0;
  max-width: none;
  min-height: calc(100svh - var(--header-height));
  padding: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.slide::before {
  background:
    linear-gradient(rgba(59, 112, 150, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 112, 150, 0.08) 1px, transparent 1px);
  background-size: 88px 18px, 88px 18px;
  bottom: -36%;
  content: "";
  height: 58%;
  left: -6%;
  opacity: 0.62;
  position: absolute;
  right: -6%;
  transform: perspective(620px) rotateX(65deg);
  transform-origin: bottom;
}

.slide::after {
  background:
    radial-gradient(circle, #ffd22e 0 4px, transparent 5px) 83% 7% / 80px 80px no-repeat,
    radial-gradient(circle, #ffd22e 0 3px, transparent 4px) 57% 51% / 70px 70px no-repeat,
    radial-gradient(circle, #ffd22e 0 2px, transparent 3px) 86% 68% / 64px 64px no-repeat;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.slide-inner {
  height: 100%;
  margin: 0 auto;
  max-width: min(2240px, 94vw);
  min-height: calc(100svh - var(--header-height));
  padding: clamp(48px, 6vh, 86px) clamp(20px, 5vw, 120px);
  position: relative;
  z-index: 1;
}

.hero-layout {
  align-items: center;
  display: grid;
  gap: 0;
  grid-template-columns: 47% 53%;
}

#slide-1 .hero-layout {
  display: block;
  height: 100%;
  position: relative;
}

.hero-copy {
  align-self: center;
  min-width: 0;
  padding-bottom: 1.6%;
}

#slide-1 .hero-copy {
  display: none;
}

h1 {
  color: #ff9d4b;
  font-size: clamp(22px, 5.8vw, 88px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 2.4%;
  text-shadow: 0 4px 0 rgba(255, 183, 89, 0.22);
}

.headline {
  color: #ffffff;
  font-size: clamp(20px, 5vw, 74px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 5.1%;
  -webkit-text-stroke: 2px #70aee3;
  text-shadow:
    0 3px 0 #2d78bf,
    0 6px 12px rgba(38, 117, 187, 0.5);
}

.service-row {
  align-items: center;
  display: flex;
  gap: clamp(4px, 1.2vw, 16px);
  margin-bottom: 2.2%;
  max-width: 560px;
}

.service-row span {
  align-items: center;
  background: linear-gradient(180deg, #ffb047 0%, #ff9319 100%);
  border-radius: 999px;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.32),
    0 5px 12px rgba(255, 141, 31, 0.18);
  color: #ffffff;
  display: inline-flex;
  font-size: clamp(10px, 2.1vw, 29px);
  font-weight: 900;
  height: clamp(26px, 4.4vw, 58px);
  justify-content: center;
  line-height: 1;
  min-width: clamp(78px, 12.4vw, 170px);
  padding: 0 clamp(14px, 2.6vw, 34px);
  white-space: nowrap;
}

.service-row i {
  color: var(--blue);
  font-size: clamp(16px, 3.1vw, 38px);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.stats {
  color: var(--deep-blue);
  font-size: clamp(8px, 1.36vw, 18px);
  font-weight: 900;
  letter-spacing: 0.04em;
  margin: 0;
  white-space: nowrap;
}

.hero-art {
  align-self: center;
  aspect-ratio: 1.52;
  height: auto;
  justify-self: stretch;
  max-width: 760px;
  min-width: 0;
  position: relative;
  width: 100%;
}

#slide-1 .hero-art {
  aspect-ratio: 1920 / 683;
  height: auto;
  left: 50%;
  max-height: 100%;
  max-width: calc((100svh - var(--header-height)) * 1920 / 683);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.hero-art::before {
  background:
    radial-gradient(ellipse at 52% 52%, rgba(255, 196, 65, 0.24), transparent 31%),
    radial-gradient(ellipse at 54% 91%, rgba(255, 178, 51, 0.18), transparent 39%);
  bottom: -7%;
  content: "";
  filter: blur(1px);
  height: 55%;
  left: 13%;
  pointer-events: none;
  position: absolute;
  right: 1%;
  z-index: 0;
}

#slide-1 .hero-art::before {
  display: none;
}

.hero-reveal-mask {
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.33, 0, 0.25, 1);
  background:
    radial-gradient(ellipse at 52% 82%, rgba(255, 218, 111, 0.14), transparent 35%),
    linear-gradient(180deg, #effffa 0%, #ffffff 58%, #fffefa 100%);
  border-radius: 999px;
  box-shadow: 0 0 26px 22px rgba(248, 255, 253, 0.95);
  display: block;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  z-index: 8;
}

.hero-mask-play {
  height: 27%;
  left: 54.8%;
  top: 10.5%;
  width: 11.7%;
}

.hero-mask-peanut {
  border-radius: 42% 42% 47% 47%;
  height: 82%;
  left: 63.8%;
  top: 1.5%;
  width: 19%;
}

.hero-mask-cap {
  height: 28%;
  left: 82.8%;
  top: 10.5%;
  width: 14%;
}

.hero-mask-book {
  border-radius: 34% 38% 28% 30%;
  height: 29%;
  left: 53.6%;
  top: 62.4%;
  width: 16%;
}

.hero-mask-diploma {
  height: 30%;
  left: 77.6%;
  top: 63.2%;
  transform: rotate(-8deg);
  width: 18%;
}

.hero-mask-title,
.hero-mask-headline,
.hero-mask-services,
.hero-mask-stats {
  background:
    radial-gradient(ellipse at 74% 28%, rgba(209, 249, 242, 0.45), transparent 34%),
    linear-gradient(180deg, #effffa 0%, #ffffff 72%, #fffefa 100%);
  border-radius: 18px;
  box-shadow: none;
}

.hero-mask-title {
  height: 23%;
  left: 4.2%;
  top: 12%;
  width: 29%;
}

.hero-mask-headline {
  height: 25%;
  left: 3.2%;
  top: 35.2%;
  width: 41%;
}

.hero-mask-services {
  height: 15%;
  left: 3.5%;
  top: 60.8%;
  width: 42%;
}

.hero-mask-stats {
  height: 8%;
  left: 4.2%;
  top: 76.7%;
  width: 42%;
}

.hero-text-slice {
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.33, 0, 0.25, 1);
  background: url("./assets/home/home-hero-text.png") center / 100% 100% no-repeat;
  display: block;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  translate: 0 9rem;
  z-index: 9;
}

.hero-text-title {
  clip-path: inset(12% 66.8% 65% 4.2%);
}

.hero-text-headline {
  clip-path: inset(35.2% 55.8% 39.8% 3.2%);
}

.hero-text-services {
  clip-path: inset(60.8% 54.5% 24.2% 3.5%);
}

.hero-text-stats {
  clip-path: inset(76.7% 53.8% 15.3% 4.2%);
}

#slide-1.is-active .hero-text-slice {
  animation-name: yf-slide-up, yf-fade-in;
}

#slide-1.is-active .hero-text-title {
  animation-delay: 0.75s, 0.75s;
  animation-duration: 0.6s, 0.6s;
}

#slide-1.is-active .hero-text-headline {
  animation-delay: 0.85s, 0.85s;
  animation-duration: 0.7s, 0.7s;
}

#slide-1.is-active .hero-text-services {
  animation-delay: 0.95s, 0.95s;
  animation-duration: 0.8s, 0.8s;
}

#slide-1.is-active .hero-text-stats {
  animation-delay: 1.05s, 1.05s;
  animation-duration: 0.85s, 0.85s;
}

#slide-1.is-active .hero-mask-peanut {
  animation-duration: 2s;
  animation-name: hero-mask-clear;
}

#slide-1.is-active .hero-mask-play {
  animation-delay: 0s;
  animation-duration: 0.433s;
  animation-name: hero-mask-clear;
}

#slide-1.is-active .hero-mask-book {
  animation-delay: 0.333s;
  animation-duration: 0.433s;
  animation-name: hero-mask-clear;
}

#slide-1.is-active .hero-mask-diploma {
  animation-delay: 0.667s;
  animation-duration: 0.433s;
  animation-name: hero-mask-clear;
}

#slide-1.is-active .hero-mask-cap {
  animation-delay: 0.933s;
  animation-duration: 0.433s;
  animation-name: hero-mask-clear;
}

.hero-layer {
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.33, 0, 0.25, 1);
  display: block;
  height: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateZ(0);
  user-select: none;
}

.hero-layer-peanut {
  animation-duration: 2s;
  filter: drop-shadow(0 24px 28px rgba(255, 164, 21, 0.22));
  left: 39%;
  top: 3%;
  width: 37%;
  z-index: 4;
}

#slide-1 .hero-layer-peanut {
  left: 64.6%;
  top: 5.5%;
  width: 16.8%;
  z-index: 4;
}

.hero-layer-play {
  animation-duration: 0.433s;
  filter: drop-shadow(0 14px 20px rgba(89, 180, 190, 0.16));
  left: 16%;
  top: 14%;
  width: 20%;
  z-index: 5;
}

#slide-1 .hero-layer-play {
  left: 55.8%;
  top: 15.2%;
  width: 8.6%;
  z-index: 5;
}

.hero-layer-cap {
  animation-duration: 0.433s;
  filter: drop-shadow(0 16px 20px rgba(16, 67, 72, 0.18));
  right: 3%;
  top: 13%;
  width: 24%;
  z-index: 5;
}

#slide-1 .hero-layer-cap {
  left: 83.7%;
  right: auto;
  top: 13.3%;
  width: 11.8%;
  z-index: 5;
}

.hero-layer-book {
  animation-duration: 0.433s;
  bottom: 4%;
  filter: drop-shadow(0 14px 18px rgba(255, 135, 24, 0.18));
  left: 15%;
  width: 32%;
  z-index: 3;
}

#slide-1 .hero-layer-book {
  bottom: auto;
  left: 54.6%;
  top: 66.3%;
  width: 12.7%;
  z-index: 3;
}

.hero-layer-diploma {
  animation-duration: 0.433s;
  bottom: 8%;
  filter: drop-shadow(0 14px 18px rgba(95, 178, 190, 0.15));
  right: 7%;
  width: 30%;
  z-index: 5;
}

#slide-1 .hero-layer-diploma {
  bottom: auto;
  left: 78.8%;
  right: auto;
  top: 68.1%;
  width: 13.5%;
  z-index: 5;
}

#slide-1.is-active .hero-layer-peanut {
  animation-name: hero-main-fade;
}

#slide-1.is-active .hero-layer-play {
  animation-delay: 0s;
  animation-name: hero-icon-fade;
}

#slide-1.is-active .hero-layer-book {
  animation-delay: 0.333s;
  animation-name: hero-icon-fade;
}

#slide-1.is-active .hero-layer-diploma {
  animation-delay: 0.667s;
  animation-name: hero-icon-fade;
}

#slide-1.is-active .hero-layer-cap {
  animation-delay: 0.933s;
  animation-name: hero-icon-fade;
}

#slide-1 .hero-copy > * {
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.33, 0, 0.25, 1);
  opacity: 0;
  transform: translateX(0) translateY(9rem);
}

#slide-1.is-active .hero-copy > * {
  animation-name: hero-copy-up, hero-icon-fade;
}

#slide-1.is-active .hero-copy h1 {
  animation-delay: 0s, 0s;
  animation-duration: 0.6s, 0.6s;
}

#slide-1.is-active .hero-copy .headline {
  animation-delay: 0.1s, 0.1s;
  animation-duration: 0.7s, 0.7s;
}

#slide-1.is-active .hero-copy .service-row {
  animation-delay: 0.2s, 0.2s;
  animation-duration: 0.8s, 0.8s;
}

#slide-1.is-active .hero-copy .stats {
  animation-delay: 0.3s, 0.3s;
  animation-duration: 0.85s, 0.85s;
}

@keyframes hero-main-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hero-icon-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hero-copy-up {
  100% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes hero-mask-clear {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  #slide-1 .hero-copy > *,
  #slide-1 .hero-layer,
  #slide-1 .hero-reveal-mask,
  #slide-1 .hero-text-slice,
  #slide-2 .section-heading span,
  #slide-2 .section-heading h2,
  #slide-2 .goal-card,
  #slide-3 .page-mark span,
  #slide-3 .page-mark strong,
  #slide-3 .content-slot,
  #slide-3 .consult-copy-slice,
  #slide-3 .consult-icon-mask,
  #slide-4 .section-heading span,
  #slide-4 .section-heading h2,
  #slide-4 .school-card,
  #slide-5 .follow-title,
  #slide-5 .qr-item,
  #slide-5 .footer-link-group {
    animation: none !important;
    opacity: 0;
    transform: none;
    translate: none;
  }

  #slide-1 .hero-text-slice,
  #slide-2 .section-heading span,
  #slide-2 .section-heading h2,
  #slide-2 .goal-card,
  #slide-3 .page-mark span,
  #slide-3 .page-mark strong,
  #slide-3 .content-slot,
  #slide-3 .consult-copy-slice,
  #slide-4 .section-heading span,
  #slide-4 .section-heading h2,
  #slide-4 .school-card,
  #slide-5 .follow-title,
  #slide-5 .qr-item,
  #slide-5 .footer-link-group {
    opacity: 1;
  }
}

.peanut {
  background:
    repeating-linear-gradient(26deg, transparent 0 20px, rgba(151, 87, 4, 0.28) 22px 26px, transparent 28px 46px),
    repeating-linear-gradient(112deg, transparent 0 24px, rgba(255, 255, 255, 0.48) 25px 30px, transparent 31px 52px),
    linear-gradient(135deg, #ffe26d 0%, #ffb51f 35%, #ff8d00 70%, #df6b00 100%);
  border: 4px solid rgba(255, 229, 117, 0.82);
  border-radius: 55% 46% 54% 48% / 52% 44% 58% 50%;
  box-shadow:
    inset 12px 12px 18px rgba(255, 255, 255, 0.48),
    inset -16px -14px 24px rgba(166, 86, 0, 0.26),
    0 28px 38px rgba(255, 139, 17, 0.28);
  height: 56%;
  left: 43%;
  position: absolute;
  top: 11%;
  transform: rotate(11deg);
  width: 23%;
}

.peanut::before,
.peanut::after {
  background: inherit;
  border-radius: inherit;
  content: "";
  inset: 0;
  position: absolute;
}

.peanut::before {
  clip-path: ellipse(48% 44% at 48% 27%);
  filter: brightness(1.08);
}

.peanut::after {
  clip-path: ellipse(48% 47% at 52% 74%);
  filter: saturate(1.08);
}

.peanut-shine {
  background: rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  filter: blur(4px);
  height: 8%;
  left: 25%;
  position: absolute;
  top: 7%;
  transform: rotate(-18deg);
  width: 42%;
  z-index: 3;
}

.play-orb {
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), transparent 28%),
    radial-gradient(circle at 56% 57%, rgba(255, 177, 48, 0.98), rgba(255, 210, 93, 0.5) 28%, transparent 36%),
    linear-gradient(135deg, rgba(242, 255, 251, 0.9), rgba(119, 209, 214, 0.34));
  border: 2px solid rgba(128, 204, 201, 0.32);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(87, 169, 194, 0.18);
  height: 18%;
  left: 18%;
  position: absolute;
  top: 17%;
  width: 12%;
}

.play-orb span {
  border-bottom: 12px solid transparent;
  border-left: 20px solid #ffad21;
  border-top: 12px solid transparent;
  filter: drop-shadow(0 2px 3px rgba(206, 120, 6, 0.22));
  left: 42%;
  position: absolute;
  top: 36%;
}

.cap {
  height: 26%;
  position: absolute;
  right: 9%;
  top: 17%;
  width: 24%;
}

.cap-top {
  background: linear-gradient(145deg, #2f434b, #16262c);
  box-shadow: 0 9px 16px rgba(29, 60, 75, 0.2);
  clip-path: polygon(48% 0, 100% 28%, 52% 55%, 0 25%);
  height: 54%;
  position: absolute;
  width: 100%;
}

.cap-base {
  background: linear-gradient(180deg, #15343c, #0e252b);
  border-radius: 0 0 8px 8px;
  height: 34%;
  left: 36%;
  position: absolute;
  top: 38%;
  transform: skewX(-2deg);
  width: 35%;
}

.tassel {
  background: #f4a022;
  height: 45%;
  position: absolute;
  right: 14%;
  top: 31%;
  transform: rotate(5deg);
  width: 3px;
}

.tassel::after {
  background: #f4a022;
  border-radius: 999px 999px 8px 8px;
  content: "";
  height: 22px;
  left: -5px;
  position: absolute;
  top: 100%;
  width: 12px;
}

.book {
  bottom: 10%;
  height: 17%;
  left: 28%;
  position: absolute;
  transform: rotate(7deg);
  width: 21%;
}

.book::before {
  background: #fbfff7;
  border-radius: 6px 8px 2px 14px;
  box-shadow:
    inset -9px 0 0 rgba(249, 224, 190, 0.5),
    0 7px 0 #ff8b19,
    0 15px 16px rgba(241, 140, 24, 0.18);
  clip-path: polygon(0 15%, 48% 0, 100% 18%, 100% 86%, 48% 70%, 0 94%);
  content: "";
  inset: 0;
  position: absolute;
}

.book span {
  background: rgba(206, 207, 193, 0.55);
  height: 2px;
  position: absolute;
  top: 41%;
  width: 30%;
  z-index: 1;
}

.book span:first-child {
  left: 14%;
  transform: rotate(-12deg);
}

.book span:last-child {
  right: 13%;
  transform: rotate(14deg);
}

.diploma {
  background:
    linear-gradient(90deg, #d9fff9 0 14%, #ffffff 15% 78%, #d8fff7 80%),
    linear-gradient(#ffb232, #ffb232);
  border: 2px solid rgba(90, 174, 179, 0.28);
  border-radius: 999px;
  bottom: 9%;
  box-shadow: 0 8px 16px rgba(76, 150, 172, 0.16);
  height: 8%;
  position: absolute;
  right: 11%;
  transform: rotate(-24deg);
  width: 18%;
}

.diploma::before,
.diploma::after {
  background: #ff9b1f;
  content: "";
  height: 38%;
  position: absolute;
  right: 26%;
  top: 80%;
  transform-origin: top;
  width: 4%;
}

.diploma::before {
  transform: rotate(37deg);
}

.diploma::after {
  transform: rotate(-35deg);
}

.placeholder-layout {
  align-items: center;
  display: grid;
  gap: 5%;
  grid-template-columns: 32% 1fr;
}

.page-mark {
  align-self: center;
  min-width: 0;
}

.page-mark span {
  color: rgba(255, 152, 40, 0.22);
  display: block;
  font-size: clamp(60px, 15vw, 210px);
  font-weight: 900;
  line-height: 0.78;
}

.page-mark strong {
  color: var(--orange);
  display: block;
  font-size: clamp(18px, 3.5vw, 52px);
  line-height: 1.1;
  margin-top: 8%;
  text-shadow: 0 4px 12px rgba(255, 165, 54, 0.18);
}

.content-slot {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(234, 255, 248, 0.62)),
    radial-gradient(circle at 82% 18%, rgba(255, 182, 52, 0.22), transparent 24%);
  border: 1px solid rgba(91, 174, 213, 0.2);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 18px 34px rgba(36, 119, 179, 0.1);
  height: 66%;
  position: relative;
}

.content-slot::before,
.content-slot::after {
  background: linear-gradient(90deg, rgba(255, 159, 42, 0.76), rgba(255, 196, 86, 0.5));
  border-radius: 999px;
  content: "";
  height: 12px;
  left: 6%;
  position: absolute;
  top: 14%;
  width: 32%;
}

.content-slot::after {
  background: rgba(47, 131, 207, 0.2);
  top: 25%;
  width: 54%;
}

.consult-banner-layout {
  display: block;
}

.consult-banner-stage {
  aspect-ratio: 3168 / 1344;
  display: block;
  height: auto;
  left: 50%;
  max-height: 100%;
  max-width: calc((100svh - var(--header-height)) * 3168 / 1344);
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.consult-icon-layer,
.consult-copy-slice {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.consult-icon-layer {
  background-image: url("./assets/slide-3/exam-service-icons.png");
  z-index: 1;
}

.consult-copy-slice {
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.33, 0, 0.25, 1);
  background-image: url("./assets/slide-3/exam-service-copy.png");
  opacity: 0;
  translate: 0 9rem;
  z-index: 4;
}

.consult-copy-title {
  clip-path: inset(13.62% 4.48% 67.86% 52.81%);
}

.consult-copy-product {
  clip-path: inset(34.08% 4.51% 47.54% 66.45%);
}

.consult-copy-services {
  clip-path: inset(56.85% 4.64% 39.43% 69.48%);
}

.consult-copy-button {
  clip-path: inset(63.24% 4.67% 25.45% 81.31%);
}

.consult-banner-link {
  border-radius: 999px;
  cursor: pointer;
  display: block;
  height: 12%;
  left: 80.6%;
  outline-offset: 4px;
  pointer-events: auto;
  position: absolute;
  top: 62.9%;
  width: 15.1%;
  z-index: 12;
}

.consult-banner-link:focus-visible {
  outline: 3px solid rgba(31, 113, 190, 0.55);
}

.consult-icon-mask {
  z-index: 3;
}

.consult-mask-calendar {
  height: 23.5%;
  left: 4.2%;
  top: 16.8%;
  width: 11.3%;
}

.consult-mask-bell {
  height: 18.8%;
  left: 19.8%;
  top: 9.2%;
  width: 8.4%;
}

.consult-mask-shield {
  height: 17.8%;
  left: 32.7%;
  top: 15.8%;
  width: 8.6%;
}

.consult-mask-folder {
  border-radius: 28% 28% 24% 24%;
  height: 44.6%;
  left: 14.4%;
  top: 30.5%;
  width: 23%;
}

.consult-mask-search {
  height: 22.5%;
  left: 38.8%;
  top: 33.7%;
  width: 10.6%;
}

.consult-mask-chart {
  height: 17.9%;
  left: 2.5%;
  top: 43.1%;
  width: 10.8%;
}

.consult-mask-form {
  height: 21.8%;
  left: 8%;
  top: 61.8%;
  width: 10.6%;
}

.consult-mask-gear {
  height: 18.8%;
  left: 36.9%;
  top: 60%;
  width: 9.8%;
}

#slide-3.is-active .consult-copy-slice {
  animation-name: yf-slide-up, yf-fade-in;
}

#slide-3.is-active .consult-copy-title {
  animation-delay: 0.75s, 0.75s;
  animation-duration: 0.6s, 0.6s;
}

#slide-3.is-active .consult-copy-product {
  animation-delay: 0.85s, 0.85s;
  animation-duration: 0.7s, 0.7s;
}

#slide-3.is-active .consult-copy-services {
  animation-delay: 0.95s, 0.95s;
  animation-duration: 0.8s, 0.8s;
}

#slide-3.is-active .consult-copy-button {
  animation-delay: 1.05s, 1.05s;
  animation-duration: 0.85s, 0.85s;
}

#slide-3.is-active .consult-mask-folder {
  animation-duration: 2s;
  animation-name: hero-mask-clear;
}

#slide-3.is-active .consult-mask-calendar {
  animation-delay: 0s;
  animation-duration: 0.433s;
  animation-name: hero-mask-clear;
}

#slide-3.is-active .consult-mask-chart {
  animation-delay: 0.2s;
  animation-duration: 0.433s;
  animation-name: hero-mask-clear;
}

#slide-3.is-active .consult-mask-form {
  animation-delay: 0.4s;
  animation-duration: 0.433s;
  animation-name: hero-mask-clear;
}

#slide-3.is-active .consult-mask-bell {
  animation-delay: 0.6s;
  animation-duration: 0.433s;
  animation-name: hero-mask-clear;
}

#slide-3.is-active .consult-mask-shield {
  animation-delay: 0.8s;
  animation-duration: 0.433s;
  animation-name: hero-mask-clear;
}

#slide-3.is-active .consult-mask-search {
  animation-delay: 1s;
  animation-duration: 0.433s;
  animation-name: hero-mask-clear;
}

#slide-3.is-active .consult-mask-gear {
  animation-delay: 1.2s;
  animation-duration: 0.433s;
  animation-name: hero-mask-clear;
}

#slide-5 {
  background:
    linear-gradient(180deg, rgba(239, 255, 252, 0.08) 0%, rgba(239, 255, 252, 0) 22%),
    radial-gradient(circle at 18% 18%, rgba(4, 190, 185, 0.16), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(255, 203, 96, 0.06), transparent 18%),
    radial-gradient(circle at 76% 72%, rgba(47, 131, 207, 0.12), transparent 24%),
    linear-gradient(135deg, #02090e 0%, #06151d 48%, #071c28 100%);
  min-height: 100svh;
}

#slide-5::before,
#slide-5::after {
  display: none;
}

body.active-slide-5 .site-header {
  display: none;
}

#slide-5 .contact-layout {
  align-items: center;
  display: flex;
  height: 100svh;
  justify-content: center;
  max-width: none;
  min-height: 100svh;
  padding: 7px 21px 10px;
  width: 100%;
}

#slide-5 .follow-footer {
  background: linear-gradient(135deg, rgba(5, 18, 26, 0.96) 0%, rgba(8, 28, 39, 0.94) 100%);
  border: none;
  box-shadow:
    0 30px 78px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #d9edf4;
  display: flex;
  flex: none;
  flex-direction: column;
  height: 378px;
  max-width: none;
  min-height: 0;
  padding: 48px 40px 10px 74px;
  width: 902px;
  zoom: 1.38;
}

#slide-5 .follow-top {
  align-items: start;
  border-bottom: 1px solid rgba(154, 212, 225, 0.18);
  display: grid;
  gap: 66px;
  grid-template-columns: 190px minmax(0, 1fr);
  padding-bottom: 26px;
}

#slide-5 .follow-title h2 {
  color: #35ded4;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0 0 9px;
}

#slide-5 .follow-title p {
  color: #f1fbff;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0;
}

#slide-5 .follow-channels {
  align-items: start;
  display: grid;
  gap: 72px;
  grid-template-columns: repeat(2, 86px);
  justify-content: end;
}

#slide-5 .qr-item {
  align-items: center;
  display: flex;
  justify-content: center;
  min-width: 0;
}

#slide-5 .qr-item img {
  aspect-ratio: 1;
  background: #ffffff;
  border: 6px solid #ffffff;
  display: block;
  height: auto;
  object-fit: cover;
  width: 86px;
}

#slide-5 .footer-link-grid {
  border-bottom: 1px solid rgba(154, 212, 225, 0.18);
  display: grid;
  column-gap: 42px;
  grid-template-columns: 116px 116px 148px minmax(0, 1fr);
  padding: 39px 0 32px;
}

#slide-5 .footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

#slide-5 .footer-link-group h3 {
  color: #f5fbff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 8px;
}

#slide-5 .footer-link-group a {
  color: #b7cedb;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
}

#slide-5 .footer-company-info {
  gap: 12px;
  grid-column: auto;
}

#slide-5 .footer-company-info p {
  color: #b7cedb;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  white-space: normal;
}

#slide-5 .footer-company-info .company-info-title {
  color: #f5fbff;
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: normal;
  text-decoration: none;
  white-space: nowrap;
}

#slide-5 .footer-company-info a {
  color: #6d9cff;
  font-size: inherit;
  line-height: inherit;
  overflow-wrap: anywhere;
  white-space: normal;
}

#slide-5 .footer-link-group a:hover {
  color: #35ded4;
}

.license-page {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 228, 91, 0.24), transparent 10%),
    radial-gradient(circle at 92% 6%, rgba(54, 210, 213, 0.18), transparent 18%),
    linear-gradient(90deg, #effffc 0%, #ffffff 49%, #ecfbff 100%);
  color: #102f59;
}

.license-shell {
  margin: 0 auto;
  max-width: min(1780px, 94vw);
  padding: clamp(28px, 5vh, 64px) clamp(20px, 5vw, 96px);
}

.license-header {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: clamp(14px, 2.4vh, 28px);
}

.license-header span {
  color: #04beb9;
  display: block;
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: 900;
  margin-bottom: 8px;
}

.license-header h1 {
  color: #102f59;
  font-size: clamp(34px, 4vw, 68px);
  font-weight: 900;
  line-height: 1;
  margin: 0;
  text-shadow: none;
}

.license-back {
  background: #ffffff;
  border: 1px solid rgba(184, 205, 253, 0.9);
  border-radius: 8px;
  color: #1f3553;
  font-size: 15px;
  font-weight: 800;
  padding: 12px 22px;
  text-decoration: none;
  white-space: nowrap;
}

.license-intro {
  background:
    linear-gradient(90deg, rgba(4, 190, 185, 0.12), rgba(255, 255, 255, 0.92) 44%, rgba(236, 251, 255, 0.9)),
    radial-gradient(circle at 96% 12%, rgba(255, 152, 40, 0.16), transparent 30%);
  border: 1px solid rgba(47, 131, 207, 0.22);
  border-left: 5px solid #04beb9;
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 34px rgba(47, 131, 207, 0.08);
  margin-bottom: clamp(18px, 2.6vh, 34px);
  padding: clamp(18px, 2vw, 28px);
}

.license-intro p {
  color: #1f3553;
  font-size: clamp(15px, 1.08vw, 20px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.85;
  margin: 0;
}

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

.license-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(221, 230, 239, 0.95);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(47, 131, 207, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  overflow: hidden;
  padding: clamp(10px, 1vw, 16px);
}

.license-card img {
  background: #ffffff;
  border-radius: 6px;
  display: block;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  width: 100%;
}

.license-card figcaption {
  color: #1f3553;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

.document-page {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 228, 91, 0.22), transparent 10%),
    radial-gradient(circle at 92% 6%, rgba(54, 210, 213, 0.18), transparent 18%),
    linear-gradient(90deg, #effffc 0%, #ffffff 49%, #ecfbff 100%);
  color: #102f59;
}

.document-shell {
  margin: 0 auto;
  max-width: min(1780px, 94vw);
  min-height: 100svh;
  padding: clamp(28px, 5vh, 64px) clamp(20px, 5vw, 96px);
}

.document-header {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin-bottom: clamp(18px, 3vh, 36px);
}

.document-header span {
  color: #04beb9;
  display: block;
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: 900;
  margin-bottom: 8px;
}

.document-header h1 {
  color: #102f59;
  font-size: clamp(34px, 4vw, 68px);
  font-weight: 900;
  line-height: 1;
  margin: 0;
}

.document-back {
  background: #ffffff;
  border: 1px solid rgba(184, 205, 253, 0.9);
  border-radius: 8px;
  color: #1f3553;
  font-size: 15px;
  font-weight: 800;
  padding: 12px 22px;
  text-decoration: none;
  white-space: nowrap;
}

.feedback-shell {
  max-width: min(1180px, 94vw);
}

.feedback-header {
  grid-template-columns: auto minmax(0, 1fr);
}

.feedback-card {
  background: #ffffff;
  border: 1px solid rgba(221, 230, 239, 0.88);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(47, 131, 207, 0.06);
  display: grid;
  gap: clamp(28px, 4vw, 58px);
  grid-template-columns: minmax(240px, 0.82fr) minmax(360px, 1fr);
  padding: clamp(28px, 4.6vw, 58px);
}

.feedback-copy h2 {
  color: #102f59;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 16px;
}

.feedback-copy p {
  color: #1f3553;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.feedback-form {
  display: grid;
  gap: 16px;
}

.feedback-form fieldset {
  border: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
}

.feedback-form legend,
.feedback-form label span {
  color: #102f59;
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 8px;
}

.feedback-form fieldset legend,
.feedback-form fieldset .feedback-help {
  grid-column: 1 / -1;
}

.feedback-help {
  color: #6b7f99;
  display: block;
  font-size: 13px;
  line-height: 1.55;
  margin: -4px 0 2px;
}

.feedback-form fieldset label {
  align-items: center;
  background: #f6fbff;
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  color: #1f3553;
  display: flex;
  font-size: 14px;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  background: #ffffff;
  border: 1px solid #d5e3f2;
  border-radius: 8px;
  color: #102f59;
  display: block;
  font: inherit;
  outline: none;
  padding: 11px 12px;
  width: 100%;
}

.feedback-form input[type="radio"] {
  accent-color: #176dff;
  width: auto;
}

.feedback-form input[type="checkbox"] {
  accent-color: #176dff;
  width: auto;
}

.feedback-form textarea {
  min-height: 168px;
  resize: vertical;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  border-color: #176dff;
  box-shadow: 0 0 0 3px rgba(23, 109, 255, 0.12);
}

.feedback-form button {
  background: linear-gradient(135deg, var(--orange), #ff8617);
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  min-height: 46px;
  padding: 12px 20px;
}

.feedback-status {
  color: #1265b6;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  margin: 0;
}

.certificate-shell {
  max-width: min(960px, 94vw);
}

.certificate-page .certificate-shell,
.archive-page .certificate-shell,
.self-study-page .certificate-shell,
.enterprise-culture-page .certificate-shell,
.intellectual-property-page .certificate-shell {
  align-items: start;
  column-gap: clamp(34px, 4vw, 72px);
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 960px);
  margin: 0;
  max-width: none;
  padding-left: clamp(16px, 1.7vw, 24px);
  padding-right: clamp(24px, 3vw, 48px);
  width: 100%;
}

.certificate-page .certificate-header,
.certificate-page .certificate-article,
.archive-page .certificate-header,
.archive-page .certificate-article,
.self-study-page .certificate-header,
.self-study-page .certificate-article,
.enterprise-culture-page .certificate-header,
.enterprise-culture-page .certificate-article,
.intellectual-property-page .certificate-header,
.intellectual-property-page .certificate-article {
  grid-column: 2;
}

.certificate-toc {
  grid-column: 1;
  grid-row: 1 / span 2;
  max-height: calc(100svh - 56px);
  overflow-x: hidden;
  overflow-y: auto;
  position: sticky;
  scrollbar-color: #8b8b8b transparent;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  top: 28px;
}

.archive-page .certificate-toc {
  padding-right: 24px;
  scrollbar-width: none;
}

.archive-page .certificate-toc::-webkit-scrollbar {
  display: none;
}

.archive-page .certificate-toc::after {
  background: #8b8b8b;
  border-radius: 999px;
  content: "";
  position: absolute;
  right: 8px;
  top: 18px;
  width: 8px;
  height: calc(100% - 36px);
  pointer-events: none;
}

.certificate-toc::-webkit-scrollbar {
  width: 12px;
}

.certificate-toc::-webkit-scrollbar-track {
  background: transparent;
}

.certificate-toc::-webkit-scrollbar-thumb {
  background: #8b8b8b;
  border: 3px solid transparent;
  border-radius: 999px;
  background-clip: content-box;
}

.certificate-toc-inner {
  padding: 4px 0 18px;
}

.certificate-toc strong {
  color: #176dff;
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 14px;
}

.certificate-toc-nav {
  display: grid;
  gap: 10px;
}

.certificate-toc-link {
  color: #4c5d74;
  display: block;
  font-size: 15px;
  line-height: 1.35;
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.certificate-toc-link:hover,
.certificate-toc-link.is-active {
  color: #176dff;
}

.certificate-toc-h2 {
  color: #31435f;
  font-weight: 900;
  margin-top: 8px;
}

.certificate-toc-h2:first-child {
  margin-top: 0;
}

.certificate-toc-h3 {
  font-weight: 500;
  padding-left: 16px;
}

.certificate-toc-h4 {
  font-size: 14px;
  font-weight: 500;
  padding-left: 28px;
}

.certificate-header {
  grid-template-columns: auto minmax(0, 1fr);
  margin-bottom: 18px;
}

.certificate-header span {
  font-size: 13px;
}

.certificate-header h1 {
  font-size: 30px;
  line-height: 1.25;
}

.certificate-article {
  background: #ffffff;
  border: 1px solid rgba(221, 230, 239, 0.88);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(47, 131, 207, 0.06);
  padding: 46px 58px 64px;
}

.certificate-section {
  padding: 0;
}

.certificate-section:first-child {
  border-left: 0;
}

.certificate-section h2 {
  color: #102f59;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
  margin: 36px 0 18px;
}

.certificate-section:first-child h2 {
  margin-top: 0;
}

.certificate-section h2,
.certificate-section h3,
.certificate-section h4 {
  scroll-margin-top: 24px;
}

.certificate-section h3 {
  color: #1265b6;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.42;
  margin: 28px 0 12px;
}

.certificate-section h4 {
  color: #1f3553;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.5;
  margin: 22px 0 8px;
}

.certificate-section p,
.certificate-section li,
.certificate-section td,
.certificate-section th {
  color: #1f3553;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.72;
}

.certificate-section p {
  margin: 0 0 12px;
}

.certificate-section blockquote {
  border-left: 4px solid #04beb9;
  color: #1f3553;
  margin: 18px 0 0;
  padding: 4px 0 4px 16px;
}

.certificate-section blockquote p {
  margin: 0;
}

.certificate-section ul,
.certificate-section ol {
  display: grid;
  gap: 6px;
  margin: 10px 0 16px;
  padding-left: 22px;
}

.certificate-section li::marker {
  color: #04beb9;
}

.certificate-image-grid {
  display: block;
  margin: 16px 0 22px;
}

.certificate-image-grid figure {
  margin: 0 0 14px;
  min-width: 0;
}

.certificate-image-grid img {
  background: #ffffff;
  border: 0;
  border-radius: 0;
  display: block;
  height: auto;
  max-width: 100%;
  width: auto;
}

.document-video {
  margin: 18px 0 24px;
}

.document-video video {
  background: #000000;
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.certificate-table-wrap {
  margin: 14px 0 20px;
  overflow-x: auto;
}

.certificate-section table {
  background: #ffffff;
  border-collapse: collapse;
  border-radius: 0;
  min-width: 0;
  overflow: hidden;
  width: 100%;
}

.certificate-section th {
  background: #f6fbff;
  color: #102f59;
  font-weight: 900;
  text-align: left;
}

.certificate-section th,
.certificate-section td {
  border: 1px solid #dfe7f0;
  padding: 8px 10px;
  vertical-align: top;
}

.goals-layout {
  align-content: center;
  display: grid;
  gap: clamp(24px, 4vh, 44px);
}

.section-heading {
  color: #102f59;
}

.section-heading span {
  color: var(--orange);
  display: inline-block;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 900;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: clamp(30px, 3.2vw, 54px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0;
}

.goal-grid {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.goal-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(221, 230, 239, 0.9);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(47, 131, 207, 0.08);
  color: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(86px, 8.5vw, 132px);
  min-height: clamp(104px, 13vh, 148px);
  overflow: hidden;
  padding: clamp(18px, 2vw, 28px);
  position: relative;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.goal-card[href] {
  cursor: pointer;
}

.goal-card[href]:hover {
  border-color: rgba(47, 131, 207, 0.22);
  box-shadow: 0 20px 40px rgba(47, 131, 207, 0.12);
  transform: translateY(-2px);
}

.goal-card:focus-visible {
  outline: 3px solid rgba(49, 130, 206, 0.34);
  outline-offset: 4px;
}

.goal-card h3 {
  color: #1f3553;
  font-size: clamp(18px, 1.42vw, 26px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.42;
  margin: 0;
}

#slide-2 .section-heading span,
#slide-2 .section-heading h2,
#slide-2 .goal-card,
#slide-3 .page-mark span,
#slide-3 .page-mark strong,
#slide-3 .content-slot,
#slide-4 .section-heading span,
#slide-4 .section-heading h2,
#slide-4 .school-card,
#slide-5 .follow-title,
#slide-5 .qr-item,
#slide-5 .footer-link-group {
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.33, 0, 0.25, 1);
  opacity: 0;
  translate: 0 9rem;
}

#slide-2.is-active .section-heading span,
#slide-2.is-active .section-heading h2,
#slide-2.is-active .goal-card,
#slide-3.is-active .page-mark span,
#slide-3.is-active .page-mark strong,
#slide-3.is-active .content-slot,
#slide-4.is-active .section-heading span,
#slide-4.is-active .section-heading h2,
#slide-4.is-active .school-card,
#slide-5.is-active .follow-title,
#slide-5.is-active .qr-item,
#slide-5.is-active .footer-link-group {
  animation-name: yf-slide-up, yf-fade-in;
}

#slide-2.is-active .section-heading span,
#slide-4.is-active .section-heading span,
#slide-3.is-active .page-mark span {
  animation-delay: 0s, 0s;
  animation-duration: 0.6s, 0.6s;
}

#slide-2.is-active .section-heading h2,
#slide-4.is-active .section-heading h2,
#slide-3.is-active .page-mark strong {
  animation-delay: 0.1s, 0.1s;
  animation-duration: 0.7s, 0.7s;
}

#slide-2.is-active .goal-card,
#slide-4.is-active .school-card,
#slide-3.is-active .content-slot,
#slide-5.is-active .qr-item,
#slide-5.is-active .footer-link-group {
  animation-duration: 0.76s, 0.76s;
}

#slide-2.is-active .goal-card:nth-child(1),
#slide-4.is-active .school-card:nth-child(1),
#slide-5.is-active .qr-item:nth-child(1),
#slide-5.is-active .footer-link-group:nth-child(1) {
  animation-delay: 0.1s, 0.1s;
  animation-duration: 0.7s, 0.7s;
}

#slide-2.is-active .goal-card:nth-child(2),
#slide-4.is-active .school-card:nth-child(2),
#slide-5.is-active .qr-item:nth-child(2),
#slide-5.is-active .footer-link-group:nth-child(2) {
  animation-delay: 0.16s, 0.16s;
  animation-duration: 0.76s, 0.76s;
}

#slide-2.is-active .goal-card:nth-child(3),
#slide-4.is-active .school-card:nth-child(3),
#slide-5.is-active .qr-item:nth-child(3),
#slide-5.is-active .footer-link-group:nth-child(3) {
  animation-delay: 0.22s, 0.22s;
  animation-duration: 0.82s, 0.82s;
}

#slide-2.is-active .goal-card:nth-child(4),
#slide-4.is-active .school-card:nth-child(4),
#slide-5.is-active .qr-item:nth-child(4),
#slide-5.is-active .footer-link-group:nth-child(4) {
  animation-delay: 0.28s, 0.28s;
  animation-duration: 0.88s, 0.88s;
}

#slide-2.is-active .goal-card:nth-child(5),
#slide-4.is-active .school-card:nth-child(5),
#slide-5.is-active .qr-item:nth-child(5),
#slide-5.is-active .footer-link-group:nth-child(5) {
  animation-delay: 0.34s, 0.34s;
  animation-duration: 0.94s, 0.94s;
}

#slide-2.is-active .goal-card:nth-child(6),
#slide-4.is-active .school-card:nth-child(6),
#slide-5.is-active .qr-item:nth-child(6) {
  animation-delay: 0.4s, 0.4s;
  animation-duration: 1s, 1s;
}

#slide-4.is-active .school-card:nth-child(7),
#slide-5.is-active .qr-item:nth-child(7) {
  animation-delay: 0.46s, 0.46s;
  animation-duration: 1.06s, 1.06s;
}

#slide-4.is-active .school-card:nth-child(8) {
  animation-delay: 0.52s, 0.52s;
  animation-duration: 1.12s, 1.12s;
}

#slide-3.is-active .content-slot {
  animation-delay: 0.1s, 0.1s;
  animation-duration: 0.7s, 0.7s;
}

#slide-5.is-active .follow-title {
  animation-delay: 0s, 0s;
  animation-duration: 0.6s, 0.6s;
}

@keyframes yf-slide-up {
  to {
    translate: 0 0;
  }
}

@keyframes yf-fade-in {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.education-page {
  min-height: 100svh;
}

.education-shell {
  margin: 0 auto;
  max-width: none;
  min-height: 100svh;
  padding: clamp(96px, 18vh, 118px) clamp(36px, 2.4vw, 44px) clamp(56px, 9vh, 112px);
}

.education-header {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: clamp(26px, 4.8vh, 48px);
  max-width: 1614px;
}

.education-header span {
  color: var(--orange);
  display: block;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 900;
  margin-bottom: 12px;
}

.education-header h1 {
  color: #102f59;
  font-size: clamp(42px, 4vw, 68px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
  text-shadow: none;
}

.education-grid {
  display: grid;
  gap: clamp(24px, 3vw, 34px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1614px;
}

.education-card {
  align-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(221, 230, 239, 0.95);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(47, 131, 207, 0.08);
  color: #102f59;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  justify-items: start;
  min-height: clamp(120px, 13vh, 150px);
  overflow: hidden;
  padding: clamp(22px, 2vw, 30px);
  position: relative;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.education-card[href] {
  cursor: pointer;
}

.education-card[href]:hover {
  border-color: rgba(47, 131, 207, 0.22);
  box-shadow: 0 20px 40px rgba(47, 131, 207, 0.12);
  transform: translateY(-2px);
}

.education-card.has-logo::after {
  display: none;
}

.education-card::after {
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.9), transparent 25%),
    linear-gradient(135deg, rgba(4, 190, 185, 0.18), rgba(255, 152, 40, 0.18));
  border-radius: 50%;
  content: "";
  height: clamp(54px, 5.2vw, 82px);
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(54px, 5.2vw, 82px);
  pointer-events: none;
}

.education-logo {
  height: clamp(76px, 7vw, 112px);
  object-fit: contain;
  pointer-events: none;
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(76px, 7vw, 112px);
  z-index: 1;
}

.education-card span,
.education-card h2 {
  position: relative;
  z-index: 1;
}

.education-card span {
  color: var(--orange);
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.education-card h2 {
  color: #102f59;
  font-size: clamp(22px, 1.52vw, 30px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0;
}

.goal-icon {
  align-items: center;
  align-self: stretch;
  background:
    radial-gradient(circle at 62% 75%, rgba(255, 184, 56, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(235, 255, 249, 0.88), rgba(255, 255, 255, 0.72));
  display: flex;
  justify-content: center;
  margin: calc(clamp(18px, 2vw, 28px) * -1);
  margin-left: 0;
  min-height: 100%;
  position: relative;
}

.goal-icon::after {
  background: radial-gradient(ellipse, rgba(255, 168, 40, 0.22), transparent 64%);
  bottom: 13%;
  content: "";
  height: 20%;
  left: 20%;
  position: absolute;
  right: 16%;
}

.goal-logo {
  height: clamp(76px, 7vw, 112px);
  object-fit: contain;
  pointer-events: none;
  position: relative;
  width: clamp(76px, 7vw, 112px);
  z-index: 1;
}

.mini-cap,
.mini-book,
.mini-compass,
.mini-laptop,
.mini-medal,
.mini-folder {
  position: relative;
  z-index: 1;
}

.mini-cap {
  height: 66px;
  width: 88px;
}

.mini-cap::before {
  background: linear-gradient(145deg, #38535a, #142a31);
  box-shadow: 0 10px 18px rgba(24, 57, 68, 0.24);
  clip-path: polygon(50% 0, 100% 28%, 53% 56%, 0 26%);
  content: "";
  height: 42px;
  left: 0;
  position: absolute;
  top: 3px;
  width: 88px;
}

.mini-cap::after {
  background: linear-gradient(180deg, #12313a, #0f2229);
  border-radius: 0 0 8px 8px;
  content: "";
  height: 28px;
  left: 31px;
  position: absolute;
  top: 32px;
  width: 34px;
}

.mini-cap span {
  background: #f3a329;
  height: 44px;
  position: absolute;
  right: 10px;
  top: 24px;
  transform: rotate(5deg);
  width: 3px;
  z-index: 2;
}

.mini-cap span::after {
  background: #f3a329;
  border-radius: 999px 999px 7px 7px;
  content: "";
  height: 17px;
  left: -5px;
  position: absolute;
  top: 38px;
  width: 12px;
}

.mini-book {
  height: 74px;
  transform: rotate(4deg);
  width: 94px;
}

.mini-book::before {
  background: #fffdf6;
  border-radius: 8px 10px 3px 16px;
  box-shadow:
    inset -10px 0 0 rgba(244, 224, 197, 0.54),
    0 8px 0 #ff8b19,
    0 16px 20px rgba(241, 140, 24, 0.2);
  clip-path: polygon(0 16%, 48% 0, 100% 18%, 100% 86%, 48% 70%, 0 94%);
  content: "";
  inset: 5px 0 10px;
  position: absolute;
}

.mini-book span {
  background: rgba(200, 198, 184, 0.58);
  height: 2px;
  position: absolute;
  top: 36px;
  width: 28px;
  z-index: 1;
}

.mini-book span:first-child {
  left: 15px;
  transform: rotate(-12deg);
}

.mini-book span:last-child {
  right: 13px;
  transform: rotate(14deg);
}

.mini-compass {
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.96), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(202, 179, 255, 0.5));
  border: 2px solid rgba(180, 157, 255, 0.52);
  border-radius: 50%;
  box-shadow:
    inset 0 8px 20px rgba(255, 255, 255, 0.74),
    0 12px 26px rgba(142, 115, 255, 0.22);
  height: 76px;
  width: 76px;
}

.mini-compass::before {
  background: linear-gradient(135deg, #b793ff 0 45%, #ffb12d 47% 100%);
  clip-path: polygon(50% 0, 61% 43%, 100% 50%, 59% 60%, 50% 100%, 39% 60%, 0 50%, 41% 43%);
  content: "";
  inset: 18px;
  position: absolute;
  transform: rotate(35deg);
}

.mini-compass span {
  background: #ffffff;
  border: 2px solid #d7c8ff;
  border-radius: 50%;
  height: 14px;
  left: 31px;
  position: absolute;
  top: 31px;
  width: 14px;
}

.mini-laptop {
  height: 72px;
  transform: rotate(2deg);
  width: 90px;
}

.mini-laptop::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 34%),
    linear-gradient(135deg, #dcfff8, #96e1dc);
  border: 3px solid rgba(82, 186, 177, 0.45);
  border-radius: 9px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  content: "";
  height: 52px;
  left: 11px;
  position: absolute;
  top: 2px;
  width: 68px;
}

.mini-laptop::after {
  background: linear-gradient(180deg, #c6fff5, #76d8d1);
  border-radius: 6px 6px 12px 12px;
  box-shadow: 0 9px 16px rgba(76, 172, 166, 0.22);
  content: "";
  height: 18px;
  left: 0;
  position: absolute;
  top: 52px;
  transform: perspective(80px) rotateX(42deg);
  width: 90px;
}

.mini-laptop span {
  background: rgba(255, 181, 46, 0.46);
  border-radius: 50%;
  height: 8px;
  left: 41px;
  position: absolute;
  top: 58px;
  width: 8px;
}

.mini-medal {
  height: 88px;
  width: 82px;
}

.mini-medal::before,
.mini-medal::after {
  background: linear-gradient(180deg, #dca9ff, #9b6eff);
  border-radius: 6px 6px 14px 14px;
  content: "";
  height: 44px;
  position: absolute;
  top: 0;
  width: 24px;
}

.mini-medal::before {
  left: 18px;
  transform: rotate(-18deg);
}

.mini-medal::after {
  right: 18px;
  transform: rotate(18deg);
}

.mini-medal span {
  background:
    radial-gradient(circle at 36% 24%, rgba(255, 255, 255, 0.92), transparent 18%),
    linear-gradient(135deg, #ffe58c, #ffad24 62%, #e88600);
  border: 3px solid #ffd96b;
  border-radius: 50%;
  box-shadow:
    inset -8px -8px 14px rgba(183, 94, 0, 0.2),
    0 12px 24px rgba(255, 164, 37, 0.26);
  height: 58px;
  left: 12px;
  position: absolute;
  top: 30px;
  width: 58px;
  z-index: 2;
}

.mini-folder {
  height: 76px;
  transform: rotate(1deg);
  width: 92px;
}

.mini-folder::before {
  background: linear-gradient(135deg, #eee5ff, #c7afff);
  border: 2px solid rgba(162, 124, 255, 0.36);
  border-radius: 8px 8px 4px 4px;
  content: "";
  height: 20px;
  left: 6px;
  position: absolute;
  top: 6px;
  width: 46px;
}

.mini-folder::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 42%),
    linear-gradient(135deg, #f3ebff, #bfa1ff);
  border: 2px solid rgba(162, 124, 255, 0.36);
  border-radius: 11px;
  box-shadow: 0 12px 24px rgba(151, 113, 255, 0.22);
  content: "";
  height: 58px;
  left: 0;
  position: absolute;
  top: 16px;
  width: 92px;
}

.mini-folder span {
  background: #ffb22f;
  border-radius: 50%;
  height: 9px;
  position: absolute;
  right: 14px;
  top: 43px;
  width: 9px;
  z-index: 2;
}

.schools-layout {
  align-content: center;
  display: grid;
  gap: clamp(24px, 4vh, 44px);
}

.school-grid {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.school-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(221, 230, 239, 0.9);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(47, 131, 207, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(210px, 25vh, 270px);
  padding: clamp(18px, 2vw, 28px);
  position: relative;
}

.school-card::before {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 180, 48, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(235, 255, 249, 0.7), rgba(255, 255, 255, 0.36));
  border-radius: 10px;
  content: "";
  inset: 10px;
  opacity: 0.72;
  position: absolute;
}

.school-card img {
  aspect-ratio: 1;
  background: #ffffff;
  border-radius: 50%;
  box-shadow:
    0 12px 24px rgba(39, 115, 170, 0.1),
    inset 0 0 0 1px rgba(221, 230, 239, 0.7);
  display: block;
  height: clamp(124px, 12vw, 168px);
  object-fit: cover;
  padding: 0;
  position: relative;
  width: clamp(124px, 12vw, 168px);
  z-index: 1;
}

.school-card h3 {
  color: #1f3553;
  font-size: clamp(15px, 1.1vw, 20px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
  margin: 18px 0 0;
  position: relative;
  text-align: center;
  z-index: 1;
}

.school-link {
  color: #176dff;
  font-size: clamp(12px, 0.82vw, 15px);
  line-height: 1.35;
  margin-top: 6px;
  max-width: 100%;
  overflow-wrap: anywhere;
  position: relative;
  text-align: center;
  text-decoration: none;
  z-index: 1;
}

.school-link:hover {
  text-decoration: underline;
}

.nav-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 131, 207, 0.16);
  border-radius: 50%;
  color: var(--deep-blue);
  cursor: pointer;
  display: flex;
  font-size: clamp(18px, 3vw, 40px);
  height: clamp(34px, 4.4vw, 52px);
  justify-content: center;
  line-height: 1;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%);
  transition:
    background 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
  width: clamp(34px, 4.4vw, 52px);
  z-index: 5;
}

.deck:hover .nav-button,
.nav-button:focus-visible {
  opacity: 1;
}

.nav-button:hover {
  background: #ffffff;
  transform: translateX(-50%) scale(1.04);
}

.nav-prev {
  left: 50%;
  top: 3.6%;
}

.nav-next {
  bottom: 3.6%;
  left: 50%;
}

.pager {
  align-items: center;
  bottom: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  left: auto;
  position: absolute;
  right: 3.4%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
}

.pager button {
  background: rgba(47, 131, 207, 0.28);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 8px;
  padding: 0;
  transition:
    background 0.2s ease,
    width 0.2s ease;
  width: 8px;
}

.pager button.is-active {
  background: var(--orange);
  height: 28px;
  width: 8px;
}

.Right_suspension {
  --side-rail-size: clamp(56px, min(5.1vw, 8.5svh), 78px);
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
}

.document-page .document-teacher-contact {
  left: min(
    calc(clamp(16px, 1.7vw, 24px) + 320px + clamp(34px, 4vw, 72px) + 960px),
    calc(100vw - clamp(24px, 3vw, 48px))
  );
  right: auto;
}

.Right_suspension .box {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(234, 255, 248, 0.9), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 50% 0, rgba(255, 195, 95, 0.24), transparent 54%);
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 12px 0 0 12px;
  box-shadow: 0 10px 26px rgba(47, 131, 207, 0.11);
  color: #1f3553;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: var(--side-rail-size);
  justify-content: center;
  margin: 2px 0;
  padding: 0;
  position: relative;
  text-decoration: none;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
  width: var(--side-rail-size);
}

.Right_suspension button.box {
  border-left-width: 2px;
  font: inherit;
}

.Right_suspension .box:hover,
.Right_suspension .box:focus-visible,
.Right_suspension .box:focus-within {
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.98), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 50% 0, rgba(255, 152, 40, 0.28), transparent 54%);
  box-shadow: 0 14px 30px rgba(255, 152, 40, 0.18);
  color: var(--orange);
  outline: none;
}

.Right_suspension .side-icon {
  fill: var(--orange);
  height: clamp(22px, calc(var(--side-rail-size) * 0.35), 27px);
  margin-bottom: clamp(4px, calc(var(--side-rail-size) * 0.075), 6px);
  transition: fill 0.2s ease;
  width: clamp(22px, calc(var(--side-rail-size) * 0.35), 27px);
}

.Right_suspension .side-icon-cutout {
  fill: #ffffff;
}

.Right_suspension .box:hover .side-icon,
.Right_suspension .box:focus-visible .side-icon,
.Right_suspension .box:focus-within .side-icon {
  fill: var(--deep-blue);
}

.Right_suspension .box p {
  color: currentColor;
  font-size: clamp(11px, calc(var(--side-rail-size) * 0.18), 14px);
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.Right_suspension .box .ewm {
  background: #ffffff;
  border: 1px solid rgba(47, 131, 207, 0.12);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(47, 131, 207, 0.14);
  display: none;
  height: 150px;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
}

.Right_suspension .box .ewm img {
  display: block;
  height: 112px;
  margin: 19px;
  object-fit: cover;
  width: 112px;
}

.Right_suspension .box .teacher-ewm {
  height: 190px;
  padding: 14px 12px 12px;
  text-align: center;
  width: 170px;
}

.Right_suspension .box .teacher-ewm img {
  height: 128px;
  margin: 0 auto 8px;
  object-fit: contain;
  width: 128px;
}

.Right_suspension .box .teacher-ewm span,
.Right_suspension .box .teacher-ewm strong {
  display: block;
  line-height: 1.25;
}

.Right_suspension .box .teacher-ewm span {
  color: #102f59;
  font-size: 13px;
  font-weight: 700;
}

.Right_suspension .box .teacher-ewm strong {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  margin-top: 4px;
}

.Right_suspension .box .dhua {
  display: none;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
}

.Right_suspension .box .dhua .phone {
  background: #ffffff;
  border: 1px solid rgba(47, 131, 207, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(47, 131, 207, 0.16);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin: 0 20px 0 0;
  padding: 12px 10px;
  width: 280px;
}

.Right_suspension .box .dhua .phone div {
  align-items: center;
  border: 2px solid var(--orange);
  display: flex;
  height: 40px;
  justify-content: space-between;
  margin: 0 auto;
  width: 260px;
}

.Right_suspension .box .dhua .phone input {
  border: 0;
  color: #102f59;
  flex: 1;
  font-size: 14px;
  height: 100%;
  min-width: 0;
  outline: none;
  padding: 0 10px;
}

.Right_suspension .box .dhua .phone button {
  background: var(--orange);
  border: 0;
  color: #ffffff;
  cursor: pointer;
  flex: 0 0 72px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  height: 100%;
}

.Right_suspension .box .dhua .phone span,
.Right_suspension .box .dhua .phone a {
  color: #102f59;
  display: block;
  font-size: 12px;
  line-height: 1.3;
  margin-top: 6px;
  padding-left: 10px;
  text-decoration: none;
}

.Right_suspension .box .dhua .phone a {
  color: var(--deep-blue);
  font-weight: 800;
}

.Right_suspension .box:hover .ewm,
.Right_suspension .box:focus-visible .ewm,
.Right_suspension .box:focus-within .ewm,
.Right_suspension .box:hover .dhua,
.Right_suspension .box:focus-visible .dhua,
.Right_suspension .box:focus-within .dhua {
  display: block;
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
    --mobile-rail-size: clamp(38px, 10.5vw, 44px);
  }

  .header-inner {
    height: var(--header-height);
    padding: 0 20px;
  }

  .top-nav {
    display: none;
  }

  .brand {
    font-size: 16px;
  }

  .header-actions {
    gap: 12px;
  }

  .header-actions a {
    font-size: 13px;
  }

  .consult-button {
    min-width: 64px;
    padding: 8px 14px;
  }

  .Right_suspension {
    --side-rail-size: var(--mobile-rail-size);
    display: flex !important;
    flex-direction: column;
    opacity: 1;
    right: 0;
    visibility: visible;
  }

  .document-page .document-teacher-contact {
    left: auto;
    right: 0;
  }

  .Right_suspension .box {
    border-radius: 8px 0 0 8px;
    margin: 1px 0;
  }

  .Right_suspension .side-icon {
    height: 16px;
    margin-bottom: 3px;
    width: 16px;
  }

  .Right_suspension .box p {
    font-size: 9px;
    white-space: nowrap;
  }

  .Right_suspension .box .ewm,
  .Right_suspension .box .teacher-ewm {
    bottom: auto;
    height: auto;
    left: auto;
    max-width: calc(100vw - 24px);
    position: absolute;
    right: calc(100% + 6px);
    top: 50%;
    transform: translateY(-50%);
    width: 112px;
  }

  .Right_suspension .box .ewm img {
    height: 88px;
    margin: 12px;
    width: 88px;
  }

  .Right_suspension .box .teacher-ewm {
    padding: 10px 8px 9px;
    width: 132px;
  }

  .Right_suspension .box .teacher-ewm img {
    height: 94px;
    margin: 0 auto 6px;
    width: 94px;
  }

  .Right_suspension .box .teacher-ewm span {
    font-size: 11px;
  }

  .Right_suspension .box .teacher-ewm strong {
    font-size: 10px;
    margin-top: 2px;
  }

  .Right_suspension .box .dhua {
    bottom: auto;
    height: auto;
    left: auto;
    max-width: calc(100vw - 24px);
    position: absolute;
    right: calc(100% + 6px);
    top: 50%;
    transform: translateY(-50%);
    width: min(260px, calc(100vw - var(--mobile-rail-size) - 18px));
  }

  .Right_suspension .box .dhua .phone {
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 10px 8px;
    width: 100%;
  }

  .Right_suspension .box .dhua .phone div {
    max-width: 100%;
  }

  #slide-1 {
    background:
      radial-gradient(circle at 70% 20%, rgba(255, 228, 91, 0.24), transparent 10%),
      radial-gradient(circle at 92% 6%, rgba(54, 210, 213, 0.18), transparent 18%),
      linear-gradient(90deg, #effffc 0%, #ffffff 49%, #ecfbff 100%);
  }

  #slide-1::before,
  #slide-1::after {
    display: block;
  }

  #slide-1 .hero-art {
    left: 0;
    max-width: calc((100svh - var(--header-height)) * 1920 / 683);
    transform: translateY(-50%);
    width: calc(100% - var(--mobile-rail-size));
  }

  #slide-1 .hero-art::before {
    background: url("./assets/home/home-hero-icons.png") center / 100% 100% no-repeat;
    bottom: 0;
    content: "";
    display: block;
    filter: none;
    height: auto;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }

  .slide-inner {
    padding: 9% 7% 13%;
  }

  #slide-2 .slide-inner,
  #slide-4 .slide-inner {
    padding-right: calc(7% + var(--mobile-rail-size));
  }

  #slide-3 .consult-banner-stage {
    left: 0;
    transform: translateY(-50%);
    width: calc(100% - var(--mobile-rail-size));
  }

  #slide-5 .contact-layout {
    padding-right: calc(15px + var(--mobile-rail-size));
  }

  #slide-5 .contact-layout > .follow-footer {
    max-width: min(360px, calc(100vw - var(--mobile-rail-size) - 54px));
    width: min(360px, calc(100vw - var(--mobile-rail-size) - 54px));
  }

  .hero-layout,
  .placeholder-layout,
  .goal-grid,
  .school-grid {
    grid-template-columns: 1fr;
  }

  #slide-1 .hero-layout {
    align-content: start;
    gap: clamp(22px, 7vw, 36px);
  }

  #slide-1 .hero-art {
    min-height: 0;
  }

  #slide-1 .hero-reveal-mask {
    box-shadow: 0 0 8px 6px rgba(248, 255, 253, 0.95);
  }

  #slide-1 .hero-text-slice {
    translate: 0 clamp(32px, 10vw, 42px);
  }

  .hero-copy {
    align-self: start;
  }

  .hero-art {
    min-height: 220px;
  }

  .stats {
    white-space: normal;
  }

  .content-slot {
    height: 46vh;
    min-height: 220px;
  }

  .goals-layout {
    align-content: start;
  }

  .goal-card {
    grid-template-columns: minmax(0, 1fr) 96px;
    min-height: 104px;
  }

  .education-header {
    align-items: start;
    flex-direction: column;
  }

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

  .schools-layout {
    align-content: start;
  }

  .school-card {
    min-height: 178px;
  }

  .contact-layout {
    justify-content: flex-start;
    min-height: 286px;
    overflow: hidden;
    padding: 7px 15px 10px;
  }

  #slide-5 .contact-layout {
    align-items: center;
    height: 100svh;
    justify-content: center;
    min-height: 100svh;
    padding: 14px 15px;
  }

  #slide-5 .follow-footer {
    flex: none;
    height: auto;
    max-height: calc(100svh - 28px);
    max-width: min(100%, 360px);
    overflow-y: auto;
    padding: 20px 18px 16px;
    width: 100%;
    zoom: 1;
  }

  #slide-5 .follow-top {
    align-items: center;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding-bottom: 16px;
  }

  #slide-5 .follow-title h2 {
    font-size: 24px;
    margin-bottom: 7px;
  }

  #slide-5 .follow-title p {
    font-size: 13px;
    line-height: 1.35;
  }

  #slide-5 .follow-channels {
    gap: 8px;
    grid-template-columns: repeat(2, 54px);
  }

  #slide-5 .qr-item img {
    border-width: 4px;
    width: 54px;
  }

  #slide-5 .footer-link-grid {
    border-bottom: 0;
    column-gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px 0 0;
    row-gap: 16px;
  }

  #slide-5 .footer-link-group {
    gap: 6px;
  }

  #slide-5 .footer-link-group h3 {
    font-size: 13px;
    margin-bottom: 4px;
  }

  #slide-5 .footer-link-group a {
    font-size: 12px;
    line-height: 1.25;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  #slide-5 .footer-company-info {
    gap: 6px;
    grid-column: 1 / -1;
  }

  #slide-5 .footer-company-info p {
    font-size: 11px;
    line-height: 1.3;
  }

  #slide-5 .footer-company-info .company-info-title {
    font-size: 13px;
  }

  .license-header {
    align-items: start;
    flex-direction: column-reverse;
  }

  .document-header {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .feedback-card {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .feedback-form fieldset {
    grid-template-columns: 1fr;
  }

  .certificate-page .certificate-shell,
  .archive-page .certificate-shell,
  .self-study-page .certificate-shell,
  .enterprise-culture-page .certificate-shell,
  .intellectual-property-page .certificate-shell {
    display: block;
    max-width: min(960px, 94vw);
  }

  .certificate-toc {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(221, 230, 239, 0.88);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(47, 131, 207, 0.06);
    margin: 0 0 18px;
    max-height: none;
    overflow: visible;
    padding: 16px 18px;
    position: static;
  }

  .certificate-toc-inner {
    padding: 0;
  }

  .certificate-toc-nav {
    gap: 8px;
    max-height: 260px;
    overflow: auto;
  }

  .certificate-toc-h3 {
    padding-left: 0;
  }

  .certificate-toc-h4 {
    padding-left: 0;
  }

  .certificate-header h1 {
    font-size: 28px;
  }

  .certificate-article {
    padding: 28px 20px 40px;
  }

  .certificate-section {
    padding: 0;
  }

  .certificate-section table {
    min-width: 520px;
  }

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

@media (min-width: 761px) and (max-width: 1280px) {
  .header-inner {
    max-width: 96vw;
    padding-left: clamp(24px, 4vw, 52px);
    padding-right: clamp(24px, 4vw, 52px);
  }

  .top-nav {
    gap: clamp(18px, 2.5vw, 32px);
  }

  .Right_suspension .box {
    border-radius: 10px 0 0 10px;
    margin: 1px 0;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }

  .header-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand {
    gap: 8px;
    font-size: 15px;
  }

  .brand-logo {
    height: 32px;
    width: 32px;
  }

  .header-actions {
    gap: 8px;
  }

  .consult-button {
    min-width: 56px;
    padding: 8px 11px;
  }

  .slide-inner {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-height: 620px) {
  .Right_suspension {
    --side-rail-size: clamp(46px, 14.5svh, 56px);
  }

  .Right_suspension .box {
    margin: 1px 0;
  }

  .slide-inner {
    padding-bottom: clamp(24px, 5vh, 48px);
    padding-top: clamp(24px, 5vh, 48px);
  }
}

@media (max-width: 760px) and (max-height: 620px) {
  .Right_suspension {
    --side-rail-size: clamp(34px, 9.5svh, 40px);
  }

  .Right_suspension .side-icon {
    height: 14px;
    margin-bottom: 2px;
    width: 14px;
  }

  .Right_suspension .box p {
    font-size: 8px;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .goal-grid,
  .school-grid,
  .education-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .certificate-page .certificate-shell,
  .archive-page .certificate-shell,
  .self-study-page .certificate-shell,
  .enterprise-culture-page .certificate-shell,
  .intellectual-property-page .certificate-shell {
    column-gap: 24px;
    grid-template-columns: 220px minmax(0, 1fr);
    max-width: min(1180px, 94vw);
  }

  .certificate-toc-link {
    font-size: 14px;
  }

  #slide-5 .follow-footer {
    zoom: 0.98;
  }
}

@media (min-width: 1081px) and (max-width: 1280px) {
  #slide-5 .follow-footer {
    zoom: 1.1;
  }
}

@media (min-width: 1600px) {
  #slide-5 .follow-footer {
    zoom: 1.78;
  }
}
