:root {
  --yellow: #FFCF32;
  --blue: #1E22AA;
  --soft-blue: #EEF1FF;
  --blue-muted: #5961C8;
  --orange: #FF7A1A;
  --pink: #EA6AA5;
  --lilac: #C59CE6;
  --cyan: #0088FF;
  --white: #FAFAFA;
  --black: #191919;
  --grey: #899197;
  --text-soft: #596166;
  --light-yellow: #FFF6D8;
  --light-blue: #E9EBFF;
  --light-grey: #F2F4F5;
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 20px 60px rgba(25, 25, 25, 0.08);
  --shadow-strong: 0 28px 80px rgba(25, 25, 25, 0.12);
  --max-width: 1180px;
}

@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--max-width), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(137, 145, 151, 0.16);
}
.nav-wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 74px;
  overflow: hidden;
}
.site-header .brand img,
.site-header .brand-logo {
  width: auto !important;
  height: 70px !important;
  max-height: 70px !important;
  max-width: 292px !important;
  display: block !important;
  object-fit: contain !important;
  border-radius: 0 !important;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #3b3f44;
}
.site-nav a {
  padding: 9px 2px;
  position: relative;
  white-space: nowrap;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 99px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 10px 18px !important;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 10px 20px rgba(255, 207, 50, .28);
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  color: var(--black);
  cursor: pointer;
}

