/* ============================================================
   WELLCLASS 영어교습소 Landing Page
   Colors  : Navy #16365C / Red #BE3144 / Cream #F4EFE6
   Font    : SUIT (local)
============================================================ */

/* ---------- Fonts ---------- */
@font-face { font-family: 'SUIT'; src: url('../font/SUIT-Thin.otf') format('opentype'); font-weight: 100; font-display: swap; }
@font-face { font-family: 'SUIT'; src: url('../font/SUIT-ExtraLight.otf') format('opentype'); font-weight: 200; font-display: swap; }
@font-face { font-family: 'SUIT'; src: url('../font/SUIT-Light.otf') format('opentype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'SUIT'; src: url('../font/SUIT-Regular.otf') format('opentype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'SUIT'; src: url('../font/SUIT-Medium.otf') format('opentype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'SUIT'; src: url('../font/SUIT-SemiBold.otf') format('opentype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'SUIT'; src: url('../font/SUIT-Bold.otf') format('opentype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'SUIT'; src: url('../font/SUIT-ExtraBold.otf') format('opentype'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'SUIT'; src: url('../font/SUIT-Heavy.otf') format('opentype'); font-weight: 900; font-display: swap; }

/* ---------- Variables / Reset ---------- */
:root {
  --navy: #16365c;
  --navy-deep: #0e2747;
  --red: #be3144;
  --red-deep: #a02234;
  --cream: #f4efe6;
  --ink: #1c2433;
  --gray: #5d6878;
  --line: #e6e9ef;
  --bg-soft: #f7f9fc;
  --shadow: 0 14px 40px rgba(22, 54, 92, 0.10);
  --radius: 18px;
  --header-h: 72px;
  --promo-h: 78px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--promo-h) + 8px);
}

body {
  font-family: 'SUIT', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  letter-spacing: -0.015em;
  word-break: keep-all;
  overflow-wrap: break-word;
  overflow-x: hidden;
}
h1, h2, h3, h4 { text-wrap: balance; }
p, li { text-wrap: pretty; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
b, strong { font-weight: 800; }

.container { width: min(1140px, 92%); margin: 0 auto; }
.container--narrow { width: min(860px, 92%); }

.br-m { display: none; }
@media (max-width: 768px) {
  .br-m { display: block; }
  .br-pc { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); }

.btn--red {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  box-shadow: 0 10px 26px rgba(190, 49, 68, .35);
}
.btn--red:hover { box-shadow: 0 14px 32px rgba(190, 49, 68, .45); }

.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 10px 26px rgba(22,54,92,.28); }
.btn--white { background: #fff; color: var(--navy); }
.btn--green { background: #03c75a; color: #fff; box-shadow: 0 10px 26px rgba(3,199,90,.3); }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.25); }
.btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.header__inner {
  width: min(1240px, 94%);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo { display: flex; align-items: center; gap: 10px; }
.header__logo img { width: 46px; height: 46px; object-fit: contain; }
.header__logo-text { font-weight: 900; font-size: 19px; color: var(--navy); line-height: 1.2; }
.header__logo-text em { font-style: normal; font-weight: 600; font-size: 13px; color: var(--red); display: block; }

.header__nav { display: flex; align-items: center; gap: 28px; }
.header__nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: color .2s;
  position: relative;
}
.header__nav a:not(.header__cta):hover { color: var(--red); }
.header__nav a:not(.header__cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .25s;
}
.header__nav a:not(.header__cta):hover::after { width: 100%; }
.header__cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background .2s;
}
.header__cta:hover { background: var(--red); }

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  border-radius: 10px;
}
.header__burger span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--navy);
}
.header__burger span:nth-child(2) { width: 70%; align-self: flex-end; background: var(--red); }

/* ---------- Mobile Drawer (:target) ---------- */
.drawer { position: fixed; inset: 0; z-index: 200; pointer-events: none; visibility: hidden; }
.drawer__dim {
  position: absolute; inset: 0;
  background: rgba(14, 25, 43, .55);
  opacity: 0;
  transition: opacity .35s ease;
}
.drawer__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 82%);
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 28px 36px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22, .9, .3, 1);
  box-shadow: -18px 0 50px rgba(14, 25, 43, .25);
  overflow-y: auto;
}
.drawer:target { pointer-events: auto; visibility: visible; }
.drawer:target .drawer__dim { opacity: 1; }
.drawer:target .drawer__panel { transform: translateX(0); }