.hero-new {
  padding: 0 0 44px;
  background:
    linear-gradient(90deg, rgba(25,25,25,.72) 0%, rgba(25,25,25,.48) 48%, rgba(25,25,25,.20) 100%),
    url("../assets/images/hero-sparklingo-students.jpg") center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.hero-new-inner {
  display: grid;
  grid-template-columns: minmax(0, 790px);
  min-height: 500px;
  align-items: center;
}
.hero-copy {
  padding: 68px 0 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-title-line {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-brand-name {
  font-size: clamp(38px, 4.2vw, 66px);
  line-height: 1.05;
  font-weight: 950;
  color: #fff;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.hero-brand-name span {
  color: #fff;
}
.hero-slogan {
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.08;
  font-weight: 950;
  color: #fff;
  letter-spacing: -0.06em;
}
.hero-subtitle {
  max-width: 690px;
  margin: 0 0 42px;
  color: rgba(255,255,255,.92);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 2;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(25, 25, 25, .12); }
.btn-primary { background: var(--yellow); color: var(--black); box-shadow: 0 12px 26px rgba(255, 207, 50, .30); }
.btn-secondary { background: rgba(255,255,255,.74); color: var(--blue); border-color: rgba(30, 34, 170, .22); }
.btn-secondary:hover { background: #fff; border-color: var(--blue); }
.btn-dark { background: var(--black); color: #fff; }
.hero-new .btn-secondary {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.58);
  backdrop-filter: blur(12px);
}
.hero-new .btn-secondary:hover {
  background: rgba(255,255,255,.24);
  border-color: #fff;
}
.hero-photo { display: none; min-height: 560px; background: #e9edf2; position: relative; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,246,216,.2), transparent 35%);
  pointer-events: none;
}
.hero-carousel {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 28px auto 0;
  position: relative;
  z-index: 3;
}
.carousel-track {
  position: relative;
  aspect-ratio: 8 / 3;
  height: auto;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-strong);
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .8s ease, transform .8s ease;
}
.carousel-slide.active { opacity: 1; transform: scale(1); z-index: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-caption {
  position: absolute;
  left: 34px;
  bottom: 30px;
  z-index: 2;
  max-width: 560px;
  padding: 18px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.76);
  box-shadow: 0 16px 36px rgba(25,25,25,.10);
  backdrop-filter: blur(12px);
}
.carousel-slide .carousel-caption { display: none; }
.carousel-caption p { margin: 0 0 6px; color: var(--blue-muted); font-size: 13px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.carousel-caption h3 { margin: 0; color: var(--black); font-size: 28px; line-height: 1.22; letter-spacing: -0.03em; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(30, 34, 170, .22);
  cursor: pointer;
  transition: all .25s ease;
}
.dot.active { width: 28px; background: var(--blue); }

.section { padding: 88px 0; }
.hero-new + .section { padding-top: 58px; }
.section-soft { background: #f7f7f2; }
.section-yellow { background: linear-gradient(180deg, #FAFAFA 0%, #FFF6D8 100%); }
.section-heading { max-width: 790px; margin: 0 auto 44px; text-align: center; }
.hero-new + .section .section-heading { max-width: 980px; }
.hero-new + .section .section-heading h2 { font-size: clamp(32px, 3.3vw, 46px); }
.section-heading.align-left { text-align: left; margin-left: 0; margin-right: 0; }
.eyebrow { margin: 0 0 16px; color: var(--blue); font-weight: 900; letter-spacing: .1em; text-transform: uppercase; font-size: 17px; }
.section-heading h1,
.section-heading h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.14; letter-spacing: -0.05em; }
.section-heading p:not(.eyebrow) { color: var(--text-soft); font-size: 18px; margin: 18px 0 0; }
.course-section-heading {
  max-width: 1040px;
}
.course-section-heading h2 {
  font-size: clamp(34px, 3.2vw, 46px);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.card-grid { display: grid; gap: 20px; }
.five-cards { grid-template-columns: repeat(5, 1fr); }
.four-cards { grid-template-columns: repeat(4, 1fr); }
.three-cards { grid-template-columns: repeat(3, 1fr); }
.two-cards { grid-template-columns: repeat(2, 1fr); }
.service-card,
.info-card,
.course-column,
.quote-card,
.contact-form,
.contact-info {
  background: #fff;
  border: 1px solid rgba(137, 145, 151, .16);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: 0 8px 22px rgba(25, 25, 25, .04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover,
.info-card:hover,
.course-column:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(30, 34, 170, .16); }
.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 900;
}
.card-icon.blue { background: var(--light-blue); color: var(--blue); }
.card-icon.yellow { background: var(--light-yellow); color: #8b6300; }
.card-icon.orange { background: #fff0e6; color: var(--orange); }
.card-icon.pink { background: #ffe8f2; color: var(--pink); }
.card-icon.lilac { background: #f3e8ff; color: #7d49ad; }
.course-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.course-card > img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  background: #fff;
}
.course-card-body {
  padding: 24px 22px 26px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.service-card h3,
.info-card h3,
.course-column h2,
.course-column h3 { margin: 0 0 10px; font-size: 22px; letter-spacing: -0.02em; }
.service-card p,
.info-card p,
.course-column p { color: var(--text-soft); margin: 0; }
.card-link { display: inline-flex; margin-top: 20px; color: var(--blue); font-weight: 900; }
.course-card .card-link { margin-top: auto; padding-top: 20px; }

.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 60px; align-items: stretch; }
.section-soft .split { grid-template-areas: "intro features" "process process"; }
.section-soft .section-heading { grid-area: intro; }
.section-soft .feature-list { grid-area: features; }
.section-soft .why-process { grid-area: process; }
.section-soft .section-heading.align-left {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  margin-bottom: 0;
}
.section-soft .section-heading.align-left > p:not(.eyebrow) {
  margin-bottom: 0;
}
.video-card {
  position: relative;
  flex: 1;
  margin-top: 28px;
  overflow: hidden;
  min-height: 300px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(137,145,151,.16);
  box-shadow: var(--shadow);
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25,25,25,.04), rgba(25,25,25,.22));
}
.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 42px rgba(25,25,25,.24);
}
.play-button::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--black);
}
.feature-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
  align-self: stretch;
  height: 100%;
}
.feature-item { display: grid; grid-template-columns: 14px 1fr; align-items: center; gap: 18px; padding: 24px 26px; background: #fff; border-radius: var(--radius-md); border: 1px solid rgba(137,145,151,.16); }
.feature-item span { width: 10px; height: 36px; margin-top: 4px; border-radius: 99px; background: var(--yellow); }
.feature-item h3 { margin: 0 0 6px; font-size: 22px; }
.feature-item p { margin: 0; color: var(--text-soft); line-height: 1.72; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step { position: relative; padding: 26px; border-radius: var(--radius-md); background: rgba(250,250,250,.78); border: 1px solid rgba(30,34,170,.10); box-shadow: 0 10px 28px rgba(25,25,25,.04); }
.process-step b { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); color: var(--black); margin-bottom: 28px; }
.process-step h3 { margin: 0 0 8px; font-size: 22px; }
.process-step p { margin: 0; color: var(--text-soft); }
.study-modules-section {
  --spark-blue: #1e22aa;
  --spark-yellow: #f9cf3e;
  --spark-orange: #ff7a1a;
  --spark-pink: #e85d9e;
  --spark-ink: #17233f;
  --spark-muted: #687084;
  --spark-bg: var(--white);
  --spark-card: #ffffff;
}
.study-modules-section {
  padding: 96px 0;
  background: var(--white);
}
.study-section-container {
  position: relative;
  width: min(1120px, calc(100% - 40px));
}
.study-section-anchor {
  position: absolute;
  top: -120px;
}
.study-section-heading {
  max-width: 820px;
  margin: 0 0 48px;
  text-align: left;
}
.study-section-heading .eyebrow {
  margin-bottom: 12px;
  color: var(--spark-blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .16em;
}
.study-section-heading h2 {
  margin: 0;
  color: var(--spark-ink);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.study-section-lead {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--spark-muted);
  font-size: 17px;
  line-height: 1.9;
}
.service-flow-timeline {
  margin: 0 0 44px;
  padding: 28px 28px 30px;
  border-radius: 22px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(30,34,170,.09);
}
.service-flow-timeline h3 {
  margin: 0 0 26px;
  color: var(--spark-ink);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 25px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #eef1ff, #c8ceff, #7d86df, var(--spark-blue));
}
.process-node {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 0 6px;
  text-align: center;
  transition: transform .25s ease;
}
.process-node:hover {
  transform: translateY(-4px);
}
.process-number {
  display: inline-flex;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef1ff;
  color: var(--spark-ink);
  font-weight: 950;
  box-shadow: 0 0 0 9px var(--spark-bg);
}
.module-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(30, 34, 170, 0.08);
  color: var(--spark-blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}
.process-node:nth-child(2) .process-number { background: #dfe3ff; }
.process-node:nth-child(3) .process-number { background: #c8ceff; }
.process-node:nth-child(4) .process-number { background: #a8aff0; }
.process-node:nth-child(5) .process-number {
  background: #7d86df;
  color: #fff;
}
.process-node:nth-child(6) .process-number {
  background: #4d57c7;
  color: #fff;
}
.process-node:nth-child(7) .process-number {
  background: var(--spark-blue);
  color: #fff;
}
.process-node h3,
.process-node h4 {
  margin: 0;
  color: var(--spark-ink);
  font-size: 17px;
  line-height: 1.42;
  letter-spacing: -0.01em;
}
.service-module-card h3 {
  margin: 0 0 14px;
  color: var(--spark-ink);
  font-size: 22px;
  line-height: 1.34;
  letter-spacing: -0.02em;
}
.service-module-card p {
  margin: 0 0 22px;
  color: var(--spark-muted);
  font-size: 15px;
  line-height: 1.78;
}
.service-module-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(23, 35, 63, 0.08);
  list-style: none;
}
.service-module-card li {
  position: relative;
  padding-left: 18px;
  color: #4c566f;
  font-size: 14px;
  line-height: 1.62;
}
.service-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.service-module-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(30, 34, 170, 0.10);
  box-shadow: 0 10px 28px rgba(23,35,63,.045);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30,34,170,.18);
  box-shadow: 0 20px 50px rgba(23, 35, 63, 0.10);
}
.module-icon {
  position: relative;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(249,207,62,.22);
  border: 1px solid rgba(30,34,170,.10);
}
.module-icon::before,
.module-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}
.module-icon::before {
  left: 15px;
  right: 15px;
  top: 17px;
  height: 3px;
  background: var(--spark-blue);
  box-shadow: 0 9px 0 var(--spark-blue), 0 18px 0 var(--spark-blue);
}
.module-icon::after {
  right: 12px;
  bottom: 11px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--spark-blue);
  background: #fff;
}
.service-module-card:nth-child(2) .module-icon,
.service-module-card:nth-child(6) .module-icon { background: rgba(30,34,170,.08); }
.service-module-card:nth-child(3) .module-icon { background: rgba(255,122,26,.12); }
.service-module-card:nth-child(4) .module-icon { background: rgba(232,93,158,.12); }
.service-module-card:nth-child(5) .module-icon { background: rgba(249,207,62,.18); }
.module-icon.element-icon {
  display: grid;
  place-items: center;
  color: var(--spark-blue);
}
.module-icon.element-icon::before,
.module-icon.element-icon::after {
  display: none;
}
.module-icon.element-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-module-card .module-label {
  margin-bottom: 22px;
}
.service-module-card h3 {
  font-size: 23px;
}
.deliverable-label {
  margin: auto 0 0 !important;
  color: var(--spark-ink) !important;
  font-size: 13px !important;
  font-weight: 950;
}
.deliverable-label + ul {
  margin-top: 10px;
}
.service-module-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .56em;
  width: 8px;
  height: 12px;
  border-right: 2px solid var(--spark-blue);
  border-bottom: 2px solid var(--spark-blue);
  transform: rotate(38deg);
}
.why-process {
  position: relative;
  gap: 0;
  margin-top: 30px;
  padding-top: 34px;
}
.why-process::before {
  content: "";
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 57px;
  height: 3px;
  border-radius: 99px;
  background: var(--yellow);
}
.why-process .process-step {
  padding: 0 18px;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.why-process .process-step b {
  position: relative;
  z-index: 1;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 8px #f7f7f2;
}

.cta-band { padding: 78px 0; background: var(--yellow); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cta-inner .eyebrow { color: var(--blue); }
.cta-inner h2 { margin: 0 0 8px; font-size: clamp(34px, 4vw, 52px); line-height: 1.12; letter-spacing: -0.05em; }
.cta-inner p { margin: 0; max-width: 620px; color: #3d3a2b; }

.page-hero { padding: 94px 0 86px; background: linear-gradient(135deg, #fff7d9 0%, #f4f5ff 100%); }
.page-hero.compact { padding: 76px 0; }
.page-hero h1 { margin: 0; font-size: clamp(46px, 7vw, 72px); line-height: 1.06; letter-spacing: -0.06em; }
.page-hero p:not(.eyebrow) { max-width: 780px; color: #4f565c; font-size: 20px; margin: 22px 0 28px; }
.hero-fit-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 900px;
  margin-top: 34px;
}
.hero-fit-strip div {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: 0 10px 28px rgba(25,25,25,.05);
}
.hero-fit-strip b,
.hero-fit-strip span {
  display: block;
}
.hero-fit-strip b {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}
.hero-fit-strip span {
  color: var(--black);
  font-weight: 850;
  line-height: 1.35;
}
.exam-hero { background: linear-gradient(135deg, #f4f5ff 0%, #fff8dd 100%); }
.reading-hero { background: linear-gradient(135deg, #fff7d8 0%, #eef6ff 100%); }
.academic-hero { background: linear-gradient(135deg, #fff9e6 0%, #eef6ff 100%); }
.minor-hero { background: linear-gradient(135deg, #fff3f8 0%, #f4edff 100%); }
.study-hero { background: linear-gradient(135deg, #eef0ff 0%, #fff7d6 100%); }
.about-hero { background: linear-gradient(135deg, #f7f7f2 0%, #fff7d7 100%); }
.contact-hero {
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/deal.jpg");
  background-position: center 26%;
  background-size: cover;
  color: #fff;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,14,30,.54);
}
.contact-hero .container {
  position: relative;
  z-index: 1;
}
.contact-hero .eyebrow { color: var(--yellow); }
.contact-hero h1 { color: #fff; }
.contact-hero p:not(.eyebrow) { color: rgba(255,255,255,.92); }

.program-hero {
  overflow: hidden;
}
.program-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .78fr);
  gap: 48px;
  align-items: center;
}
.program-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
  background: #fff;
}
.program-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25,25,25,0), rgba(25,25,25,.16));
  pointer-events: none;
}
.program-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}
.photo-hero {
  position: relative;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.photo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,14,30,.76) 0%, rgba(10,14,30,.52) 48%, rgba(10,14,30,.18) 100%);
  pointer-events: none;
}
.photo-hero > .container {
  position: relative;
  z-index: 1;
}
.photo-hero .eyebrow {
  color: var(--yellow);
}
.photo-hero h1,
.photo-hero p:not(.eyebrow) {
  color: #fff;
}
.photo-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255,255,255,.90);
}
.photo-hero .btn-secondary {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.58);
  backdrop-filter: blur(12px);
}
.photo-hero .btn-secondary:hover {
  background: rgba(255,255,255,.24);
  border-color: #fff;
}
.minor-photo-hero {
  padding: 92px 0 74px;
  background-image:
    linear-gradient(90deg, rgba(10,14,30,.76) 0%, rgba(10,14,30,.52) 48%, rgba(10,14,30,.18) 100%),
    url("../assets/images/korea.jpg");
  background-position: center 48%;
}
.minor-photo-hero::before {
  display: none;
}
.minor-photo-hero .program-hero-grid {
  grid-template-columns: minmax(0, 790px);
  min-height: 500px;
  align-items: center;
}
.application-photo-hero {
  padding: 92px 0 74px;
  background-image:
    linear-gradient(90deg, rgba(10,14,30,.76) 0%, rgba(10,14,30,.52) 48%, rgba(10,14,30,.20) 100%),
    url("../assets/images/application-graduation-hero.jpg");
  background-position: center 46%;
}
.application-photo-hero::before {
  display: none;
}
.application-photo-hero .program-hero-grid {
  grid-template-columns: minmax(0, 790px);
  min-height: 500px;
  align-items: center;
}
.language-photo-hero {
  padding: 92px 0 74px;
  background-image:
    linear-gradient(90deg, rgba(10,14,30,.80) 0%, rgba(10,14,30,.56) 48%, rgba(10,14,30,.22) 100%),
    url("../assets/images/course-language.jpg");
  background-position: center 45%;
}
.language-photo-hero::before {
  display: none;
}
.language-photo-hero .program-hero-grid {
  grid-template-columns: minmax(0, 790px);
  min-height: 500px;
  align-items: center;
}
body.language-exam-page .section {
  padding: 66px 0;
}
body.language-exam-page .section-heading {
  margin-bottom: 34px;
}
body.language-exam-page .language-photo-hero {
  padding: 70px 0 58px;
}
body.language-exam-page .language-photo-hero .program-hero-grid {
  min-height: 420px;
}
body.language-exam-page .page-hero p:not(.eyebrow) {
  margin: 16px 0 22px;
  font-size: 18px;
  line-height: 1.82;
}
body.language-exam-page .hero-actions {
  gap: 12px;
}
body.language-exam-page .program-track-card {
  padding: 24px;
}
body.language-exam-page .exam-track-card > p {
  margin-bottom: 16px;
}
body.language-exam-page .exam-fact-list,
body.language-exam-page .exam-training-list {
  padding-top: 14px;
}
body.language-exam-page .exam-training-list {
  margin-top: 14px;
}
.exam-service-flow-section .service-flow-timeline {
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(238,241,255,.46));
}
.exam-service-flow-section .process-timeline::before {
  background: linear-gradient(90deg, #fff6d8, #dfe3ff, #7d86df, var(--spark-blue));
}
.refined-service-flow-section {
  --spark-bg: #f3f6f8;
  background:
    linear-gradient(180deg, #f7f7f2 0%, #eef3f7 100%);
}
.refined-service-flow-section .study-section-container {
  width: min(1180px, calc(100% - 40px));
}
.refined-service-flow-section .study-section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}
.study-section-sublead {
  max-width: 840px;
  margin: 12px 0 0;
  color: #4f596c;
  font-size: 16px;
  line-height: 1.85;
}
.refined-service-flow-section .service-module-grid {
  gap: 22px;
  align-items: stretch;
}
.refined-service-flow-section .service-module-card {
  min-height: 430px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(30,34,170,.08);
  box-shadow: 0 12px 30px rgba(23,35,63,.055);
}
.refined-service-flow-section .service-module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30,34,170,.16);
  box-shadow: 0 18px 44px rgba(23,35,63,.09);
}
.refined-service-flow-section .module-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: #fff6d8;
  border-color: rgba(30,34,170,.08);
}
.refined-service-flow-section .service-module-card:nth-child(2) .module-icon {
  background: #eef1ff;
}
.refined-service-flow-section .service-module-card:nth-child(3) .module-icon {
  background: #fff0df;
}
.refined-service-flow-section .service-module-card:nth-child(4) .module-icon {
  background: #fff0f7;
}
.refined-service-flow-section .service-module-card:nth-child(5) .module-icon {
  background: #fff8dc;
}
.refined-service-flow-section .service-module-card:nth-child(6) .module-icon {
  background: #edf7ff;
}
.refined-service-flow-section .module-icon.element-icon svg {
  width: 29px;
  height: 29px;
}
.refined-service-flow-section .module-label {
  margin-bottom: 18px;
  background: rgba(30,34,170,.08);
  color: #1e22aa;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.refined-service-flow-section .service-module-card h3 {
  margin-bottom: 12px;
  color: #17233f;
  font-size: 22px;
}
.refined-service-flow-section .service-module-card > p:not(.deliverable-label) {
  margin-bottom: 24px;
  color: #5e6878;
}
.refined-service-flow-section .deliverable-label {
  padding-top: 2px;
  color: #1e22aa !important;
}
.refined-service-flow-section .service-module-card ul {
  border-top-color: rgba(30,34,170,.10);
}
body.language-exam-page .study-modules-section {
  padding: 70px 0;
}
body.language-exam-page .refined-service-flow-section .study-section-heading {
  margin-bottom: 32px;
}
body.language-exam-page .refined-service-flow-section .service-module-grid {
  gap: 18px;
}
body.language-exam-page .refined-service-flow-section .service-module-card {
  min-height: 390px;
  padding: 24px;
}
body.language-exam-page .refined-service-flow-section .module-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
}
body.language-exam-page .refined-service-flow-section .module-label {
  margin-bottom: 14px;
}
body.language-exam-page .refined-service-flow-section .service-module-card > p:not(.deliverable-label) {
  margin-bottom: 18px;
  line-height: 1.68;
}
body.language-exam-page .service-module-card ul {
  gap: 8px;
  padding-top: 14px;
}
.program-diagnosis-grid,
.program-track-grid,
.language-card-grid,
.application-module-grid {
  display: grid;
  gap: 18px;
}
.program-diagnosis-grid {
  grid-template-columns: repeat(4, 1fr);
}
.program-diagnosis-card,
.program-track-card,
.language-card,
.application-module-card {
  background: #fff;
  border: 1px solid rgba(137,145,151,.16);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(25,25,25,.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.program-diagnosis-card:hover,
.program-track-card:hover,
.language-card:hover,
.application-module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30,34,170,.16);
  box-shadow: var(--shadow);
}
.program-diagnosis-card {
  min-height: 260px;
  padding: 26px;
}
.program-diagnosis-card b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
}
.program-diagnosis-card h3,
.program-track-card h3,
.language-card h3,
.application-module-card h3 {
  margin: 0 0 10px;
  color: #1f2a44;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: -0.02em;
}
.program-diagnosis-card p,
.program-track-card p,
.language-card p,
.application-module-card p {
  margin: 0;
  color: var(--text-soft);
}
.program-track-grid {
  grid-template-columns: repeat(3, 1fr);
}
.program-track-card {
  padding: 30px;
  border-top: 7px solid var(--blue);
}
.program-track-card:nth-child(2) {
  border-top-color: var(--yellow);
}
.program-track-card:nth-child(3) {
  border-top-color: var(--pink);
}
.exam-overview-section {
  background: #f7f7f2;
}
.exam-track-grid {
  align-items: stretch;
}
.exam-track-card {
  display: flex;
  flex-direction: column;
}
.exam-track-card > p {
  margin-bottom: 22px;
}
.exam-fact-list,
.exam-training-list {
  padding-top: 18px;
  border-top: 1px solid rgba(31,42,68,.08);
}
.exam-fact-list {
  margin-top: auto;
}
.exam-training-list {
  margin-top: 18px;
}
.exam-fact-list b,
.exam-training-list b {
  display: block;
  margin-bottom: 10px;
  color: #1f2a44;
  font-size: 14px;
  font-weight: 950;
}
.exam-fact-list ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.exam-fact-list li {
  position: relative;
  padding-left: 18px;
  color: #4f565c;
  font-size: 14px;
  line-height: 1.62;
}
.exam-fact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.exam-training-list .check-list {
  margin-top: 0;
}
.exam-source-note {
  max-width: 860px;
  margin: 24px auto 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}
.program-track-card > span,
.application-module-card span,
.language-card > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef1ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}
.program-split {
  align-items: center;
}
.program-feature-list {
  grid-template-rows: none;
  height: auto;
}
.program-flow-combo .program-split {
  margin-bottom: 54px;
}
.program-flow-heading {
  margin-bottom: 28px;
}
.program-flow-heading h2 {
  font-size: clamp(30px, 3.4vw, 44px);
}
.language-card-grid {
  grid-template-columns: repeat(4, 1fr);
}
.language-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.language-card > img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  background: #f2f4f5;
}
.language-card:nth-child(2) > img {
  object-position: center 48%;
}
.language-card:nth-child(4) > img {
  object-position: center 38%;
}
body.language-exam-page .language-card:nth-child(1) > img {
  object-position: 72% center;
}
body.language-exam-page .language-card:nth-child(2) > img {
  object-position: 68% center;
}
body.language-exam-page .language-card:nth-child(3) > img {
  object-position: 38% center;
}
body.language-exam-page .language-card:nth-child(4) > img {
  object-position: center 46%;
}
.language-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}
body.language-exam-page .language-card-body {
  padding: 24px;
}
body.language-exam-page .language-card-body span {
  margin-top: 14px;
}
body.language-exam-page .language-card-body a {
  padding-top: 18px;
}
.language-card-body span {
  display: inline-flex;
  width: fit-content;
  margin: 18px 0 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff9e8;
  color: #735300;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}
.language-card-body a {
  display: inline-flex;
  margin-top: auto;
  padding-top: 24px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 950;
}
.ielts-camp-section {
  position: relative;
  overflow: hidden;
}
body.language-exam-page .ielts-camp-overview {
  gap: 22px;
  margin-bottom: 22px;
}
body.language-exam-page .ielts-camp-copy {
  padding: 28px;
}
body.language-exam-page .ielts-camp-copy p:not(.eyebrow) {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.75;
}
body.language-exam-page .camp-meta-grid {
  margin-top: 22px;
}
body.language-exam-page .camp-meta-grid div {
  min-height: 96px;
  padding: 16px;
}
body.language-exam-page .camp-poster-card {
  padding: 10px;
}
.ielts-camp-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}
.ielts-camp-copy {
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(30,34,170,.10);
  box-shadow: 0 14px 38px rgba(25,25,25,.055);
}
.ielts-camp-copy h2 {
  margin: 0;
  color: #1f2a44;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.ielts-camp-copy p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.85;
}
.camp-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.camp-meta-grid div {
  min-height: 112px;
  padding: 18px;
  border-radius: 18px;
  background: #fff9e8;
  border: 1px solid rgba(255,207,50,.32);
}
.camp-meta-grid b,
.camp-meta-grid span {
  display: block;
}
.camp-meta-grid b {
  margin-bottom: 8px;
  color: #1f2a44;
  font-size: 20px;
  line-height: 1.18;
}
.camp-meta-grid span {
  color: #596166;
  font-size: 14px;
  line-height: 1.55;
}
.camp-outcome-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, #1e22aa 0%, #2630c4 100%);
  color: #fff;
  box-shadow: 0 18px 46px rgba(30,34,170,.18);
}
.camp-outcome-panel span {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.camp-outcome-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.camp-outcome-panel li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,.88);
  line-height: 1.65;
}
.camp-outcome-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
}
.camp-poster-card {
  display: block;
  align-self: start;
  overflow: hidden;
  padding: 12px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(30,34,170,.10);
  box-shadow: 0 18px 46px rgba(25,25,25,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.camp-poster-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30,34,170,.18);
  box-shadow: var(--shadow);
}
.camp-poster-card img {
  width: 100%;
  border-radius: 20px;
  background: #eef6ff;
}
.camp-fit-grid,
.camp-value-grid {
  display: grid;
  gap: 18px;
}
.camp-fit-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 28px;
}
body.language-exam-page .camp-fit-grid,
body.language-exam-page .camp-value-grid {
  gap: 14px;
}
body.language-exam-page .camp-fit-grid {
  margin-bottom: 22px;
}
body.language-exam-page .camp-fit-card {
  min-height: 190px;
  padding: 22px;
}
body.language-exam-page .camp-fit-card b {
  margin-bottom: 18px;
}
.camp-fit-card,
.camp-value-card {
  background: #fff;
  border: 1px solid rgba(137,145,151,.16);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(25,25,25,.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.camp-fit-card:hover,
.camp-value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30,34,170,.16);
  box-shadow: var(--shadow);
}
.camp-fit-card {
  min-height: 230px;
  padding: 26px;
}
.camp-fit-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
}
.camp-fit-card h3,
.camp-value-card h3 {
  margin: 0 0 10px;
  color: #1f2a44;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.camp-fit-card p,
.camp-value-card p {
  margin: 0;
  color: var(--text-soft);
}
.camp-lessons-block {
  margin-bottom: 28px;
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(30,34,170,.10);
  box-shadow: 0 14px 38px rgba(25,25,25,.05);
}
body.language-exam-page .camp-lessons-block {
  margin-bottom: 22px;
  padding: 24px;
}
body.language-exam-page .camp-block-heading {
  margin-bottom: 18px;
}
body.language-exam-page .camp-lesson-grid {
  gap: 10px;
}
body.language-exam-page .camp-lesson-grid article {
  min-height: 146px;
  padding: 16px;
}
body.language-exam-page .camp-lesson-grid span {
  margin-bottom: 12px;
}
body.language-exam-page .camp-value-card {
  padding: 24px;
}
.camp-block-heading {
  margin-bottom: 22px;
}
.camp-block-heading h3 {
  margin: 0;
  color: #1f2a44;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.03em;
}
.camp-lesson-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.camp-lesson-grid article {
  min-height: 172px;
  padding: 18px;
  border-radius: 18px;
  background: #fafaf6;
  border: 1px solid rgba(31,42,68,.08);
}
.camp-lesson-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef1ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}
.camp-lesson-grid h4 {
  margin: 0 0 8px;
  color: #1f2a44;
  font-size: 17px;
  line-height: 1.28;
}
.camp-lesson-grid p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}
.camp-value-grid {
  grid-template-columns: repeat(3, 1fr);
}
.camp-value-card {
  padding: 28px;
  border-top: 7px solid var(--blue);
}
.camp-value-card:nth-child(2) {
  border-top-color: var(--yellow);
}
.camp-value-card:nth-child(3) {
  border-top-color: var(--pink);
}
.application-module-grid {
  grid-template-columns: repeat(3, 1fr);
}
.application-module-card {
  overflow: hidden;
  padding: 0;
}
.application-module-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}
.application-module-card div {
  padding: 26px;
}
.application-plan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.application-plan-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(137,145,151,.16);
  box-shadow: 0 10px 28px rgba(25,25,25,.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.application-plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30,34,170,.16);
  box-shadow: var(--shadow);
}
.plan-poster {
  display: block;
  padding: 14px;
  background: #f7f8ff;
  border-bottom: 1px solid rgba(137,145,151,.14);
}
.plan-poster img {
  width: 100%;
  aspect-ratio: .72 / 1;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(25,25,25,.08);
}
.plan-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 22px 26px;
}
.plan-card-body span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef1ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}
.plan-card-body h3 {
  margin: 0 0 10px;
  color: #1f2a44;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.plan-card-body p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}
.plan-card-body a {
  display: inline-flex;
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue);
  font-weight: 950;
}
.plan-note {
  max-width: 840px;
  margin: 22px auto 0;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}
.application-handbook {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(30,34,170,.12);
  box-shadow: 0 14px 38px rgba(25,25,25,.06);
}
body.language-exam-page .feature-item {
  padding: 20px 22px;
}
body.language-exam-page .quote-card {
  padding: 30px;
}
body.language-exam-page .application-handbook {
  padding: 28px;
}
body.language-exam-page .application-handbook p:not(.eyebrow) {
  margin-top: 10px;
}
.skill-system-section {
  background: #f8f9ff;
}
.skill-system-shell {
  display: grid;
  gap: 26px;
}
.skill-system-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 42px;
  align-items: start;
}
.skill-system-copy .eyebrow {
  color: #1e22aa;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .16em;
}
.skill-system-copy h2 {
  max-width: 660px;
  margin: 0;
  color: #111827;
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.skill-system-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: #526070;
  font-size: 18px;
  line-height: 1.86;
}
.skill-reference-list {
  max-width: 660px;
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(30,34,170,.10);
  box-shadow: 0 12px 28px rgba(15,23,42,.04);
}
.skill-reference-list b {
  display: block;
  margin-bottom: 10px;
  color: #1e22aa;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.skill-reference-list ol {
  margin: 0;
  padding-left: 18px;
}
.skill-reference-list li {
  margin: 0 0 8px;
  color: #5f6b7a;
  font-size: 13px;
  line-height: 1.65;
}
.skill-reference-list li:last-child {
  margin-bottom: 0;
}
.skill-system-cards {
  display: grid;
  gap: 14px;
  margin-top: 116px;
}
.skill-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 142px;
  padding: 28px 30px 28px 34px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(30,34,170,.08);
  box-shadow: 0 14px 34px rgba(15,23,42,.045);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.skill-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 31px;
  width: 8px;
  height: 40px;
  border-radius: 999px;
  background: #f9cf3e;
}
.skill-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30,34,170,.16);
  box-shadow: 0 22px 46px rgba(15,23,42,.08);
}
.skill-card span {
  padding-left: 18px;
  color: rgba(30,34,170,.62);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
}
.skill-card h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 23px;
  line-height: 1.22;
  letter-spacing: -0.02em;
}
.skill-card p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.75;
}
.skill-highlight-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  overflow: hidden;
  padding: 34px 40px;
  border-radius: 30px;
  background: #eef1ff;
  border: 1px solid rgba(30,34,170,.12);
  box-shadow: 0 14px 34px rgba(15,23,42,.04);
}
.skill-highlight-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: #f9cf3e;
}
.skill-highlight-card p {
  max-width: 920px;
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.03em;
}
.skill-highlight-card span {
  display: block;
  max-width: 680px;
  margin-top: 12px;
  color: #526070;
  font-size: 17px;
  line-height: 1.75;
}
.skill-highlight-card b {
  flex: 0 0 auto;
  color: #1e22aa;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.application-handbook h2 {
  margin: 0;
  color: #1f2a44;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.04em;
}
.application-handbook p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.8;
}
.exam-strength-section {
  background: #f3f6f8;
}
body.language-exam-page .exam-strength-head {
  margin-bottom: 30px;
}
body.language-exam-page .exam-strength-head p:not(.eyebrow) {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.72;
}
body.language-exam-page .exam-strength-list {
  gap: 16px;
}
body.language-exam-page .exam-strength-card {
  min-height: 390px;
  border-radius: 24px;
}
body.language-exam-page .strength-card-top {
  min-height: 155px;
  padding: 20px;
}
body.language-exam-page .strength-card-body {
  padding: 20px;
}
body.language-exam-page .strength-card-body p {
  line-height: 1.62;
}
body.language-exam-page .strength-card-body .strength-point {
  font-size: 17px;
}
body.language-exam-page .cta-band {
  padding: 64px 0;
}
.exam-strength-head {
  max-width: 900px;
  margin: 0 auto 38px;
  text-align: center;
}
.exam-strength-head h2 {
  margin: 0;
  color: #1f2a44;
  font-size: clamp(34px, 4.1vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}
.exam-strength-head p:not(.eyebrow) {
  max-width: 780px;
  margin: 16px auto 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.85;
}
.exam-strength-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.exam-strength-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 28px;
  background: #fffdf8;
  border: 1px solid rgba(30,34,170,.10);
  box-shadow: 0 14px 38px rgba(25,25,25,.055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.exam-strength-card::before {
  display: none;
}
.exam-strength-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30,34,170,.18);
  box-shadow: 0 22px 54px rgba(25,25,25,.10);
}
.exam-strength-card.is-active {
  background: #fffdf8;
  border-color: rgba(30,34,170,.18);
  box-shadow: 0 24px 64px rgba(30,34,170,.22);
}
.exam-strength-card.is-active::before {
  display: none;
}
.strength-card-top,
.strength-card-body {
  position: relative;
}
.strength-card-top {
  min-height: 185px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  margin: 0;
  padding: 22px;
  background: #1f2a44;
}
.strength-card-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 28, .48);
  pointer-events: none;
}
.strength-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exam-strength-card:nth-child(1) .strength-card-image {
  object-position: center 45%;
}
.exam-strength-card:nth-child(2) .strength-card-image {
  object-position: center 52%;
}
.exam-strength-card:nth-child(3) .strength-card-image {
  object-position: center 50%;
}
.exam-strength-card:nth-child(4) .strength-card-image {
  object-position: center 48%;
}
.strength-card-top strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.exam-strength-card.is-active .strength-card-top strong {
  color: #fff;
}
.strength-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  color: var(--blue);
  border: 1px solid rgba(30,34,170,.10);
}
.exam-strength-card.is-active .strength-icon {
  background: rgba(255,255,255,.96);
  color: var(--blue);
}
.strength-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.strength-card-body {
  display: grid;
  gap: 8px;
  flex: 1;
  padding: 24px;
  background: #fffdf8;
}
.strength-card-body p {
  margin: 0;
  color: #596166;
  font-size: 15px;
  line-height: 1.72;
}
.strength-card-body .strength-point {
  margin-top: 8px;
  color: #1f2a44;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.35;
}
.strength-card-body .strength-point:first-child {
  margin-top: 0;
}
.exam-strength-card.is-active .strength-card-body p {
  color: #596166;
}
.exam-strength-card.is-active .strength-card-body .strength-point {
  color: #1f2a44;
}
.korean-app-section {
  padding-top: 0;
}
.korean-app-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 34px;
  align-items: center;
  overflow: hidden;
  padding: 42px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f4edff 0%, #fff9e8 100%);
  border: 1px solid rgba(30,34,170,.12);
  box-shadow: var(--shadow);
}
.korean-app-copy h2 {
  margin: 0;
  color: #1f2a44;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.korean-app-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 18px;
}
.korean-app-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.korean-app-panel {
  display: grid;
  grid-template-columns: minmax(240px, .88fr) 1fr;
  gap: 18px;
  align-items: center;
}
.phone-mock {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 430px;
  padding: 20px;
  border-radius: 30px;
  background: #1f2a44;
  color: #fff;
  box-shadow: 0 24px 56px rgba(31,42,68,.22);
}
.phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 900;
}
.phone-bar span {
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
}
.chat-bubble {
  max-width: 86%;
  padding: 13px 15px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.55;
}
.chat-bubble.ai {
  align-self: flex-start;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.10);
}
.chat-bubble.user {
  align-self: flex-end;
  background: var(--yellow);
  color: var(--black);
}
.vocab-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 18px;
}
.vocab-strip span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 850;
}
.korean-app-points {
  display: grid;
  gap: 14px;
}
.korean-app-points div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.78);
}
.korean-app-points b,
.korean-app-points span {
  display: block;
}
.korean-app-points b {
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 18px;
}
.korean-app-points span {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.check-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 26px; color: #4f565c; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .58em; width: 11px; height: 11px; border-radius: 50%; background: var(--yellow); box-shadow: inset 0 0 0 3px #fff; border: 1px solid rgba(25,25,25,.1); }
.quote-card { background: #f4f6ff; color: var(--black); padding: 38px; border: 1px solid rgba(30,34,170,.10); }
.quote-card p { margin: 0 0 16px; font-size: clamp(28px, 4vw, 40px); line-height: 1.2; font-weight: 900; letter-spacing: -0.05em; }
.quote-card span { color: var(--text-soft); }
.application-narrative-card {
  padding: 32px;
  background: #fffdf4;
  border-color: rgba(30,34,170,.12);
}
.narrative-card-heading { margin-bottom: 22px; }
.narrative-card-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.narrative-card-heading h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}
.narrative-map-list {
  display: grid;
  gap: 14px;
}
.narrative-map-list article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(30,34,170,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
}
.narrative-map-list b {
  color: var(--black);
  font-size: 17px;
  line-height: 1.35;
}
.narrative-map-list p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 650;
  letter-spacing: 0;
}
.application-narrative-card .narrative-map-note {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(30,34,170,.12);
  color: var(--black);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 900;
  letter-spacing: 0;
}
.minor-rank-card { padding: 30px; overflow: hidden; }
.minor-rank-heading { margin-bottom: 20px; }
.minor-rank-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.minor-rank-heading h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}
.minor-rank-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(30,34,170,.10);
  border-radius: 18px;
  background: #fff;
}
.minor-rank-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 15px;
}
.minor-rank-table th,
.minor-rank-table td {
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(137,145,151,.16);
}
.minor-rank-table th {
  background: #fff9df;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}
.minor-rank-table td:first-child,
.minor-rank-table td:last-child {
  width: 110px;
  font-weight: 900;
  color: var(--blue);
}
.minor-rank-table tr:last-child td { border-bottom: 0; }
.minor-rank-card .rank-source {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.assessment-grid,
.feature-band-grid,
.learner-grid,
.path-grid,
.feedback-grid,
.support-grid {
  display: grid;
  gap: 18px;
}
.benchmark-table {
  display: grid;
  grid-template-columns: 1.05fr repeat(4, 1fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(137,145,151,.16);
  box-shadow: 0 12px 34px rgba(25,25,25,.06);
}
.benchmark-table > div {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 750;
  text-align: center;
  border-bottom: 1px solid rgba(137,145,151,.14);
}
.benchmark-table > div:nth-last-child(-n+5) { border-bottom: 0; }
.benchmark-label {
  justify-content: flex-start !important;
  color: #203263 !important;
  font-weight: 950 !important;
  text-align: left !important;
  background: #f7f7f2;
}
.level-chip {
  min-height: 88px !important;
  margin: 16px 6px;
  border-radius: 8px;
  color: #fff !important;
  font-size: 25px !important;
  font-weight: 950 !important;
  border-bottom: 0 !important;
}
.level-chip.yellow { background: #f5ee17; color: #fff !important; }
.level-chip.orange { background: #ffbd2f; }
.level-chip.cyan { background: #10d6dc; }
.level-chip.pink { background: #e983e8; }
.ability-map-section {
  background: #fff9e8;
}
.ability-map-header {
  max-width: 880px;
  margin: 0 auto 42px;
  text-align: center;
}
.ability-map-header h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.14;
  letter-spacing: -0.04em;
}
.ability-map-header p:not(.eyebrow) {
  margin: 18px auto 0;
  color: var(--text-soft);
  font-size: 18px;
}
.ability-map-scroll {
  overflow-x: auto;
  padding: 6px 2px 18px;
  -webkit-overflow-scrolling: touch;
}
.ability-map {
  min-width: 980px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,207,50,.26);
  box-shadow: 0 18px 46px rgba(25,25,25,.07);
}
.ability-stage-row,
.ability-track {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
}
.ability-stage-row {
  align-items: stretch;
  margin-bottom: 18px;
}
.ability-stage-corner,
.ability-track-label {
  border-radius: 18px;
  background: #fafaF6;
  border: 1px solid rgba(31,42,68,.08);
}
.ability-stage-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f2a44;
  font-weight: 950;
}
.ability-stage-row::after,
.ability-track-cells {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.ability-stage-row::after { content: none; }
.ability-stage-card {
  position: relative;
  min-height: 150px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fffdf3);
  border: 1px solid rgba(255,207,50,.30);
  box-shadow: 0 10px 24px rgba(25,25,25,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ability-stage-row {
  grid-template-columns: 220px repeat(5, 1fr);
}
.ability-stage-card:hover,
.ability-cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(25,25,25,.10);
}
.ability-stage-card span,
.ability-stage-card b,
.ability-stage-card p {
  display: block;
}
.ability-stage-card span {
  color: #1f2a44;
  font-size: 18px;
  font-weight: 950;
}
.ability-stage-card b {
  width: fit-content;
  margin: 12px 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 15px;
}
.ability-stage-card p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.55;
}
.ability-track {
  align-items: stretch;
  margin-top: 12px;
}
.ability-track-label {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 6px solid var(--blue);
}
.ability-track-label b {
  color: #1f2a44;
  font-size: 19px;
  line-height: 1.2;
}
.ability-track-label span {
  margin-top: 8px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}
.ability-cell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  color: #1f2a44;
  font-weight: 900;
  text-align: center;
  border: 1px solid rgba(31,42,68,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ability-cell-empty {
  color: rgba(107,114,128,.55);
  background: #fafaf6;
  font-weight: 700;
}
.track-phonics .ability-track-label { border-left-color: #ffcf32; }
.track-phonics .ability-cell:not(.ability-cell-empty) { background: #fff5c4; border-color: rgba(255,207,50,.42); }
.track-reading .ability-track-label { border-left-color: #27b887; }
.track-reading .ability-cell:not(.ability-cell-empty) { background: #e7f8ef; border-color: rgba(39,184,135,.26); }
.track-power .ability-track-label { border-left-color: #1e22aa; }
.track-power .ability-cell:not(.ability-cell-empty) { background: #eef1ff; border-color: rgba(30,34,170,.24); }
.track-cambridge .ability-track-label { border-left-color: #7c5cff; }
.track-cambridge .ability-cell:not(.ability-cell-empty) { background: #f0ebff; border-color: rgba(124,92,255,.24); }
.ability-map-note {
  max-width: 920px;
  margin: 22px auto 0;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}
.assessment-grid { grid-template-columns: repeat(3, 1fr); }
.assessment-card,
.feature-band-card,
.feedback-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(137,145,151,.16);
  box-shadow: 0 8px 22px rgba(25,25,25,.04);
}
.assessment-card b,
.feature-band-card b {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 15px;
  letter-spacing: .08em;
}
.assessment-card h3,
.feature-band-card h3,
.feedback-card b {
  display: block;
  margin: 0 0 12px;
  color: var(--black);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}
.assessment-card p,
.feature-band-card p,
.feedback-card p {
  margin: 0;
  color: var(--text-soft);
}
.feature-band-grid { grid-template-columns: repeat(3, 1fr); }
.feature-band-card {
  min-height: 270px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.98)),
    var(--light-yellow);
}
.learner-grid { grid-template-columns: repeat(4, 1fr); }
.learner-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(137,145,151,.16);
  box-shadow: 0 8px 22px rgba(25,25,25,.04);
  text-align: center;
}
.learner-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}
.learner-card div {
  padding: 26px 22px 30px;
}
.learner-card h3 {
  margin: 0 0 12px;
  color: #4a4f55;
  font-size: 23px;
  line-height: 1.2;
}
.learner-card p {
  margin: 0;
  color: var(--grey);
  line-height: 1.75;
}
.path-grid { grid-template-columns: repeat(3, 1fr); }
.path-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(137,145,151,.16);
  box-shadow: 0 8px 22px rgba(25,25,25,.04);
}
.path-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}
.path-card-body { padding: 28px; }
.path-card-body span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.path-card-body h3 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.18;
}
.path-card-body p {
  margin: 0;
  color: var(--text-soft);
}
.outcome-panel {
  display: grid;
  gap: 14px;
}
.outcome-panel div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(30,34,170,.10);
  box-shadow: 0 8px 22px rgba(25,25,25,.04);
}
.outcome-panel b {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 950;
}
.outcome-panel span {
  color: var(--black);
  font-size: 19px;
  font-weight: 850;
  line-height: 1.35;
}
.feedback-grid { grid-template-columns: repeat(4, 1fr); }
.support-grid { grid-template-columns: repeat(5, 1fr); }
.support-card {
  min-height: 190px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(137,145,151,.16);
  box-shadow: 0 8px 22px rgba(25,25,25,.04);
}
.support-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}
.support-card p {
  margin: 0;
  color: var(--text-soft);
}

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: start; }
.contact-form { display: grid; gap: 18px; }
.contact-form label { display: grid; gap: 8px; font-weight: 850; color: #34383d; }
input, select, textarea { width: 100%; border: 1px solid rgba(137,145,151,.34); background: #fff; border-radius: 14px; min-height: 48px; padding: 12px 14px; color: var(--black); }
textarea { min-height: 132px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(255,207,50,.35); border-color: var(--yellow); }
.contact-form button[disabled] { cursor: progress; opacity: .72; transform: none; box-shadow: none; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { margin: 0; color: var(--grey); font-size: 14px; }
.form-status {
  min-height: 24px;
  margin: -6px 0 0;
  font-size: 15px;
  font-weight: 800;
}
.form-status[data-status="success"] { color: #217a41; }
.form-status[data-status="error"] { color: #b73535; }
.contact-info { background: #f7f7f2; }
.contact-info h2 { margin: 0 0 24px; font-size: 34px; line-height: 1.2; letter-spacing: -0.04em; }
.contact-line { display: flex; justify-content: space-between; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(137,145,151,.24); }
.contact-line span { color: var(--grey); }
.contact-line b { text-align: right; }
.contact-follow-list {
  display: grid;
  gap: 14px;
}
.contact-follow-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(137,145,151,.22);
}
.contact-follow-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff3b8;
  color: #806300;
  font-size: 13px;
  font-weight: 950;
}
.contact-follow-list p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}
.contact-tips {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 2px solid rgba(30,34,170,.12);
}
.contact-tips h3 { margin: 0 0 12px; }
.contact-tips ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.contact-tips li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
  line-height: 1.65;
}
.contact-tips li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.about-story-hero {
  min-height: 520px;
  background-image:
    linear-gradient(90deg, rgba(255,253,246,.90) 0%, rgba(255,253,246,.72) 42%, rgba(255,253,246,.18) 72%),
    url("../assets/images/mascot-about-hero.png");
  background-position: center, right bottom;
  background-size: cover, cover;
  background-repeat: no-repeat;
}
.about-story-hero h1 {
  max-width: 980px;
}
.about-story-hero p:not(.eyebrow) {
  max-width: 820px;
}
.about-principle-section {
  background: #fff;
}
.about-principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.about-principle-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(31,42,68,.08);
  box-shadow: 0 12px 32px rgba(25,25,25,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.about-principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(25,25,25,.10);
}
.about-principle-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .08em;
}
.about-principle-card h3 {
  margin: 0 0 12px;
  color: #1f2a44;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.22;
}
.about-principle-card p {
  margin: 0;
  color: var(--text-soft);
}
.founder-note-section {
  background: #fafaf6;
}
.founder-note {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: start;
}
.founder-note-title {
  position: sticky;
  top: 126px;
}
.founder-note-title h2 {
  margin: 0;
  color: #1f2a44;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.14;
  letter-spacing: -0.04em;
}
.founder-note-title p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 18px;
}
.founder-direction-card {
  margin-top: 24px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(30,34,170,.12);
  box-shadow: 0 14px 34px rgba(25,25,25,.06);
}
.founder-direction-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef1ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.founder-direction-card h3 {
  margin: 0 0 16px;
  color: #1f2a44;
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.founder-direction-card p {
  margin: 0 0 14px;
  color: #4f565c;
  font-size: 16px;
  line-height: 1.78;
}
.founder-direction-card p:last-child {
  margin-bottom: 0;
  color: var(--blue);
  font-weight: 900;
}
.founder-letter {
  padding: clamp(28px, 4vw, 54px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,253,246,.98));
  border: 1px solid rgba(249,207,62,.28);
  box-shadow: 0 18px 48px rgba(25,25,25,.08);
}
.founder-letter p {
  margin: 0 0 18px;
  color: #303945;
  font-size: 17px;
  line-height: 1.95;
}
.founder-letter p:last-child {
  margin-bottom: 0;
}
.letter-ending {
  color: var(--blue) !important;
  font-weight: 950;
}
.about-action-section {
  background: #fff;
}
.about-action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border-radius: 28px;
  background: #fff9e8;
  border: 1px solid rgba(249,207,62,.34);
  box-shadow: 0 14px 38px rgba(25,25,25,.06);
}
.about-action-card h2 {
  margin: 0;
  color: #1f2a44;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.04em;
}
.about-action-card p:not(.eyebrow) {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.8;
}
.about-action-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.about-btn-primary {
  background: #1e22aa;
  color: #fff;
  box-shadow: 0 14px 30px rgba(30,34,170,.22);
}
.about-btn-secondary {
  background: #fff;
  color: #1e22aa;
  border-color: rgba(30,34,170,.22);
}
.about-btn-secondary:hover {
  border-color: #1e22aa;
}
.teaching-support-section {
  background: #fff;
}
.teacher-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.teacher-support-card {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(31,42,68,.08);
  box-shadow: 0 12px 32px rgba(25,25,25,.06);
}
.teacher-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.teacher-card-head img {
  flex: 0 0 auto;
  width: 86px;
  height: 86px;
  object-fit: contain;
  border-radius: 22px;
  background: #fff;
}
.teacher-support-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.teacher-support-card h3 {
  margin: 0 0 14px;
  color: #1f2a44;
  font-size: 26px;
  line-height: 1.16;
}
.teacher-support-card p {
  margin: 0;
  color: var(--text-soft);
}
.teacher-support-card b {
  display: block;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(31,42,68,.08);
  color: #1f2a44;
  font-weight: 850;
  line-height: 1.65;
}
.advisor-support-card {
  display: grid;
  grid-template-columns: minmax(240px, .52fr) minmax(0, 1.48fr);
  gap: 34px;
  margin-bottom: 24px;
  padding: 32px;
  border-radius: 28px;
  background: #fff9e8;
  border: 1px solid rgba(249,207,62,.34);
}
.advisor-support-card h3,
.advisor-support-card h4 {
  margin: 0;
  color: #1f2a44;
  line-height: 1.18;
}
.advisor-support-card h3 {
  font-size: clamp(28px, 3vw, 40px);
}
.advisor-support-card h4 {
  margin-bottom: 12px;
  font-size: 26px;
}
.advisor-support-card p:not(.eyebrow) {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.82;
}
.advisor-support-card p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 14px;
}
.advisor-portrait {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  min-height: 230px;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,.58);
}
.advisor-portrait img {
  width: 178px;
  max-height: 300px;
  object-fit: contain;
  object-position: bottom center;
  align-self: flex-end;
}