.drawer__close {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 34px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1;
  padding: 6px 10px;
}
.drawer__logo { width: 84px; margin-bottom: 22px; }
.drawer__nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.drawer__nav a {
  width: 100%;
  padding: 15px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  transition: color .2s, background .2s;
}
.drawer__nav a:first-child { border-top: 1px solid var(--line); }
.drawer__nav a:hover { color: var(--red); background: var(--bg-soft); }
.drawer__call {
  margin-top: auto;
  width: 100%;
  text-align: center;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  padding: 16px 0;
  border-radius: 14px;
}
.drawer__nav + .drawer__call { margin-top: 28px; }

/* ---------- Scholarship Sticky Strip ---------- */
.scholarship-strip {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  height: var(--promo-h);
  z-index: 99;
  color: #fff;
  background:
    radial-gradient(circle at 12% 40%, rgba(255, 220, 118, .42), transparent 26%),
    radial-gradient(circle at 86% 16%, rgba(255, 255, 255, .22), transparent 22%),
    linear-gradient(115deg, #0e2747 0%, #16365c 42%, #be3144 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  box-shadow: 0 12px 26px rgba(14, 39, 71, .22);
  overflow: hidden;
}
.scholarship-strip::before,
.scholarship-strip::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.scholarship-strip::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 10%, rgba(255,255,255,.12) 10% 10.6%, transparent 10.6% 18%),
    repeating-linear-gradient(-18deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px);
  opacity: .45;
}
.scholarship-strip::after {
  width: 220px;
  height: 220px;
  right: -72px;
  top: -86px;
  border-radius: 50%;
  background: rgba(255, 211, 96, .18);
  border: 1px solid rgba(255, 255, 255, .18);
}
.scholarship-strip__link {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.scholarship-strip__inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 94%);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
}
.scholarship-strip__mobile { display: none; }
.scholarship-strip__brand {
  position: relative;
  flex: none;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
}
.scholarship-strip__brand img {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .24);
}
.scholarship-strip__glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 223, 108, .9), rgba(255, 223, 108, 0) 68%);
  animation: scholarshipGlow 2.8s ease-in-out infinite;
}
.scholarship-strip__copy {
  min-width: 0;
  text-align: center;
}
.scholarship-strip__eyebrow {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  color: #ffe99a;
}
.scholarship-strip__copy strong {
  display: block;
  font-size: clamp(20px, 3vw, 31px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.035em;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .28);
  white-space: nowrap;
}
.scholarship-strip__mobile-text { display: none; }
.scholarship-strip__button {
  position: relative;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  padding: 11px 22px 12px;
  border-radius: 10px;
  color: #381f06;
  background:
    linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,0) 34%),
    linear-gradient(135deg, #f9e9b1 0%, #d9a94f 48%, #a86f1d 100%);
  border: 1px solid rgba(255, 244, 201, .9);
  box-shadow: 0 9px 18px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .8);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.03em;
  overflow: hidden;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .55);
  transition: box-shadow .25s ease, filter .25s ease;
  pointer-events: none;
}
.scholarship-strip__button:hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .85);
}
.scholarship-strip__button::after {
  content: '›';
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-54%);
  color: rgba(56, 31, 6, .64);
  font-size: 22px;
  line-height: 1;
}
@keyframes scholarshipGlow {
  0%, 100% { transform: scale(.92); opacity: .65; }
  50% { transform: scale(1.12); opacity: 1; }
}

/* ---------- Scholarship Modal (:target) ---------- */
.scholarship-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  visibility: hidden;
}
.scholarship-modal:target {
  pointer-events: auto;
  visibility: visible;
}
.scholarship-modal__dim {
  position: absolute;
  inset: 0;
  background: rgba(8, 19, 35, .68);
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: opacity .28s ease;
}
.scholarship-modal:target .scholarship-modal__dim { opacity: 1; }
.scholarship-modal__panel {
  position: relative;
  width: min(440px, 100%);
  padding: 34px 28px 30px;
  border-radius: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 223, 120, .28), transparent 42%),
    #fff;
  border: 1px solid rgba(255, 255, 255, .75);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
  transform: translateY(12px) scale(.98);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}
.scholarship-modal:target .scholarship-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.scholarship-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 30px;
  line-height: 1;
  color: #8b95a5;
}
.scholarship-modal__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 8px 20px rgba(22, 54, 92, .16);
}
.scholarship-modal__eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  color: var(--red);
  margin-bottom: 8px;
}
.scholarship-modal h2 {
  font-size: clamp(24px, 5vw, 31px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
}
.scholarship-modal h2::after {
  content: '';
  display: block;
  width: 54px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), var(--red));
}
.scholarship-modal__panel > p:not(.scholarship-modal__eyebrow) {
  margin-top: 16px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--gray);
  line-height: 1.65;
}
.scholarship-modal__form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  text-align: left;
}
.scholarship-modal__form label {
  display: grid;
  gap: 6px;
}
.scholarship-modal__form label span {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}
.scholarship-modal__form input,
.scholarship-modal__form textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.scholarship-modal__form textarea { resize: vertical; min-height: 82px; }
.scholarship-modal__form input:focus,
.scholarship-modal__form textarea:focus {
  border-color: rgba(190, 49, 68, .55);
  box-shadow: 0 0 0 4px rgba(190, 49, 68, .09);
}
.scholarship-modal__form button,
.scholarship-modal__call {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
}
.scholarship-modal__form button {
  border: none;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 10px 24px rgba(190, 49, 68, .28);
  cursor: pointer;
  font-family: inherit;
}
.scholarship-modal__call {
  margin-top: 10px;
  color: #fff;
  background: var(--navy);
}