.course-hero {
  min-height: 600px;
  padding: 0;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(10,14,30,.78) 0%, rgba(10,14,30,.58) 48%, rgba(10,14,30,.16) 100%),
    url("../assets/images/course-hero-graduation.jpg") center 56% / cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.course-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: 0;
  align-items: center;
  min-height: 600px;
}
.course-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6.4vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  text-shadow: 0 4px 28px rgba(10,14,30,.35);
}
.course-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 34px;
  color: rgba(255,255,255,.92);
  font-size: 20px;
  text-shadow: 0 2px 18px rgba(10,14,30,.35);
}
.course-hero .eyebrow {
  color: var(--yellow);
}
.course-hero .btn-secondary {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.58);
  backdrop-filter: blur(12px);
}
.course-hero .btn-secondary:hover {
  background: rgba(255,255,255,.24);
  border-color: #fff;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.method-card {
  min-height: 310px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(137,145,151,.16);
  box-shadow: 0 8px 22px rgba(25,25,25,.04);
}
.method-card b {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 15px;
  letter-spacing: .08em;
}
.method-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
}
.method-card p {
  margin: 0;
  color: var(--text-soft);
}

.growth-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-top: 34px;
}
.growth-timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 59px;
  height: 3px;
  border-radius: 99px;
  background: var(--yellow);
}
.growth-step {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
}
.growth-step b {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 950;
  box-shadow: 0 0 0 8px #f7f7f2;
}
.growth-step h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.25;
}
.growth-step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
}