/* ---------- Section common ---------- */
.section { padding: 110px 0; }
.section__eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .22em;
  color: var(--red);
  margin-bottom: 14px;
}
.section__eyebrow--left { text-align: left; }
.section__eyebrow--light { color: #ffb3be; }
.section__title {
  text-align: center;
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 800;
  line-height: 1.32;
  color: var(--navy);
  text-wrap: balance;
}
.section__title strong { color: var(--red); font-weight: 900; }
.section__title--left { text-align: left; }
.section__title--light { color: #fff; }
.section__title--light strong { color: #ffd7dd; }
.section__sub {
  text-align: center;
  margin-top: 16px;
  font-size: 17px;
  color: var(--gray);
  font-weight: 500;
}

/* ---------- 1. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--promo-h) + 40px) 0 70px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(10, 24, 44, .94) 0%,
    rgba(13, 32, 58, .86) 38%,
    rgba(18, 42, 74, .55) 68%,
    rgba(18, 42, 74, .30) 100%);
}
.hero__inner { width: min(1140px, 92%); margin: 0 auto; color: #fff; }
.hero__badge {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .06em;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
  backdrop-filter: blur(4px);
}
.hero__title {
  font-size: clamp(38px, 6.4vw, 68px);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: -0.03em;
}
.hero__title strong {
  font-weight: 900;
  background: linear-gradient(120deg, #fff 30%, #ffc7cf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__desc {
  margin-top: 26px;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 400;
  color: rgba(255, 255, 255, .92);
  line-height: 1.75;
}
.hero__desc b { color: #ffd7dd; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, .25);
  max-width: 640px;
}
.hero__stats li {
  flex: 1 1 0;
  min-width: 120px;
  padding: 20px 8px 0;
  text-align: left;
}
.hero__stats li + li { border-left: 1px solid rgba(255,255,255,.18); padding-left: 22px; }
.hero__stats strong { display: block; font-size: clamp(22px, 3vw, 30px); font-weight: 900; color: #fff; }
.hero__stats span { font-size: 13.5px; color: rgba(255,255,255,.72); font-weight: 500; }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
  padding: 15px 0;
  border-top: 3px solid var(--red);
}
.ticker__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: ticker 26s linear infinite;
}
.ticker__track span { font-size: 15px; font-weight: 500; white-space: nowrap; opacity: .95; }
.ticker__track b { color: #ff9aa8; font-weight: 800; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- 2. Pain ---------- */
.pain { background: #fff; }
.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.pain__card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.pain__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(190, 49, 68, .35);
}
.pain__check {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.pain__card p { font-size: 15.5px; font-weight: 500; color: var(--ink); line-height: 1.65; }
.pain__card b { color: var(--red); }
.pain__answer { text-align: center; margin-top: 58px; }
.pain__answer p { font-size: clamp(19px, 2.6vw, 25px); font-weight: 500; line-height: 1.6; color: var(--ink); }
.pain__answer strong { color: var(--navy); font-weight: 900; }
.pain__answer .btn { margin-top: 26px; }

/* ---------- 3. Why ---------- */
.why { background: linear-gradient(180deg, var(--bg-soft), #fff); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 54px;
}
.why__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.why__card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  opacity: 0;
  transition: opacity .25s;
}
.why__card:hover::before { opacity: 1; }
.why__num {
  font-size: 15px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.why__card h3 { font-size: 21px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.why__card p { font-size: 15.5px; color: var(--gray); font-weight: 500; line-height: 1.7; }

/* ---------- 4. Test ---------- */
.test { background: #fff; }
.test__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.test__img { position: relative; }
.test__img img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.test__img-badge {
  position: absolute;
  right: -16px; bottom: 30px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  padding: 18px 24px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(190, 49, 68, .4);
}
.test__img-badge b { font-size: 19px; font-weight: 900; }
.test__desc { margin-top: 22px; font-size: 17px; color: var(--gray); font-weight: 500; line-height: 1.75; }
.test__desc b { color: var(--red); }
.test__steps { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
.test__steps li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.test__steps li:first-child { border-top: 2px solid var(--navy); }
.test__step-num {
  flex: none;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  padding: 6px 12px;
  height: fit-content;
  letter-spacing: .06em;
}
.test__steps h4 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 5px; }
.test__steps p { font-size: 14.5px; color: var(--gray); font-weight: 500; }
.test__steps p b { color: var(--red); }
.test__content .btn { margin-top: 32px; }

/* ---------- 5. Curriculum ---------- */
.curriculum { background: var(--bg-soft); }
.curriculum__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}
.cur-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.cur-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cur-card__img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.cur-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cur-card:hover .cur-card__img img { transform: scale(1.06); }
.cur-card__tag {
  position: absolute;
  left: 16px; top: 16px;
  background: var(--navy);
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 999px;
}
.cur-card:nth-child(2) .cur-card__tag { background: var(--red); }
.cur-card__body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.cur-card__body h3 { font-size: 20px; font-weight: 800; color: var(--navy); line-height: 1.4; margin-bottom: 16px; }
.cur-card__body ul { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.cur-card__body ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray);
}
.cur-card__body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--red);
}
.cur-card__img--top img { object-position: center top; }
.cur-card__quote {
  margin-top: auto;
  background: var(--cream);
  border-left: 4px solid var(--red);
  border-radius: 0 12px 12px 0;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
}

/* ---------- Schools ---------- */
.schools { margin-top: 56px; text-align: center; }
.schools__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 18px;
}
.schools__title::before, .schools__title::after { content: '—'; color: #c6cdd8; margin: 0 12px; }
.schools__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.schools__chips li {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
}
.schools__banner { max-width: 860px; margin: 30px auto 0; }
.schools__banner img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

/* ---------- 5.5 Videos ---------- */
.videos { background: #fff; }
.videos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 54px;
}
.video-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.video-card__thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #0b1c33; }
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, opacity .3s; }
.video-card:hover .video-card__thumb img { transform: scale(1.06); opacity: .82; }
.video-card__play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(190, 49, 68, .92);
  color: #fff;
  font-size: 18px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  transition: transform .25s, background .25s;
}
.video-card:hover .video-card__play { transform: translate(-50%, -50%) scale(1.12); background: var(--red); }
.video-card h3 { font-size: 16.5px; font-weight: 800; color: var(--navy); padding: 18px 20px 6px; line-height: 1.4; }
.video-card p { font-size: 13.5px; font-weight: 500; color: var(--gray); padding: 0 20px 20px; line-height: 1.6; }

/* ---------- 6. AI ---------- */
.ai {
  background:
    radial-gradient(900px 500px at 85% 15%, rgba(190, 49, 68, .28), transparent 60%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
}
.ai__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.ai__desc { margin-top: 22px; font-size: 17px; color: rgba(255,255,255,.85); font-weight: 400; line-height: 1.8; }
.ai__desc b { color: #ffd7dd; font-weight: 700; }
.ai__list { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.ai__list li {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  padding: 16px 22px;
  font-size: 15.5px;
  font-weight: 400;
  color: rgba(255,255,255,.88);
}
.ai__list b { color: #fff; font-weight: 800; }
.ai__note { margin-top: 22px; font-size: 13.5px; color: rgba(255,255,255,.55); }
.ai__img img { border-radius: 24px; box-shadow: 0 24px 60px rgba(0, 0, 0, .4); }

/* ---------- 7. Seats ---------- */
.seats { background: #fff; }
.seats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 54px;
}
.seat-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .25s, box-shadow .25s;
}
.seat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.seat-card--hot {
  border-color: var(--red);
  background: linear-gradient(180deg, #fff6f7, #fff);
  box-shadow: 0 14px 36px rgba(190, 49, 68, .16);
}
.seat-card__flag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  background: var(--red);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  animation: pulse 1.8s ease-in-out infinite;
}
.seat-card__flag--navy { background: var(--navy); animation: none; }
.seat-card__flag--red { background: var(--red); animation: none; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(190, 49, 68, .45); }
  50% { box-shadow: 0 0 0 9px rgba(190, 49, 68, 0); }
}
.seat-card h3 { font-size: 22px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.seat-card__left { font-size: 15px; color: var(--gray); font-weight: 600; }
.seat-card__left strong { font-size: 24px; color: var(--red); font-weight: 900; margin-right: 4px; }
.seat-card__left span { font-size: 13.5px; color: #9aa3b2; }
.seat-card__bar {
  height: 9px;
  background: var(--line);
  border-radius: 99px;
  margin: 14px 0 16px;
  overflow: hidden;
}
.seat-card__bar i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--navy), var(--red));
}
.seat-card__time { font-size: 13.5px; font-weight: 600; color: var(--gray); }
.seat-card--cta {
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  border: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.seat-card--cta h3 { color: #fff; line-height: 1.4; }
.seat-card--cta p { font-size: 14.5px; color: rgba(255,255,255,.75); margin: 12px 0 22px; }
.seat-card--cta .btn { font-size: 18px; font-weight: 900; }
.seats__note { text-align: center; margin-top: 34px; font-size: 14px; color: #9aa3b2; font-weight: 500; }

/* ---------- 8. Care ---------- */
.care { background: var(--bg-soft); }
.care__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.care__img img { border-radius: 24px; box-shadow: var(--shadow); }
.care__posters { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.care__posters img { border-radius: 16px; border: 1px solid var(--line); }
.care__posters img:nth-child(2) { margin-top: 28px; }
.care__img-caption {
  margin-top: 18px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: #9aa3b2;
}
.care__img-caption::before { content: '📌 '; }
.care__desc { margin-top: 20px; font-size: 17px; color: var(--gray); font-weight: 500; }
.care__list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.care__list li {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 24px;
  transition: transform .25s, box-shadow .25s;
}
.care__list li:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.care__list li > span {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--cream);
  display: grid;
  place-items: center;
  font-size: 21px;
}
.care__list h4 { font-size: 16.5px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.care__list p { font-size: 14px; color: var(--gray); font-weight: 500; }

/* ---------- 9. Blog ---------- */
.blog { background: #fff; }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.blog-card__thumb { aspect-ratio: 16 / 9; overflow: hidden; background: #0b1c33; }
.blog-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s;
}
.blog-card:hover .blog-card__thumb img { transform: scale(1.05); }
.blog-card__body { display: flex; flex-direction: column; flex: 1; padding: 26px 26px 28px; }
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(3, 199, 90, .4);
  background: #fff;
}
.blog-card__cat {
  width: fit-content;
  font-size: 12.5px;
  font-weight: 800;
  color: #03996b;
  background: rgba(3, 199, 90, .12);
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.blog-card h3 { font-size: 18.5px; font-weight: 800; color: var(--navy); line-height: 1.45; margin-bottom: 12px; }
.blog-card p { font-size: 14.5px; color: var(--gray); font-weight: 500; line-height: 1.65; flex: 1; }
.blog-card__more { margin-top: 22px; font-size: 14px; font-weight: 800; color: #03996b; }
.blog__cta { text-align: center; margin-top: 44px; }

/* ---------- 10. FAQ ---------- */
.faq { background: var(--bg-soft); }
.faq__list { margin-top: 50px; display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .25s;
}
.faq__item[open] { box-shadow: var(--shadow); border-color: rgba(22,54,92,.25); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 26px;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before { content: 'Q. '; color: var(--red); font-weight: 900; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--red);
  transition: transform .25s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p {
  padding: 0 26px 24px;
  font-size: 15px;
  color: var(--gray);
  font-weight: 500;
  line-height: 1.75;
}

/* ---------- Inquiry Form ---------- */
.inquiry { background: var(--bg-soft); }
.inquiry__card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 54px;
}
.inquiry__info {
  background:
    radial-gradient(500px 300px at 90% 0%, rgba(190, 49, 68, .35), transparent 60%),
    linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: #fff;
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
}
.inquiry__info h3 { font-size: 27px; font-weight: 900; line-height: 1.35; }
.inquiry__info-desc { margin-top: 14px; font-size: 14.5px; color: rgba(255,255,255,.75); line-height: 1.7; }
.inquiry__info-list { margin-top: 34px; display: flex; flex-direction: column; gap: 22px; }
.inquiry__info-list li { display: flex; gap: 14px; align-items: flex-start; }
.inquiry__info-list span {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.inquiry__info-list div { font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.6; }
.inquiry__info-list b { color: #fff; font-size: 15px; }
.inquiry__info-note {
  margin-top: auto;
  padding-top: 30px;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffb3be;
  line-height: 1.6;
}
.inquiry__form { padding: 52px 48px; display: flex; flex-direction: column; gap: 20px; }
.inquiry__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.inquiry__field { display: flex; flex-direction: column; gap: 8px; }
.inquiry__field label { font-size: 14px; font-weight: 700; color: var(--navy); }
.inquiry__field label i { font-style: normal; color: var(--red); }
.inquiry__field input,
.inquiry__field select,
.inquiry__field textarea {
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
}
.inquiry__field textarea { resize: vertical; min-height: 110px; }
.inquiry__field select:invalid { color: #9aa3b2; }
.inquiry__field input::placeholder,
.inquiry__field textarea::placeholder { color: #9aa3b2; }
.inquiry__field input:focus,
.inquiry__field select:focus,
.inquiry__field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22, 54, 92, .1);
}
.inquiry__agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
}
.inquiry__agree input { margin-top: 3px; accent-color: var(--red); width: 16px; height: 16px; }
.inquiry__submit {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  padding: 18px 30px;
  margin-top: 4px;
}

/* ---------- Final CTA ---------- */
.final {
  background:
    radial-gradient(800px 420px at 50% 0%, rgba(190, 49, 68, .35), transparent 65%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  text-align: center;
  padding: 120px 0;
}
.final__eyebrow { font-size: 15px; font-weight: 700; color: #ffb3be; letter-spacing: .04em; margin-bottom: 18px; }
.final__title { font-size: clamp(28px, 4.6vw, 46px); font-weight: 800; line-height: 1.3; }
.final__title strong { color: #ffd7dd; font-weight: 900; }
.final__desc { margin-top: 22px; font-size: 17px; color: rgba(255,255,255,.82); font-weight: 400; line-height: 1.8; }
.final__phone {
  display: inline-block;
  margin-top: 40px;
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  padding: 22px 52px;
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(190, 49, 68, .5);
  transition: transform .25s, box-shadow .25s;
}
.final__phone:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 24px 56px rgba(190, 49, 68, .6); }
.final__addr { margin-top: 26px; font-size: 16px; font-weight: 600; color: rgba(255,255,255,.85); }
.final__sub { margin-top: 18px; font-size: 14.5px; color: rgba(255,255,255,.6); margin-bottom: 14px; }

/* ---------- Footer ---------- */
.footer { background: #0b1c33; color: rgba(255, 255, 255, .65); padding: 54px 0; }
.footer__inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer__logo { width: 74px; }
.footer__info { flex: 1; font-size: 13.5px; line-height: 1.8; min-width: 240px; }
.footer__name { font-size: 16px; font-weight: 800; color: #fff; }
.footer__name span { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.5); margin-left: 8px; letter-spacing: .08em; }
.footer__copy { margin-top: 8px; font-size: 12px; color: rgba(255,255,255,.38); }
.footer__blog {
  background: #03c75a;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  transition: transform .2s;
}
.footer__blog:hover { transform: translateY(-3px); }

/* ---------- Quick Menu ---------- */
.quick {
  position: fixed;
  right: 18px; bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quick__btn {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(14, 25, 43, .28);
  border: 2px solid #fff;
  transition: transform .22s, box-shadow .22s;
}
.quick__btn img { width: 100%; height: 100%; object-fit: cover; }
.quick__btn:hover { transform: translateX(-5px) scale(1.06); box-shadow: 0 12px 28px rgba(14, 25, 43, .38); }
.quick__btn::after {
  content: attr(data-label);
  position: absolute;
  top: 50%; right: calc(100% + 12px);
  transform: translateY(-50%);
  background: var(--navy-deep);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  padding: 7px 13px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.quick__btn:hover::after { opacity: 1; }
/* 라벨이 원 밖에 떠야 하므로 버튼 자체는 overflow 허용, 이미지만 클리핑 */
.quick__btn { overflow: visible; }
.quick__btn img { border-radius: 50%; }
.quick__btn--top { border-color: var(--line); }

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 1024px) {
  .section { padding: 90px 0; }
  .pain__grid, .curriculum__grid, .blog__grid { grid-template-columns: repeat(2, 1fr); }
  .seats__grid, .videos__grid { grid-template-columns: repeat(2, 1fr); }
  .test__layout, .ai__layout, .care__layout { gap: 44px; }
}

@media (max-width: 860px) {
  /* header → burger */
  .header__nav { display: none; }
  .header__burger { display: flex; }
  :root { --header-h: 64px; --promo-h: 68px; }
  .header__logo img { width: 40px; height: 40px; }
  .header__logo-text { font-size: 17px; }

  .scholarship-strip {
    background: linear-gradient(100deg, #0e2747 0%, #16365c 58%, #be3144 100%);
    box-shadow: 0 8px 18px rgba(14, 39, 71, .2);
  }
  .scholarship-strip__inner--desktop { display: none; }
  .scholarship-strip__mobile {
    position: relative;
    z-index: 1;
    width: min(430px, 94%);
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 100px;
    align-items: center;
    gap: 8px;
  }
  .scholarship-mobile-banner__copy {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .24em;
    color: #fff;
    font-size: clamp(22px, 6.1vw, 27px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.045em;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .28);
  }
  .scholarship-mobile-banner__copy span { display: inline-block; }
  .scholarship-mobile-banner__button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 8px;
    color: #2a1907;
    background:
      linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0) 38%),
      linear-gradient(135deg, #fff0b5 0%, #d6a24a 58%, #a96d1b 100%);
    border: 1px solid rgba(255, 241, 191, .9);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -.04em;
  }

  .test__layout, .ai__layout, .care__layout { grid-template-columns: 1fr; }
  .inquiry__card { grid-template-columns: 1fr; }
  .inquiry__info { padding: 42px 32px; }
  .inquiry__form { padding: 38px 28px; }
  .inquiry__info-note { margin-top: 26px; padding-top: 0; }
  .test__img { max-width: 480px; margin: 0 auto; }
  .test__img-badge { right: 10px; }
  .ai__img { order: -1; max-width: 520px; margin: 0 auto; }
  .care__img { max-width: 520px; margin: 0 auto; }

  .hero { min-height: auto; padding-bottom: 84px; }
  .hero__bg img { object-position: 68% center; }
  .hero__bg::after {
    background: linear-gradient(180deg,
      rgba(10, 24, 44, .92) 0%,
      rgba(13, 32, 58, .88) 55%,
      rgba(13, 32, 58, .80) 100%);
  }
  .hero__stats { max-width: 100%; }
  .hero__stats li { min-width: calc(50% - 22px); }
  .hero__stats li:nth-child(3) { border-left: none; padding-left: 8px; }
}

@media (max-width: 640px) {
  :root { --promo-h: 66px; }
  .section { padding: 72px 0; }
  .section__sub { font-size: 15px; }

  .pain__grid, .curriculum__grid, .blog__grid, .seats__grid, .videos__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .care__posters { gap: 12px; }
  .care__posters img:nth-child(2) { margin-top: 18px; }
  .why__card { padding: 30px 26px; }

  .hero__btns .btn { width: 100%; }
  .btn { padding: 15px 24px; font-size: 15px; }

  .test__steps li { gap: 14px; }
  .inquiry__row { grid-template-columns: 1fr; }
  .final { padding: 90px 0; }
  .final__phone { padding: 18px 36px; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__info { min-width: 0; }

  .quick { right: 12px; bottom: 16px; gap: 8px; }
  .quick__btn { width: 46px; height: 46px; }
  .quick__btn::after { display: none; }

  .scholarship-strip__mobile {
    width: 95%;
    grid-template-columns: minmax(0, 1fr) 86px;
    gap: 6px;
  }
  .scholarship-mobile-banner__copy {
    gap: .2em;
    font-size: clamp(20px, 5.65vw, 24px);
    letter-spacing: -.045em;
  }
  .scholarship-mobile-banner__button {
    min-height: 42px;
    border-radius: 8px;
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .scholarship-strip__mobile {
    width: 96%;
    grid-template-columns: minmax(0, 1fr) 78px;
    gap: 5px;
  }
  .scholarship-mobile-banner__copy {
    gap: .16em;
    font-size: 18.5px;
    letter-spacing: -.05em;
  }
  .scholarship-mobile-banner__button {
    min-height: 38px;
    font-size: 11px;
  }
}

/* ============================================================
   Mobile : 전체 중앙정렬 + 가독성 (단어 단위 줄바꿈 / 폰트 확대)
============================================================ */
@media (max-width: 768px) {

  /* ----- 타이틀 / 인트로 전부 중앙 ----- */
  .section__eyebrow--left,
  .section__title--left { text-align: center; }
  .section__sub { font-size: 16px; }

  /* ----- 히어로 ----- */
  .hero__inner { text-align: center; }
  .hero__badge { font-size: 14px; }
  .hero__desc { font-size: 17px; }
  .hero__btns { justify-content: center; }
  .hero__stats { justify-content: center; border-top: none; }
  .hero__stats li {
    border: none !important;
    padding: 18px 8px 0 !important;
    text-align: center;
  }
  .hero__stats span { font-size: 14.5px; }
  .ticker__track span { font-size: 15.5px; }

  /* ----- 고민 체크리스트 ----- */
  .pain__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .pain__card p { font-size: 16.5px; }

  /* ----- 차별점 카드 ----- */
  .why__card { text-align: center; }
  .why__card h3 { font-size: 21px; }
  .why__card p { font-size: 16px; }

  /* ----- 입학 테스트 ----- */
  .test__content { text-align: center; }
  .test__desc { font-size: 16.5px; }
  .test__steps li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .test__steps h4 { font-size: 18px; }
  .test__steps p { font-size: 15.5px; }

  /* ----- 커리큘럼 카드 ----- */
  .cur-card__body { text-align: center; }
  .cur-card__body h3 { font-size: 21px; }
  .cur-card__body ul li { padding-left: 0; font-size: 15.5px; }
  .cur-card__body ul li::before { display: none; }
  .cur-card__quote {
    border-left: none;
    border-top: 3px solid var(--red);
    border-radius: 0 0 12px 12px;
    font-size: 15px;
  }
  .schools__title { font-size: 15.5px; }
  .schools__chips li { font-size: 14.5px; }

  /* ----- 강의 영상 ----- */
  .video-card { text-align: center; }
  .video-card h3 { font-size: 18px; }
  .video-card p { font-size: 15px; }

  /* ----- AI 수업 ----- */
  .ai__content { text-align: center; }
  .ai__desc { font-size: 16.5px; }
  .ai__list { text-align: center; }
  .ai__list li { font-size: 16px; }
  .ai__note { font-size: 14.5px; }

  /* ----- 모집 현황 ----- */
  .seat-card { text-align: center; }
  .seat-card__left { font-size: 16px; }
  .seat-card__time { font-size: 15px; }
  .seats__note { font-size: 14.5px; }

  /* ----- 관리 시스템 ----- */
  .care__content { text-align: center; }
  .care__desc { font-size: 16.5px; }
  .care__list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .care__list li:hover { transform: none; }
  .care__list h4 { font-size: 17.5px; }
  .care__list p { font-size: 15px; }
  .care__img-caption { font-size: 14.5px; }

  /* ----- 블로그 ----- */
  .blog-card__body { text-align: center; align-items: center; }
  .blog-card h3 { font-size: 19px; }
  .blog-card p { font-size: 15.5px; }
  .blog-card__more { font-size: 15px; }

  /* ----- FAQ ----- */
  .faq__item summary {
    text-align: center;
    padding: 22px 48px;
    font-size: 17px;
  }
  .faq__item p { text-align: center; font-size: 15.5px; padding: 0 24px 24px; }

  /* ----- 문의폼 ----- */
  .inquiry__info { text-align: center; align-items: center; }
  .inquiry__info-list { width: 100%; }
  .inquiry__info-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .inquiry__info-list div { font-size: 15px; }
  .inquiry__field { align-items: center; }
  .inquiry__field label { font-size: 15px; }
  .inquiry__field input,
  .inquiry__field select,
  .inquiry__field textarea { text-align: center; }
  .inquiry__agree { justify-content: center; font-size: 14.5px; }

  /* ----- 최종 CTA / 푸터 ----- */
  .final__desc { font-size: 16.5px; }
  .final__addr { font-size: 16px; }
  .final__sub { font-size: 15px; }
  .footer__inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .footer__info { min-width: 0; font-size: 14.5px; }
  .footer__name span { display: block; margin: 4px 0 0; }
  .footer__copy { font-size: 13px; }
}

/* ---------- Mobile Scholarship Strip Final Override ---------- */
@media (max-width: 860px) {
  .scholarship-strip__mobile {
    width: min(430px, 96%) !important;
    grid-template-columns: minmax(0, 1fr) 108px !important;
    gap: 8px !important;
  }

  .scholarship-mobile-banner__copy {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    min-width: 0 !important;
    color: #fff !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    word-spacing: 0 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .32) !important;
  }

  .scholarship-mobile-banner__copy span {
    display: inline-block !important;
    flex: none !important;
  }

  .scholarship-mobile-banner__button {
    min-height: 48px !important;
    border-radius: 10px !important;
    color: #fff !important;
    background: linear-gradient(135deg, #e03a4e, #be3144 58%, #8f1d2c) !important;
    border: 1px solid rgba(255, 255, 255, .52) !important;
    box-shadow: 0 8px 18px rgba(190, 49, 68, .38), inset 0 1px 0 rgba(255,255,255,.25) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .18) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 640px) {
  .scholarship-strip__mobile {
    width: 96% !important;
    grid-template-columns: minmax(0, 1fr) 100px !important;
    gap: 6px !important;
  }

  .scholarship-mobile-banner__copy {
    gap: 6px !important;
    font-size: 21px !important;
  }

  .scholarship-mobile-banner__button {
    min-height: 46px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
  }
}

@media (max-width: 380px) {
  .scholarship-strip__mobile {
    width: 98% !important;
    grid-template-columns: minmax(0, 1fr) 88px !important;
    gap: 5px !important;
  }

  .scholarship-mobile-banner__copy {
    gap: 5px !important;
    font-size: 19px !important;
  }

  .scholarship-mobile-banner__button {
    min-height: 42px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
  }
}