.module-list {
  display: grid;
  gap: 22px;
}
.module-card {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) 1fr;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(137,145,151,.16);
  box-shadow: 0 8px 22px rgba(25,25,25,.04);
}
.module-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.module-content {
  padding: 34px;
}
.module-content span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.module-content h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.module-content p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
}

.pathway-hero {
  background:
    linear-gradient(90deg, rgba(12,18,44,.78) 0%, rgba(12,18,44,.58) 46%, rgba(12,18,44,.18) 100%),
    url("../assets/images/kids.png") center / cover no-repeat;
  color: #fff;
}
.pathway-hero h1 {
  max-width: 960px;
  color: #fff;
}
.pathway-hero .eyebrow,
.pathway-hero p:not(.eyebrow) {
  color: rgba(255,255,255,.9);
}
.pathway-hero .btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.62);
  backdrop-filter: blur(10px);
}
.pathway-hero .btn-secondary:hover {
  background: rgba(255,255,255,.22);
  border-color: #fff;
}
.pathway-intro-section {
  background: #fff;
}
.pathway-intro {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: 36px;
  align-items: stretch;
}
.pathway-intro .section-heading {
  margin-bottom: 0;
}
.pathway-principles {
  display: grid;
  gap: 14px;
}
.pathway-principles article,
.pathway-principles div {
  position: relative;
  padding: 24px 26px 24px 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(31,42,68,.08);
  box-shadow: 0 12px 32px rgba(25,25,25,.05);
}
.pathway-principles article::before,
.pathway-principles div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 6px;
  border-radius: 999px;
  background: var(--yellow);
}
.pathway-principles b {
  display: block;
  margin-bottom: 8px;
  color: #1f2a44;
  font-size: 20px;
  line-height: 1.25;
}
.pathway-principles p {
  margin: 0;
  color: var(--text-soft);
}
.pathway-principles span {
  display: block;
  color: var(--text-soft);
}
.pathway-overview-section {
  background: #fff9e8;
}
.pathway-flow {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,207,50,.28);
  box-shadow: 0 18px 48px rgba(25,25,25,.07);
}
.flow-card {
  position: relative;
  padding: 24px 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(31,42,68,.08);
  box-shadow: 0 10px 26px rgba(25,25,25,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.flow-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(25,25,25,.10);
}
.flow-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 7px;
  border-radius: 999px;
  background: var(--blue);
}
.flow-card span,
.flow-branch span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef1ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}
.flow-card h3,
.flow-branch h4,
.flow-branch b {
  display: block;
  margin: 0 0 8px;
  color: #1f2a44;
  font-size: 24px;
  line-height: 1.2;
}
.flow-branch span {
  margin-bottom: 0;
}
.flow-card p,
.flow-branch p {
  margin: 0;
  color: var(--text-soft);
}
.flow-card.phonics::before,
.flow-card.flow-phonics::before { background: #ffcf32; }
.flow-card.phonics span,
.flow-card.flow-phonics span { background: #fff3b8; color: #836600; }
.flow-card.power::before,
.flow-card.flow-power::before { background: #1e22aa; }
.flow-arrow {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
}
.flow-branches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0 0 4px 36px;
}
.flow-branch {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(31,42,68,.08);
  box-shadow: 0 8px 22px rgba(25,25,25,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.flow-branch:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(25,25,25,.09);
}
.flow-branch.reading span,
.flow-branch.branch-reading span { background: #e8f7ea; color: #2f7e3b; }
.flow-branch.exam span,
.flow-branch.branch-exam span { background: #f2e8ff; color: #7941a8; }
.pathway-overview-section {
  padding: 72px 0;
}
.pathway-overview-section .section-heading {
  max-width: 920px;
  margin-bottom: 26px;
}
.pathway-overview-section .section-heading h2 {
  font-size: clamp(28px, 3vw, 42px);
}
.pathway-overview-section .section-heading p:not(.eyebrow) {
  margin-top: 14px;
  font-size: 17px;
}
.pathway-map {
  display: grid;
  grid-template-columns: minmax(170px, .86fr) 38px minmax(330px, 1.55fr) minmax(250px, 1fr);
  gap: 14px;
  align-items: stretch;
  max-width: 1060px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,207,50,.28);
  box-shadow: 0 16px 40px rgba(25,25,25,.07);
}
.map-entry,
.map-main,
.map-branch {
  position: relative;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(31,42,68,.08);
  box-shadow: 0 8px 22px rgba(25,25,25,.04);
}
.map-entry {
  display: flex;
  min-height: 166px;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-left: 7px solid #ffcf32;
}
.map-entry span,
.map-main-head span,
.map-branch span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}
.map-entry span { background: #fff3b8; color: #806300; }
.map-main-head span { background: #eef1ff; color: #1e22aa; }
.map-branch.map-reading span { background: #e8f7ea; color: #2f7e3b; }
.map-branch.map-exam span { background: #f2e8ff; color: #7941a8; }
.map-entry b,
.map-main-head b,
.map-branch b {
  display: block;
  color: #1f2a44;
  font-size: 22px;
  line-height: 1.18;
}
.map-entry p,
.map-branch p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}
.map-connector {
  position: relative;
  display: grid;
  place-items: center;
}
.map-connector::before {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
}
.map-connector::after {
  content: "";
  position: absolute;
  right: -2px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--yellow);
}
.map-main {
  display: flex;
  min-height: 166px;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-left: 7px solid #1e22aa;
}
.map-levels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.map-levels span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 6px;
  border-radius: 14px;
  background: #eef1ff;
  color: #1e22aa;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
}
.map-branches {
  display: grid;
  gap: 12px;
}
.map-branch {
  min-height: 78px;
  padding: 18px 20px;
}
.map-branch.map-reading { border-left: 7px solid #5cb85c; }
.map-branch.map-exam { border-left: 7px solid #8e44ad; }
.map-branch b {
  font-size: 19px;
}
.alignment-scroll {
  overflow-x: auto;
  padding: 4px 2px 16px;
  -webkit-overflow-scrolling: touch;
}
.alignment-table {
  min-width: 1180px;
  display: grid;
  grid-template-columns: 180px repeat(6, minmax(135px, 1fr));
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,207,50,.28);
  box-shadow: 0 16px 40px rgba(25,25,25,.07);
}
.alignment-corner,
.alignment-stage-group,
.alignment-head,
.alignment-label,
.alignment-cell {
  border-radius: 18px;
  border: 1px solid rgba(31,42,68,.08);
}
.alignment-corner,
.alignment-label {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fff;
}
.alignment-corner {
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: #1f2a44;
  font-weight: 950;
  text-align: center;
  box-shadow: 8px 0 18px rgba(25,25,25,.04);
}
.alignment-stage-group {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 10px 14px;
  background: #fff;
  color: #1f2a44;
  font-size: 18px;
  font-weight: 950;
  text-align: center;
}
.intro-stage {
  grid-column: span 2;
  background: #fff6c9;
  border-color: rgba(255,207,50,.44);
}
.alignment-head {
  min-height: 92px;
  padding: 16px 14px;
  background: linear-gradient(180deg, #fff, #fff9e8);
  text-align: center;
}
.alignment-head.blank-head {
  background: #fafaf6;
}
.alignment-head b,
.alignment-head span,
.alignment-head em,
.alignment-label b,
.alignment-label span,
.alignment-cell b,
.alignment-cell span {
  display: block;
}
.alignment-head b {
  margin-bottom: 10px;
  color: #1f2a44;
  font-size: 20px;
  line-height: 1.18;
}
.alignment-head span {
  width: fit-content;
  margin: 0 auto 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 950;
}
.alignment-head em {
  color: var(--blue);
  font-size: 14px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.25;
}
.alignment-label {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  box-shadow: 8px 0 18px rgba(25,25,25,.04);
}
.alignment-label b {
  color: #1f2a44;
  font-size: 20px;
  line-height: 1.15;
}
.alignment-label span {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.45;
}
.track-phonics { border-left: 7px solid #ffcf32; }
.track-power { border-left: 7px solid #1e22aa; }
.track-reading { border-left: 7px solid #5cb85c; }
.track-age { border-left: 7px solid #899197; }
.alignment-cell {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 16px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.alignment-cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(25,25,25,.09);
}
.alignment-cell b {
  color: #1f2a44;
  font-size: 18px;
  line-height: 1.2;
}
.alignment-cell span {
  margin-top: 8px;
  color: #596166;
  font-size: 13px;
  line-height: 1.45;
}
.phonics-cell {
  background: #fff6c9;
  border-color: rgba(255,207,50,.44);
}
.power-cell {
  background: #eef1ff;
  border-color: rgba(30,34,170,.22);
}
.reading-cell {
  background: #eaf8ed;
  border-color: rgba(92,184,92,.24);
}
.age-cell {
  background: #f4f6f8;
  border-color: rgba(137,145,151,.22);
}
.muted-cell {
  background: #f7f8ff;
  border-style: dashed;
}
.empty-cell {
  align-items: center;
  background: #fafaf6;
  color: rgba(107,114,128,.52);
  font-weight: 900;
}
.alignment-note {
  max-width: 960px;
  margin: 18px auto 0;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}
.child-path-section {
  background: #fff;
}
.child-path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.child-path-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(31,42,68,.08);
  box-shadow: 0 12px 32px rgba(25,25,25,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.child-path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(25,25,25,.10);
}
.path-sprout { border-top: 7px solid #ffcf32; }
.path-school { border-top: 7px solid #1e22aa; }
.path-reading { border-top: 7px solid #5cb85c; }
.path-exam { border-top: 7px solid #8e44ad; }
.path-number {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 11px;
  border-radius: 999px;
  background: #fff9e8;
  color: #1f2a44;
  font-size: 13px;
  font-weight: 950;
}
.child-path-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: #1f2a44;
  font-size: 25px;
  line-height: 1.18;
}
.path-title-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: #fafaf6;
}
.path-title-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.path-sprout .path-title-icon {
  color: #8a6800;
  background: #fff3b8;
}
.path-school .path-title-icon {
  color: #1e22aa;
  background: #eef1ff;
}
.path-reading .path-title-icon {
  color: #2f7e3b;
  background: #e8f7ea;
}
.path-exam .path-title-icon {
  color: #7941a8;
  background: #f2e8ff;
}
.path-fit,
.path-course {
  padding: 18px;
  border-radius: 18px;
  background: #fafaf6;
  border: 1px solid rgba(31,42,68,.06);
}
.path-fit b,
.path-goals b,
.path-course b {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
}
.path-fit p,
.path-course p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}
.path-goals {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}
.path-goals span {
  position: relative;
  display: block;
  padding: 11px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(31,42,68,.08);
  color: #1f2a44;
  font-size: 14px;
  font-weight: 850;
}
.path-goals span:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 2px;
  height: 8px;
  transform: translateX(-50%);
  background: rgba(30,34,170,.25);
}
.path-link {
  display: inline-flex;
  justify-content: center;
  margin-top: auto;
  padding: 12px 18px;
  border-radius: 999px;
  background: #eef1ff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
}
.path-link:hover {
  background: var(--blue);
  color: #fff;
}
.path-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 30px;
  border-radius: 24px;
  background: #fff9e8;
  border: 1px solid rgba(255,207,50,.32);
}
.path-cta h3 {
  margin: 0 0 8px;
  color: #1f2a44;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.16;
}
.path-cta p {
  max-width: 740px;
  margin: 0;
  color: var(--text-soft);
}
.path-cta-btn {
  flex: 0 0 auto;
  background: #1e22aa;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(30,34,170,.20);
}
.pathway-layer-section {
  overflow: hidden;
}
.pathway-layer-heading {
  max-width: 860px;
  margin: 0 0 34px;
}
.pathway-layer-heading h2 {
  margin: 0;
  color: #1f2a44;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.14;
  letter-spacing: -0.04em;
}
.pathway-layer-heading p {
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 18px;
}
.route-note {
  max-width: 900px;
  margin: -12px 0 28px;
  padding: 18px 22px;
  border-radius: 20px;
  background: #fff9e8;
  border: 1px solid rgba(255,207,50,.34);
  color: #596166;
}
.pathway-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pathway-card-grid.four-cards {
  grid-template-columns: repeat(4, 1fr);
}
.pathway-card {
  position: relative;
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(31,42,68,.08);
  box-shadow: 0 10px 28px rgba(25,25,25,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(25,25,25,.10);
}
.pathway-card summary {
  position: relative;
  padding-right: 42px;
  list-style: none;
  cursor: pointer;
}
.pathway-card summary::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fafaf6;
  color: #1f2a44;
  font-weight: 950;
  border: 1px solid rgba(31,42,68,.10);
}
.pathway-card[open] summary::after {
  content: "-";
  background: var(--yellow);
  border-color: rgba(255,207,50,.55);
}
.pathway-card summary::-webkit-details-marker {
  display: none;
}
.pathway-card summary span,
.pathway-card summary b,
.pathway-card summary em {
  display: block;
}
.pathway-card summary span {
  width: fit-content;
  margin-bottom: 24px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef1ff;
  color: var(--blue);
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
}
.pathway-card summary b {
  margin-bottom: 10px;
  color: #1f2a44;
  font-size: 25px;
  line-height: 1.12;
}
.pathway-card summary em {
  color: var(--text-soft);
  font-size: 15px;
  font-style: normal;
  line-height: 1.65;
}
.pathway-card-extra {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(31,42,68,.08);
}
.pathway-card-extra p {
  margin: 0;
  color: #4c5560;
  font-size: 15px;
}
.phonics-card { border-top: 7px solid #ffcf32; }
.phonics-card summary span { background: #fff3b8; color: #806300; }
.power-card { border-top: 7px solid #1e22aa; }
.power-card summary span { background: #eef1ff; color: #1e22aa; }
.reading-card { border-top: 7px solid #5cb85c; }
.reading-card summary span { background: #e8f7ea; color: #2f7e3b; }
.exam-card { border-top: 7px solid #8e44ad; }
.exam-card summary span { background: #f2e8ff; color: #7941a8; }
.pathway-summary-section {
  background: linear-gradient(135deg, #1e22aa 0%, #13216f 100%);
  color: #fff;
}
.pathway-summary {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.pathway-summary h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.pathway-summary p {
  max-width: 780px;
  margin: 20px auto 30px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
}
.pathway-summary .btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.site-footer { padding: 60px 0 28px; background: var(--black); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand { font-size: 24px; font-weight: 900; margin-bottom: 14px; color: var(--yellow); }
.site-footer p,
.site-footer a { color: rgba(255,255,255,.68); }
.site-footer a { display: block; margin: 8px 0; }
.site-footer h3 { margin: 0 0 12px; color: var(--yellow); }
.footer-bottom { margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: 14px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .72s ease, transform .72s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

.academic-page .section {
  padding: 72px 0;
}

body.academic-page {
  overflow-x: hidden;
}

.academic-page .container,
.academic-page .program-hero-grid,
.academic-page .section-heading,
.academic-page .study-section-heading,
.academic-page .program-diagnosis-card,
.academic-page .program-track-card,
.academic-page .service-module-card,
.academic-page .language-card,
.academic-page .skill-card,
.academic-page .exam-strength-card,
.academic-page .application-handbook {
  min-width: 0;
}

.academic-photo-hero {
  padding: 88px 0 70px;
  background-image:
    linear-gradient(90deg, rgba(10,14,30,.80) 0%, rgba(10,14,30,.58) 48%, rgba(10,14,30,.20) 100%),
    url("../assets/images/International6.jpg");
  background-position: center 48%;
}

.academic-photo-hero::before {
  display: none;
}

.academic-photo-hero .program-hero-grid {
  grid-template-columns: minmax(0, 820px);
  min-height: 500px;
  align-items: center;
}

.academic-page .page-hero p:not(.eyebrow) {
  max-width: 800px;
  font-size: 18px;
  line-height: 1.86;
}

.academic-diagnosis-section {
  background: #fffdf8;
}

.academic-diagnosis-grid .program-diagnosis-card {
  min-height: 286px;
}

.academic-diagnosis-grid .program-diagnosis-card:nth-child(2) b {
  background: var(--light-blue);
  color: var(--blue);
}

.academic-diagnosis-grid .program-diagnosis-card:nth-child(3) b {
  background: #ffe8f2;
  color: var(--pink);
}

.academic-diagnosis-grid .program-diagnosis-card:nth-child(4) b {
  background: #fff0e6;
  color: var(--orange);
}

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

.academic-track-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-top-color: var(--blue);
}

.academic-track-card:nth-child(2) {
  border-top-color: var(--yellow);
}

.academic-track-card:nth-child(3) {
  border-top-color: var(--pink);
}

.academic-track-card:nth-child(4) {
  border-top-color: var(--orange);
}

.academic-track-card .check-list {
  margin-top: auto;
  padding-top: 22px;
}

.academic-source-note {
  max-width: 860px;
  margin: 24px auto 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.academic-process-timeline {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.academic-service-flow-section .service-flow-timeline {
  background: #f8f9ff;
}

.academic-service-flow-section .service-module-card {
  min-height: 420px;
}

.academic-skill-section {
  background: #f8f9ff;
}

.academic-skill-section .skill-system-cards {
  margin-top: 86px;
}

.academic-plan-section {
  background: #fffdf8;
}

.academic-plan-grid .language-card > img {
  object-position: center 46%;
}

.academic-plan-grid .language-card:nth-child(2) > img {
  object-position: center 45%;
}

.academic-plan-grid .language-card:nth-child(3) > img {
  object-position: center 42%;
}

.academic-plan-grid .language-card:nth-child(4) > img {
  object-position: center 50%;
}

.academic-handbook {
  background: linear-gradient(135deg, #fffdf8 0%, #eef1ff 100%);
}

@media (max-width: 1120px) {
  .site-nav { gap: 14px; font-size: 14px; }
  .five-cards { grid-template-columns: repeat(2, 1fr); }
  .course-hero-grid,
  .module-card { grid-template-columns: 1fr; }
  .feature-band-grid,
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .learner-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-note { grid-template-columns: 1fr; }
  .founder-note-title { position: static; }
  .teacher-support-grid { grid-template-columns: 1fr; }
  .advisor-support-card { grid-template-columns: 1fr; }
  .advisor-portrait {
    margin-top: 18px;
    min-height: 170px;
    justify-content: flex-start;
  }
  .about-action-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-action-buttons { justify-content: flex-start; }
  .pathway-intro { grid-template-columns: 1fr; }
  .pathway-map {
    grid-template-columns: minmax(170px, .8fr) 30px minmax(300px, 1.3fr);
  }
  .map-branches {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
  }
  .alignment-table {
    min-width: 1120px;
  }
  .child-path-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .child-path-card {
    min-height: 0;
  }
  .pathway-card-grid,
  .pathway-card-grid.four-cards { grid-template-columns: repeat(2, 1fr); }
  .program-hero-grid {
    grid-template-columns: 1fr;
  }
  .program-hero-media,
  .program-hero-media img {
    min-height: 320px;
  }
  .program-diagnosis-grid,
  .language-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline,
  .service-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-timeline::before {
    display: none;
  }
  .process-node,
  .service-module-card {
    min-height: 0;
  }
  .program-track-grid,
  .application-module-grid {
    grid-template-columns: 1fr;
  }
  .skill-system-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .skill-system-cards {
    gap: 12px;
    margin-top: 0;
  }
  .skill-highlight-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .ielts-camp-overview {
    grid-template-columns: 1fr;
  }
  .camp-fit-grid,
  .camp-lesson-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .camp-value-grid {
    grid-template-columns: 1fr;
  }
  .application-plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .exam-strength-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .exam-strength-card {
    min-height: 360px;
  }
  .academic-track-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .academic-track-card,
  .academic-service-flow-section .service-module-card {
    min-height: 0;
  }
  .academic-skill-section .skill-system-cards {
    margin-top: 0;
  }
  .korean-app-card,
  .korean-app-panel {
    grid-template-columns: 1fr;
  }
  .phone-mock {
    min-height: 360px;
  }
  .assessment-grid,
  .path-grid,
  .feedback-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .growth-timeline {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 0;
  }
  .growth-timeline::before { display: none; }
  .growth-step {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding: 18px;
    text-align: left;
    background: #fff;
    border: 1px solid rgba(137,145,151,.16);
    border-radius: var(--radius-md);
  }
  .growth-step b {
    grid-row: 1 / span 2;
    margin: 0;
    box-shadow: none;
  }
  .growth-step h3,
  .growth-step p { grid-column: 2; }
  .module-card img {
    min-height: 0;
    aspect-ratio: 2.3 / 1;
  }
  .four-cards,
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-process {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 0;
  }
  .why-process::before { display: none; }
  .why-process .process-step {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 18px;
    text-align: left;
    background: #fff;
    border: 1px solid rgba(30,34,170,.10);
    box-shadow: 0 10px 28px rgba(25,25,25,.04);
  }
  .why-process .process-step b {
    grid-row: 1 / span 2;
    margin: 0;
    box-shadow: none;
  }
  .why-process .process-step h3 {
    grid-column: 2;
    margin-top: 0;
  }
  .why-process .process-step p { grid-column: 2; }
  .hero-new-inner,
  .split,
  .contact-grid { grid-template-columns: 1fr; }
  .section-soft .split { grid-template-areas: "intro" "features" "process"; }
  .feature-list { grid-template-rows: none; }
  .video-card {
    flex: none;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
  .hero-photo { min-height: 420px; }
  .hero-carousel { margin-top: 30px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
    background: rgba(250, 250, 250, .98);
    border: 1px solid rgba(137,145,151,.16);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 12px; }
  .nav-cta { text-align: center; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max-width)); }
  .nav-wrap { min-height: 80px; }
  .brand { height: 54px; }
  .site-header .brand img,
  .site-header .brand-logo {
    width: auto !important;
    height: 50px !important;
    max-height: 50px !important;
    max-width: 215px !important;
  }
  .site-nav { top: 80px; }
  .course-hero {
    min-height: 520px;
    padding: 0;
    background-position: 58% center;
  }
  .course-hero-grid { min-height: 520px; }
  .course-hero h1 { font-size: 42px; }
  .course-hero p:not(.eyebrow) { font-size: 18px; }
  .course-section-heading h2 {
    white-space: normal;
    font-size: 36px;
  }
  .method-grid { grid-template-columns: 1fr; }
  .feature-band-grid,
  .learner-grid,
  .support-grid { grid-template-columns: 1fr; }
  .about-principle-grid { grid-template-columns: 1fr; }
  .about-principle-card {
    min-height: 0;
    padding: 24px;
    border-radius: 20px;
  }
  .about-principle-card span { margin-bottom: 24px; }
  .founder-note { gap: 24px; }
  .founder-letter {
    padding: 24px;
    border-radius: 22px;
  }
  .founder-letter p {
    font-size: 16px;
    line-height: 1.85;
  }
  .teacher-support-card {
    padding: 24px;
    border-radius: 20px;
  }
  .teacher-card-head {
    gap: 14px;
  }
  .teacher-card-head img {
    width: 74px;
    height: 74px;
    border-radius: 18px;
  }
  .teacher-support-card span {
    margin-bottom: 6px;
  }
  .advisor-support-card {
    padding: 24px;
    border-radius: 20px;
  }
  .advisor-support-card p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.75;
  }
  .advisor-portrait {
    min-height: 150px;
  }
  .advisor-portrait img {
    width: 138px;
  }
  .about-action-card {
    padding: 24px;
    border-radius: 22px;
  }
  .about-action-buttons,
  .about-action-buttons .btn {
    width: 100%;
  }
  .pathway-hero {
    background:
      linear-gradient(90deg, rgba(12,18,44,.82) 0%, rgba(12,18,44,.60) 58%, rgba(12,18,44,.24) 100%),
      url("../assets/images/kids.png") 38% center / cover no-repeat;
  }
  .pathway-intro { gap: 24px; }
  .pathway-overview-section {
    padding: 56px 0;
  }
  .pathway-overview-section .section-heading {
    margin-bottom: 20px;
  }
  .pathway-overview-section .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }
  .pathway-map {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
    border-radius: 22px;
  }
  .map-entry,
  .map-main {
    min-height: 0;
    padding: 20px;
  }
  .map-entry b,
  .map-main-head b { font-size: 21px; }
  .map-connector {
    min-height: 28px;
  }
  .map-connector::before {
    width: 3px;
    height: 100%;
  }
  .map-connector::after {
    right: auto;
    bottom: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid var(--yellow);
    border-bottom: 0;
  }
  .map-levels {
    grid-template-columns: repeat(2, 1fr);
  }
  .map-levels span:last-child {
    grid-column: 1 / -1;
  }
  .map-branches {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .map-branch {
    padding: 18px;
  }
  .alignment-scroll {
    padding-bottom: 12px;
  }
  .alignment-table {
    min-width: 1040px;
    grid-template-columns: 148px repeat(6, 122px);
    gap: 8px;
    padding: 14px;
    border-radius: 20px;
  }
  .alignment-corner,
  .alignment-stage-group,
  .alignment-head,
  .alignment-label,
  .alignment-cell {
    border-radius: 15px;
  }
  .alignment-corner,
  .alignment-label {
    padding: 14px;
  }
  .alignment-head {
    min-height: 82px;
    padding: 15px 12px;
  }
  .alignment-stage-group {
    min-height: 42px;
    font-size: 16px;
  }
  .alignment-head b {
    font-size: 17px;
  }
  .alignment-head em,
  .alignment-label span,
  .alignment-cell span {
    font-size: 12px;
  }
  .alignment-label,
  .alignment-cell {
    min-height: 104px;
  }
  .alignment-label b,
  .alignment-cell b {
    font-size: 16px;
  }
  .alignment-cell {
    padding: 14px 12px;
  }
  .alignment-note {
    text-align: left;
    font-size: 13px;
  }
  .child-path-grid {
    grid-template-columns: 1fr;
  }
  .child-path-card {
    padding: 22px;
    border-radius: 20px;
  }
  .child-path-card h3 {
    font-size: 23px;
  }
  .path-title-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
  .path-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
    border-radius: 20px;
  }
  .path-cta-btn {
    width: 100%;
  }
  .pathway-principles article,
  .pathway-principles div {
    padding: 22px 22px 22px 28px;
    border-radius: 20px;
  }
  .pathway-flow {
    padding: 18px;
    border-radius: 22px;
  }
  .flow-card {
    padding: 22px 22px 22px 24px;
    border-radius: 20px;
  }
  .flow-card h3,
  .flow-branch h4,
  .flow-branch b { font-size: 21px; }
  .flow-arrow {
    min-height: 34px;
    font-size: 24px;
  }
  .flow-branches {
    grid-template-columns: 1fr;
    margin: 0;
  }
  .flow-branch {
    padding: 20px;
    border-radius: 20px;
  }
  .pathway-layer-heading { margin-bottom: 26px; }
  .pathway-layer-heading p { font-size: 17px; }
  .route-note {
    margin: -4px 0 22px;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 15px;
  }
  .pathway-card-grid,
  .pathway-card-grid.four-cards { grid-template-columns: 1fr; }
  .pathway-card {
    padding: 22px;
    border-radius: 20px;
  }
  .pathway-card summary span { margin-bottom: 18px; }
  .pathway-card summary b { font-size: 22px; }
  .pathway-summary { text-align: left; }
  .pathway-summary p { margin-left: 0; }
  .benchmark-table {
    grid-template-columns: 1fr;
  }
  .benchmark-table > div {
    min-height: 0;
    justify-content: flex-start;
    text-align: left;
  }
  .level-chip {
    margin: 0;
    min-height: 62px !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .ability-map-header { margin-bottom: 28px; }
  .ability-map-header p:not(.eyebrow) { font-size: 17px; }
  .ability-map-scroll {
    padding-bottom: 14px;
  }
  .ability-map {
    min-width: 860px;
    padding: 18px;
  }
  .ability-stage-row {
    grid-template-columns: 165px repeat(5, 1fr);
    gap: 8px;
  }
  .ability-track {
    grid-template-columns: 165px 1fr;
    gap: 8px;
    margin-top: 8px;
  }
  .ability-track-cells {
    gap: 8px;
  }
  .ability-stage-card {
    min-height: 138px;
    padding: 14px;
  }
  .ability-stage-card span { font-size: 16px; }
  .ability-stage-card p { font-size: 13px; }
  .ability-track-label { padding: 14px; }
  .ability-track-label b { font-size: 17px; }
  .ability-cell {
    min-height: 74px;
    padding: 12px;
    font-size: 14px;
  }
  .ability-map-note {
    text-align: left;
    font-size: 13px;
  }
  .assessment-card,
  .feature-band-card,
  .learner-card div,
  .path-card-body,
  .support-card,
  .feedback-card { padding: 24px; }
  .method-card {
    min-height: 0;
    padding: 24px;
  }
  .method-card b { margin-bottom: 24px; }
  .module-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    overflow: hidden;
    background: #fff;
  }
  .module-card img {
    grid-row: 1;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
  }
  .module-content {
    position: relative;
    z-index: 1;
    grid-row: 2;
    padding: 24px;
    background: #fff;
  }
  .path-card img { aspect-ratio: 1.55 / 1; }
  .outcome-panel div {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 18px;
  }
  .outcome-panel b {
    width: 40px;
    height: 40px;
  }
  .outcome-panel span { font-size: 17px; }
  .hero-new {
    padding: 0 0 36px;
    background-position: 58% center;
  }
  .hero-new-inner { min-height: 430px; }
  .hero-copy { padding: 44px 0 38px; }
  .hero-title-line { gap: 12px; margin-bottom: 24px; }
  .hero-brand-name { font-size: 36px; }
  .hero-slogan { font-size: 32px; }
  .hero-subtitle { font-size: 18px; line-height: 1.85; }
  .hero-photo { min-height: 300px; }
  .btn { width: 100%; }
  .hero-carousel { width: min(100%, calc(100% - 28px)); }
  .carousel-track { aspect-ratio: 8 / 3; height: auto; border-radius: 22px; }
  .carousel-caption { left: 16px; right: 16px; bottom: 16px; padding: 14px 18px; }
  .carousel-caption h3 { font-size: 21px; }
  .carousel-caption p { font-size: 11px; }
  .section { padding: 62px 0; }
  .hero-new + .section { padding-top: 44px; }
  .five-cards,
  .four-cards,
  .three-cards,
  .two-cards,
  .process-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .contact-line { flex-direction: column; }
  .contact-line b { text-align: left; }
  .page-hero { padding: 64px 0 58px; }
  .about-story-hero {
    background-position: center, right bottom;
  }
  .minor-photo-hero {
    padding: 58px 0 50px;
    background-position: 58% center;
  }
  .minor-photo-hero .program-hero-grid {
    min-height: 410px;
  }
  .application-photo-hero {
    padding: 58px 0 50px;
    background-position: 57% center;
  }
  .application-photo-hero .program-hero-grid {
    min-height: 410px;
  }
  .language-photo-hero {
    padding: 58px 0 50px;
    background-position: 54% center;
  }
  .language-photo-hero .program-hero-grid {
    min-height: 410px;
  }
  .academic-photo-hero {
    padding: 58px 0 50px;
    background-position: 51% center;
  }
  .academic-photo-hero .program-hero-grid {
    min-height: 410px;
  }
  .academic-page .page-hero h1 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.14;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    word-break: break-all;
    white-space: normal;
  }
  .academic-page .section-heading h2,
  .academic-page .study-section-heading h2,
  .academic-page .skill-system-copy h2,
  .academic-page .exam-strength-head h2,
  .academic-page .application-handbook h2,
  .academic-page .cta-inner h2 {
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    word-break: break-all;
    white-space: normal;
  }
  .academic-page h3,
  .academic-page p,
  .academic-page li {
    overflow-wrap: anywhere;
    word-break: break-all;
  }
  .academic-page .page-hero p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.78;
  }
  .program-hero-grid {
    gap: 26px;
  }
  .program-hero-media,
  .program-hero-media img {
    min-height: 230px;
    border-radius: 22px;
  }
  .program-diagnosis-grid,
  .language-card-grid {
    grid-template-columns: 1fr;
  }
  .academic-track-grid {
    grid-template-columns: 1fr;
  }
  .academic-track-card {
    padding: 24px;
    border-radius: 22px;
  }
  .academic-source-note {
    text-align: left;
  }
  .study-modules-section {
    padding: 72px 0;
  }
  .study-section-container {
    width: min(100% - 28px, 1120px);
  }
  .study-section-heading {
    margin-bottom: 32px;
  }
  .study-section-lead {
    font-size: 16px;
    line-height: 1.82;
  }
  .study-section-sublead {
    font-size: 15px;
    line-height: 1.78;
  }
  .service-flow-timeline {
    margin-bottom: 30px;
    padding: 22px;
  }
  .service-flow-timeline h3 {
    margin-bottom: 22px;
  }
  .process-timeline,
  .service-module-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .process-timeline::before {
    display: block;
    left: 25px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    background: rgba(30,34,170,.16);
  }
  .process-node {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: center;
    padding: 10px 0;
    text-align: left;
  }
  .process-number {
    position: relative;
    width: 46px;
    height: 46px;
    box-shadow: 0 0 0 6px var(--spark-bg);
  }
  .process-node h3,
  .process-node h4 {
    font-size: 21px;
  }
  .service-module-card {
    min-height: auto;
    padding: 24px;
  }
  .refined-service-flow-section .service-module-card {
    padding: 24px;
    border-radius: 22px;
  }
  .module-icon {
    width: 50px;
    height: 50px;
  }
  .program-diagnosis-card,
  .program-track-card,
  .language-card-body,
  .application-module-card div {
    padding: 24px;
  }
  .program-diagnosis-card {
    min-height: 0;
  }
  .ielts-camp-copy,
  .camp-outcome-panel,
  .camp-poster-card,
  .camp-lessons-block,
  .camp-value-card {
    padding: 24px;
    border-radius: 22px;
  }
  .camp-poster-card {
    padding: 8px;
  }
  .camp-poster-card img {
    border-radius: 16px;
  }
  .camp-meta-grid,
  .camp-fit-grid,
  .camp-lesson-grid,
  .camp-value-grid {
    grid-template-columns: 1fr;
  }
  .camp-meta-grid div,
  .camp-fit-card,
  .camp-lesson-grid article {
    min-height: 0;
  }
  .camp-fit-card {
    padding: 24px;
  }
  .application-module-card img {
    aspect-ratio: 1.45 / 1;
  }
  .application-plan-grid {
    grid-template-columns: 1fr;
  }
  .plan-poster img {
    aspect-ratio: .86 / 1;
  }
  .application-handbook {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
    border-radius: 22px;
  }
  .application-handbook .btn {
    width: 100%;
  }
  .exam-strength-head {
    margin-bottom: 28px;
    text-align: left;
  }
  .exam-strength-head p:not(.eyebrow) {
    margin-left: 0;
  }
  .exam-strength-list {
    grid-template-columns: 1fr;
  }
  .exam-strength-card {
    min-height: auto;
    padding: 0;
    border-radius: 22px;
  }
  .strength-card-top {
    min-height: 155px;
    margin-bottom: 0;
    padding: 20px;
  }
  .strength-card-top strong {
    font-size: 28px;
  }
  .strength-card-body {
    padding: 22px;
  }
  body.language-exam-page .section {
    padding: 50px 0;
  }
  body.language-exam-page .section-heading {
    margin-bottom: 26px;
  }
  body.language-exam-page .language-photo-hero {
    padding: 48px 0 42px;
  }
  body.language-exam-page .language-photo-hero .program-hero-grid {
    min-height: 350px;
  }
  body.language-exam-page .study-modules-section {
    padding: 56px 0;
  }
  body.language-exam-page .ielts-camp-copy,
  body.language-exam-page .camp-lessons-block,
  body.language-exam-page .application-handbook {
    padding: 22px;
  }
  body.language-exam-page .refined-service-flow-section .service-module-card {
    padding: 22px;
  }
  .skill-system-shell {
    gap: 22px;
  }
  .skill-system-grid {
    gap: 24px;
  }
  .skill-system-copy h2 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.12;
  }
  .skill-system-copy p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.78;
  }
  .skill-card {
    grid-template-columns: 46px 1fr;
    min-height: 0;
    padding: 22px 22px 22px 28px;
    border-radius: 22px;
  }
  .skill-card::before {
    left: 18px;
    top: 24px;
    width: 7px;
    height: 34px;
  }
  .skill-card span {
    padding-left: 12px;
  }
  .skill-card h3 {
    font-size: 21px;
  }
  .skill-card p {
    font-size: 15px;
    line-height: 1.72;
  }
  .skill-highlight-card {
    padding: 28px 24px;
    border-radius: 24px;
  }
  .skill-highlight-card p {
    font-size: clamp(25px, 7vw, 32px);
  }
  .skill-highlight-card span {
    font-size: 16px;
  }
  body.language-exam-page .strength-card-top {
    min-height: 135px;
    padding: 18px;
  }
  body.language-exam-page .strength-card-body {
    padding: 20px;
  }
  body.language-exam-page .cta-band {
    padding: 52px 0;
  }
  .korean-app-card {
    padding: 24px;
    border-radius: 22px;
  }
  .korean-app-actions,
  .korean-app-actions .btn {
    width: 100%;
  }
  .phone-mock {
    min-height: 330px;
    padding: 18px;
    border-radius: 24px;
  }
}
