/* ═══════════════════════════════════════════════════════════════
   education_v3.css — Wizard-төвлөрсөн хялбар захиалга
   Нүүр дээр шууд: ангиараа / сургуулиараа / гэр бүлээрээ → 4 алхам
   Brandbook: navy(#031F3E) + red(#E91518) + cream(#faf6ee)
   ═══════════════════════════════════════════════════════════════ */

body.edu3-body { background: #faf6ee; color: var(--text); }
body.edu3-body .site-header {  }

.edu3-body {
  --cream: #faf6ee;
  --cream-2: #f3ecdb;
  --shadow-sm: 0 4px 14px rgba(3,31,62,.08);
  --shadow-md: 0 10px 30px rgba(3,31,62,.12);
  --shadow-lg: 0 20px 60px rgba(3,31,62,.18);
}

/* ═══════════════ HEADER (2-түвшин: utility + main) ═══════════════ */
.edu3-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(3,31,62,.06);
}

/* — Top utility strip — */
.edu3-top {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  font-size: .72rem;
}
.edu3-top-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.edu3-top-left { display: inline-flex; align-items: center; gap: 20px; min-width: 0; }
.edu3-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: color .2s;
}
.edu3-back:hover { color: var(--white); }
.edu3-back i { color: inherit; font-size: .68rem; transition: transform .2s; }
.edu3-back:hover i { transform: translateX(-3px); }
.edu3-domain {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}
.edu3-top-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.edu3-top-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .03em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  transition: background .2s, color .2s;
}
.edu3-top-phone:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.edu3-top-phone i { color: inherit; font-size: .68rem; }

/* Group visit info button (now in main bar) */
.edu3-group-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 18px rgba(233,21,24,.22);
}
.edu3-group-btn:hover {
  background: #c81e21;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(233,21,24,.32);
}
.edu3-group-btn i { color: inherit; font-size: .85rem; }
.edu3-group-btn .arrow { font-size: .65rem; transition: transform .25s; }
.edu3-group-btn.is-open {
  background: var(--navy);
  box-shadow: 0 6px 18px rgba(3,31,62,.32);
}
.edu3-group-btn.is-open .arrow { transform: rotate(180deg); }

/* Group info dropdown panel — main bar-аас доош задарна */
.edu3-group-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--red);
  border-top: 1px solid rgba(3,31,62,.08);
  z-index: 99;
  animation: panelDown .25s ease;
}
@keyframes panelDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
.edu3-group-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 28px 24px;
  position: relative;
}
.g-top-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(3,31,62,.15);
  background: var(--white);
  color: var(--navy);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  z-index: 2;
}
.g-top-close:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: rotate(90deg); }
.edu3-group-head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(3,31,62,.12);
}
.edu3-group-head h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 6px;
}
.edu3-group-head p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}
.edu3-group-head strong { color: var(--red); font-weight: 600; }

.edu3-group-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.g-info {
  background: var(--cream);
  border-radius: 12px;
  padding: 16px 18px;
  position: relative;
  transition: background .2s, transform .15s;
}
.g-info:hover {
  background: var(--cream-2);
  transform: translateY(-2px);
}
.g-info > i:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: .82rem;
  margin-bottom: 10px;
}
.g-info strong {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.g-info p {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.55;
}
.g-info p strong { display: inline; font-size: inherit; color: var(--red); }
.g-info small {
  display: block;
  font-size: .7rem;
  color: var(--muted);
  margin-top: 6px;
  font-style: italic;
}
.g-info a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--red);
  margin-top: 8px;
}
.g-info a:hover { text-decoration: underline; }
.g-info a i { color: inherit; font-size: .65rem; }

.g-info-cta { background: var(--navy); color: var(--white); }
.g-info-cta strong { color: var(--white); }
.g-info-cta p { color: rgba(255,255,255,.75); }
.g-info-cta > i:first-child { background: var(--red); }
.g-info-cta:hover { background: var(--navy); }
.g-info-actions { display: flex; gap: 6px; margin-top: 10px; }
.g-call, .g-mail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  text-decoration: none;
}
.g-call { background: var(--red); color: #fff; }
.g-call:hover { background: #c81e21; }
.g-mail { background: var(--red); color: #fff; border: none; }
.g-mail:hover { background: #c81e21; }
/* .g-info a { color:red } дээрээс давах — товчны текст/icon цагаан */
.g-info-cta .g-call, .g-info-cta .g-mail,
.g-info-cta .g-call i, .g-info-cta .g-mail i { color: #fff; }

.edu3-group-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(3,31,62,.06);
}
.g-foot-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background .2s;
}
.g-foot-cta:hover { background: #062c5c; }
.g-foot-cta i { color: var(--red); }
.g-foot-close {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(3,31,62,.18);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: inherit;
  font-size: .76rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.g-foot-close:hover { border-color: var(--red); color: var(--red); }
.g-foot-close i { color: inherit; }

/* — Main bar — */
.edu3-main {
  background: var(--white);
}
.edu3-main-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.edu3-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.edu3-brand img {
  height: 56px;
  width: auto;
  display: block;
}

.edu3-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.edu3-nav-link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
  padding: 10px 16px;
  border-radius: 100px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.edu3-nav-link:hover {
  background: var(--cream-2);
  color: var(--red);
}

.edu3-main-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.edu3-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 100px;
  transition: background .2s, transform .15s;
}
.edu3-phone:hover { background: #c81e21; transform: translateY(-1px); }
.edu3-phone i { color: inherit; font-size: .78rem; }

.edu3-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.edu3-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ═══════════════ HERO ═══════════════ */
.edu3-hero {
  position: relative;
  padding: 60px 28px 80px;
  overflow: hidden;
  isolation: isolate;
}
.edu3-hero-pattern {
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(360px, 42vw, 720px);
  aspect-ratio: 1000 / 621;
  background: url('/img/ckm-building.png') no-repeat left bottom;
  background-size: contain;
  opacity: .14;
  z-index: 0;
  pointer-events: none;
}
.d-circle {
  position: absolute;
  width: 280px; height: 280px;
  border: 22px solid rgba(233,21,24,.1);
  border-radius: 50%;
  top: -90px; left: -90px;
}
.d-square {
  position: absolute;
  width: 180px; height: 180px;
  background: rgba(3,31,62,.05);
  border-radius: 28px;
  bottom: 60px; right: 4%;
  transform: rotate(-14deg);
}
.d-line {
  position: absolute;
  width: 120px; height: 4px;
  background: var(--red);
  border-radius: 100px;
  top: 18%; right: 22%;
  opacity: .25;
  transform: rotate(-30deg);
}

.edu3-hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.edu3-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--red);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.edu3-tag i { color: var(--red); }

.edu3-title {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -.01em;
  margin-bottom: 22px;
}
.edu3-title .under {
  display: inline;
}
.edu3-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  max-width: 480px;
  margin-bottom: 24px;
}
.edu3-desc strong { color: var(--navy); }
.edu3-intro-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  margin-bottom: 24px;
  transition: gap .2s ease, color .2s ease;
}
.edu3-intro-link i { font-size: .8rem; transition: transform .2s ease; }
.edu3-intro-link:hover { color: var(--navy); }
.edu3-intro-link:hover i { transform: translateX(4px); }
.edu3-trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.edu3-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: #444;
  font-weight: 500;
}
.edu3-trust li i { color: var(--red); font-size: .9rem; }

/* ═══════════════ WIZARD ═══════════════ */
.wiz {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 36px 36px 28px;
  position: relative;
  overflow: hidden;
}
.wiz::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--red) 100%);
}

/* Progress */
.wiz-progress { margin-bottom: 28px; }
.wiz-progress-bar {
  height: 6px;
  background: var(--cream-2);
  border-radius: 100px;
  overflow: hidden;
}
.wiz-progress-bar span {
  display: block;
  height: 100%;
  background: var(--red);
  border-radius: 100px;
  transition: width .35s cubic-bezier(.4,.0,.2,1);
}
.wiz-progress-text {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 6px;
  margin-top: 10px;
  font-size: .76rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .02em;
}
.wiz-progress-text .dim { color: var(--muted); font-weight: 400; }

/* Step container */
.wiz-step { display: none; }
.wiz-step.is-active { display: block; animation: stepIn .35s ease; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wiz-q {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.wiz-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.wiz-hint {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 24px;
  padding-left: 52px;
  line-height: 1.6;
}
.wiz-confirm {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 18px 52px;
}
.wiz-confirm-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.wiz-confirm-lbl {
  flex: 0 0 84px;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
  color: var(--muted);
}
.wiz-confirm-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  pointer-events: none;          /* зөвхөн харуулна — дарагдахгүй */
}
/* Жижиг pill хэлбэр — icon + богино нэр (доош сунахаас сэргийлнэ) */
.wiz-confirm-cards .wiz-card {
  width: auto;
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-width: 1.5px;
  border-radius: 100px;
  box-shadow: none;
}
.wiz-confirm-cards .wiz-card i { font-size: .95rem; margin-bottom: 0; }
.wiz-confirm-cards .wiz-card strong { font-size: .8rem; line-height: 1; }
.wiz-confirm-cards .wiz-card span { display: none; }      /* дэд тайлбар нуух */
.wiz-confirm-cards .wiz-card.is-on::after { display: none; } /* check тэмдэг нуух */
.wiz-confirm-empty { color: var(--muted); font-size: .85rem; }
@media (max-width: 768px) {
  .wiz-confirm { margin-left: 0; }
  .wiz-confirm-lbl { flex-basis: auto; }
}

/* Cards grid */
.wiz-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}
.wiz-grid-3 { grid-template-columns: repeat(3, 1fr); }

.wiz-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 18px 16px;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all .2s;
  position: relative;
}
.wiz-card i {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 4px;
  transition: color .2s, transform .25s;
}
.wiz-card strong {
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
  line-height: 1.25;
}
.wiz-card span {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 500;
}
.wiz-card:hover {
  background: var(--white);
  border-color: rgba(3,31,62,.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.wiz-card:hover i { color: var(--red); transform: scale(1.08); }
.wiz-card.is-on {
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(233,21,24,.1), var(--shadow-sm);
}
.wiz-card.is-on i { color: var(--red); }
.wiz-card.is-on::after {
  content: '\f00c';
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* Font Awesome icon weight, not text */
  position: absolute;
  top: 12px; right: 12px;
  width: 22px; height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  animation: pop .25s ease;
}
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }

/* ─ Step 4 form ─ */
.wiz-form { display: flex; flex-direction: column; gap: 14px; padding-left: 52px; }
.wiz-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wiz-label {
  display: block;
  font-size: .74rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .02em;
}
.wiz-label > span { color: var(--red); margin-left: 2px; }
.wiz-label input,
.wiz-label textarea,
.wiz-label select {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 10px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.wiz-label input:focus,
.wiz-label textarea:focus,
.wiz-label select:focus {
  border-color: var(--red);
  background: var(--white);
}
.wiz-label textarea { resize: vertical; min-height: 60px; }

/* ─ Step 5 — Result ─ */
.wiz-result { padding-top: 8px; }
.wiz-success {
  text-align: center;
  margin-bottom: 28px;
  padding: 24px 20px;
  background: linear-gradient(135deg, #062c5c 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.wiz-success::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(233,21,24,.4) 0%, transparent 70%);
}
.wiz-success > i {
  font-size: 2.4rem;
  color: var(--red);
  margin-bottom: 12px;
}
.wiz-success h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.wiz-success p {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}
.wiz-success strong { color: var(--white); }

.wiz-summary {
  background: var(--cream);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ws-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(3,31,62,.12);
}
.ws-row:last-child { border-bottom: none; padding-bottom: 0; }
.ws-row span { color: var(--muted); }
.ws-row strong { color: var(--navy); font-weight: 600; }

.wiz-recommend-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin: 24px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}
.wiz-recommend-title i { color: var(--red); }
.wiz-recommend {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.rec-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: 10px;
  border-left: 3px solid var(--navy);
  transition: background .2s, transform .15s;
  cursor: pointer;
}
.rec-card:hover { background: var(--white); box-shadow: var(--shadow-sm); transform: translateX(2px); }
.rec-card.free { border-left-color: var(--red); }
.rec-num {
  width: 38px; height: 38px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem;
  font-weight: 700;
}
.rec-card.free .rec-num { background: var(--red); }
.rec-body h5 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.rec-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: .76rem;
  color: var(--muted);
}
.rec-meta i { color: var(--navy); margin-right: 3px; font-size: .72rem; }
.rec-meta .rec-price { font-weight: 600; color: var(--navy); margin-left: auto; }
.wiz-no-match {
  padding: 20px;
  text-align: center;
  color: var(--muted);
  background: var(--cream);
  border-radius: 10px;
}

/* Wizard nav buttons */
.wiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(3,31,62,.08);
}
.btn-wiz {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all .2s;
}
.btn-wiz i { color: inherit; font-size: .78rem; }
.btn-wiz:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.btn-wiz-back {
  background: var(--cream-2);
  color: var(--navy);
}
.btn-wiz-back:not(:disabled):hover { background: var(--navy); color: var(--white); }
.btn-wiz-next {
  background: var(--red);
  color: var(--white);
  margin-left: auto;
  box-shadow: 0 8px 22px rgba(233,21,24,.32);
}
.btn-wiz-next:not(:disabled):hover {
  background: #c81e21;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(233,21,24,.42);
}
.btn-wiz-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(3,31,62,.18);
  margin: 0 auto;
  display: flex;
  width: 100%;
  justify-content: center;
}
.btn-wiz-ghost:hover { background: var(--cream-2); }

/* ═══════════════ ABOUT ═══════════════ */
.edu3-eyebrow {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.edu3-eyebrow.inv { color: rgba(255,255,255,.85); }
.edu3-section-head { text-align: center; margin-bottom: 36px; }
.edu3-section-head h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
  line-height: 1.25;
  margin-bottom: 10px;
}
.edu3-section-head p {
  font-size: .9rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.edu3-about {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid rgba(3,31,62,.06);
}
.edu3-about .about-head {
  text-align: center;
  margin-bottom: 32px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.about3-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 14px;
}
.about3-lead strong { color: var(--navy); font-weight: 600; }

/* ─ 1 том видео ─ */
.about3-hero-video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 21/9;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  margin-bottom: 36px;
  transition: transform .25s, box-shadow .25s;
}
.about3-hero-video:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.about3-hero-video img { width: 100%; height: 100%; object-fit: cover; }
.about3-hero-video .vid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,31,62,.85) 0%, rgba(3,31,62,.18) 45%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 36px;
}
.about3-hero-video .vid-play {
  align-self: center;
  margin: auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 36px rgba(233,21,24,.55);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.about3-hero-video .vid-play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.about3-hero-video:hover .vid-play { transform: scale(1.08); box-shadow: 0 18px 42px rgba(233,21,24,.75); }
.about3-hero-video .vid-play i { color: inherit; padding-left: 5px; }
.about3-hero-video .vid-info { color: var(--white); }
.about3-hero-video .vid-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.about3-hero-video .vid-info strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.25;
}
.about3-hero-video .vid-info small {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
}
.about3-hero-video .vid-info small i { color: inherit; margin-right: 4px; }

/* ─ Split layout: зүүнд navy чимэг панель + баруунд box-ууд ─ */
.about3-split {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 22px;
  align-items: stretch;
}

/* Зүүн navy чимэг панель */
.about3-side {
  position: relative;
  background: linear-gradient(160deg, #062c5c 0%, var(--navy) 55%, #02152e 100%);
  color: var(--white);
  border-radius: 18px;
  padding: 32px 30px 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}
.about3-side::before {
  /* нарийн улаан зураас зүүн талын дагуу */
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--red);
}
.about3-side::after {
  /* доод буланд улаан glow */
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(233,21,24,.28) 0%, transparent 70%);
  pointer-events: none;
}

/* Чимэг хэлбэрүүд */
/* Арын чимэг — door-silver.png watermark pattern (баруун доод буланд) */
.side-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url('/img/door-silver-edu.png') no-repeat center center;
  background-size: contain;
  opacity: .15;
}

/* Side panel content */
.side-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.side-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}
.side-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.side-desc {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.side-desc strong { color: var(--white); font-weight: 600; }

/* Том stat block */
.side-stat-big {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.ssb-label {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 4px;
}
.ssb-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.ssb-num small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--red);
  margin-left: 4px;
  vertical-align: super;
}
.ssb-sub {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
}

.side-list {
  list-style: none;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.side-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.side-list li i {
  width: 18px;
  height: 18px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  flex-shrink: 0;
}

.side-foot { margin-top: auto; position: relative; z-index: 1; }
.side-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(233,21,24,.32);
  transition: background .2s, transform .15s;
}
.side-cta:hover { background: #c81e21; transform: translateY(-1px); }
.side-cta i { color: inherit; font-size: .76rem; }

/* Баруун box-ууд (1 баг тус бүрд илүү өргөн) */
.about3-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  background: none;
  border-radius: 0;
  align-content: stretch;     /* widget өндрөөр дүүргэнэ */
  grid-auto-rows: 1fr;        /* мөрүүд тэнцүү — доод догол арилна */
}

/* Хэвтээ row карт — light card with red accent border */
.ab-box {
  background: var(--white);
  border: 1px solid rgba(3,31,62,.08);
  border-left: 3px solid var(--gold, #C9A24A);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 12px;
  align-items: center;
  transition: transform .15s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.ab-box::before {
  /* Hover-т улаан зөөлөн glow */
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle at top right, rgba(233,21,24,.07) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}
.ab-box:hover {
  background: var(--cream);
  border-color: rgba(3,31,62,.12);
  border-left-color: var(--red);
  transform: translateX(3px);
  box-shadow: var(--shadow-sm);
}
.ab-box:hover::before { opacity: 1; }

/* Жижиг квадрат зураг */
.ab-img {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream-2);
  flex-shrink: 0;
}
.ab-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.ab-box:hover .ab-img img { transform: scale(1.08); }
.ab-img::after { content: none; }

/* Жижиг icon — зургийн зүүн доод буланд (улаан хэвээр) */
.ab-icon {
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: 24px;
  height: 24px;
  background: var(--red);
  color: #fff !important;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(3,31,62,.18);
}
.ab-img i.ab-icon, .ab-img .ab-icon::before { color: #fff !important; }

/* Body */
.ab-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0;
}

/* Tag — улаан eyebrow */
.ab-tag {
  display: inline-block;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--red);
  margin-bottom: 4px;
  text-transform: uppercase;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  position: static;
}

.ab-body h3 {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 4px;
}
.ab-body p {
  font-size: .72rem;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 8px;
}

/* Stats — нэг мөр, navy чухал тоо, цэгээр тусгаарласан */
.ab-stats {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 0;
  border: none;
  font-size: .62rem;
  color: var(--muted);
  margin-top: auto;
}
.ab-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-weight: 500;
  position: relative;
}
.ab-stats span:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -10px;
  color: rgba(3,31,62,.2);
}
.ab-stats strong {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

/* ═══════════════ ALL PROGRAMS LIST ═══════════════ */
.edu3-programs {
  padding: 80px 0;
  background: var(--cream);
}
.prog3-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.prog3-tab {
  background: var(--white);
  border: 1.5px solid rgba(3,31,62,.1);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: all .2s;
}
.prog3-tab:hover { border-color: var(--navy); }
.prog3-tab.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* — Image card grid (p3-card) — */
.prog3-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Хуудаслалт (9/хуудас) */
.prog3-pag {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.prog3-pag-btn,
.prog3-pag-num {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(3,31,62,.14);
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.prog3-pag-btn:hover:not([disabled]),
.prog3-pag-num:hover { border-color: var(--red); color: var(--red); }
.prog3-pag-num.is-active { background: var(--red); border-color: var(--red); color: var(--white); }
.prog3-pag-btn[disabled] { opacity: .4; cursor: default; }
.prog3-foot { text-align: center; margin-top: 26px; }
.p3-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(3,31,62,.06);
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
  outline: none;
}
.p3-card:hover, .p3-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.p3-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy);
}
.p3-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.p3-card:hover .p3-thumb img { transform: scale(1.06); }
.p3-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(3,31,62,.35) 100%);
}

/* Number bubble */
.p3-num {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  color: var(--navy);
  font-size: .76rem;
  font-weight: 600;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(3,31,62,.18);
  z-index: 2;
}
.p3-card.is-free .p3-num { background: var(--red); color: var(--white); }

/* Free / Video badge */
.p3-badge-free, .p3-badge-video {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}
.p3-badge-free {
  background: var(--red);
  color: var(--white);
}
.p3-badge-video {
  background: rgba(0,0,0,.7);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.p3-card.is-free.has-video .p3-badge-video { top: 44px; }
.p3-badge-video i { color: var(--red); font-size: .72rem; }

/* Play button overlay */
.p3-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(233,21,24,.5);
  z-index: 2;
  transition: transform .2s, box-shadow .2s;
}
.p3-card:hover .p3-play { transform: translate(-50%,-50%) scale(1.1); box-shadow: 0 12px 28px rgba(233,21,24,.7); }
.p3-play i { color: inherit; padding-left: 3px; }

.p3-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.p3-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}
.p3-tags span {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(233,21,24,.1);
  padding: 3px 9px;
  border-radius: 100px;
}
.p3-title {
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
  flex: 1;
}
.p3-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed rgba(3,31,62,.12);
  font-size: .76rem;
  color: var(--muted);
}
.p3-meta i { color: var(--navy); margin-right: 4px; font-size: .72rem; }
.p3-price {
  background: var(--navy);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .72rem;
  white-space: nowrap;
}
.p3-price.free { background: var(--red); }

/* — Video modal — */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.video-modal.is-open { display: flex; animation: vmIn .25s ease; }
@keyframes vmIn { from { opacity: 0; } to { opacity: 1; } }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 1080px;
  aspect-ratio: 16/9;
}
.video-modal-frame {
  width: 100%; height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
  background: #000;
}
.video-modal-frame iframe { width: 100%; height: 100%; border: 0; }
.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255,255,255,.12);
  border: none;
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: background .2s, transform .15s;
}
.video-modal-close:hover { background: var(--red); transform: rotate(90deg); }

/* ═══════════════ FOOTER ═══════════════ */
.edu3-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
}
.edu3-footer .footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 28px 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.edu3-footer .footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
}
.edu3-footer .footer-brand p {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}
.edu3-footer .footer-col h4 {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.edu3-footer .footer-col ul { display: flex; flex-direction: column; gap: 8px; list-style: none; padding: 0; }
.edu3-footer .footer-col ul li,
.edu3-footer .footer-col ul li a {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.edu3-footer .footer-col ul li a:hover { color: var(--red); }
.edu3-footer .footer-col ul li i { color: var(--red); width: 14px; text-align: center; }
.edu3-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 28px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  color: rgba(255,255,255,.45);
}
.edu3-footer .footer-bottom a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s ease; }
.edu3-footer .footer-bottom a:hover { color: var(--gold, #C9A24A); }

/* ═══════════════ МЭДЭЭЛЭЛ ═══════════════ */
.edu3-news {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid rgba(3,31,62,.06);
}
.news3-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.news3 {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid rgba(3,31,62,.08);
  border-top: 3px solid var(--red);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.news3-empty { grid-column: 1 / -1; color: var(--muted); font-size: .9rem; }
.news3:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.news3-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news3-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.news3:hover .news3-img img { transform: scale(1.05); }
.news3-img i { font-size: 1.8rem; color: rgba(3,31,62,.18); }
.news3-body { padding: 16px 18px 20px; }
.edu3-news-foot { text-align: center; margin-top: 30px; }
.news3-date {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--red);
  margin-bottom: 10px;
}
.news3 h4 {
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 8px;
}
.news3 p {
  font-size: .8rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ═══════════════ ХАМТЫН АЖИЛЛАГАА ═══════════════ */
/* Хамтын ажиллагаа — navy hero card (v3-тай адил) */
.edu3-partner {
  padding: 60px 0 90px;
  background: var(--cream);
}
.partner3-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.partner3-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(233,21,24,.3) 0%, transparent 70%);
}
.partner3-text { position: relative; }
.partner3-text h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 8px 0 14px;
  color: var(--white);
}
.partner3-text p {
  font-size: .92rem;
  line-height: 1.8;
  color: rgba(255,255,255,.78);
  margin-bottom: 24px;
  max-width: 480px;
}
.partner3-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-wiz-ghost-light {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
  text-decoration: none;
}
.btn-wiz-ghost-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.partner3-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.partner3-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  transition: background .2s, border-color .2s, transform .15s;
}
.partner3-list li i {
  color: var(--red);
  font-size: 1rem;
  width: 22px;
  text-align: center;
}
.partner3-list li:hover {
  background: rgba(233,21,24,.1);
  border-color: var(--red);
  transform: translateX(3px);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1200px) {
  .edu3-nav-link { padding: 10px 12px; font-size: .76rem; }
}

@media (max-width: 1100px) {
  .edu3-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .edu3-hero-text { max-width: 640px; }
  .about3-split { grid-template-columns: 1fr; gap: 18px; }
  .about3-side { padding: 26px 24px 22px; }
  .about3-boxes { grid-template-columns: repeat(2, 1fr); }
  .about3-hero-video { aspect-ratio: 16/9; }
  .prog3-list { grid-template-columns: repeat(2, 1fr); }
  .edu3-group-grid { grid-template-columns: repeat(3, 1fr); }
  .news3-grid { grid-template-columns: repeat(2, 1fr); }
  .partner3-card { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .edu3-footer .footer-top { grid-template-columns: 1fr 1fr; }
  .edu3-nav { display: none; }
  .edu3-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 14px;
    gap: 4px;
    z-index: 999;
  }
  .edu3-nav.is-open .edu3-nav-link {
    padding: 12px 18px;
    border-radius: 8px;
    text-align: left;
  }
  .edu3-burger { display: flex; }
}

@media (max-width: 720px) {
  .edu3-top-inner { padding: 0 16px; height: 32px; }
  .edu3-back span { display: none; }
  .edu3-domain { display: none; }
  .edu3-main-inner { padding: 0 16px; height: 68px; gap: 14px; }
  .edu3-brand img { height: 44px; }
  .edu3-phone span { display: none; }
  .edu3-phone { padding: 10px 14px; }

  .edu3-hero { padding: 40px 16px 60px; }
  .wiz { padding: 24px 18px 20px; border-radius: 18px; }
  .wiz-q { font-size: 1.15rem; gap: 10px; }
  .wiz-num { width: 32px; height: 32px; font-size: .9rem; }
  .wiz-hint { padding-left: 0; }
  .wiz-grid-3 { grid-template-columns: 1fr 1fr; }
  .wiz-form { padding-left: 0; }
  .wiz-row { grid-template-columns: 1fr; }
  .wiz-card { padding: 14px 14px 12px; }
  .wiz-card i { font-size: 1.3rem; }
  .wiz-card strong { font-size: .85rem; }
  .wiz-card span { font-size: .68rem; }

  .about3-hero-video { aspect-ratio: 16/10; }
  .about3-boxes { grid-template-columns: 1fr; }
  .ab-box { grid-template-columns: 76px 1fr; gap: 12px; padding: 10px; }
  .ab-img { width: 76px; height: 76px; }
  .ssb-num { font-size: 1.8rem; }
  .side-title { font-size: 1.2rem; }
  .about3-hero-video .vid-overlay { padding: 18px 22px; }
  .about3-hero-video .vid-play { width: 72px; height: 72px; font-size: 1.4rem; }
  .about3-hero-video .vid-info strong { font-size: 1rem; }
  .prog3-list { grid-template-columns: 1fr; }
  .edu3-group-btn span:not(.arrow) { display: none; }
  .edu3-group-btn { padding: 9px 14px; }
  .edu3-top-phone span { display: none; }
  .edu3-group-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .edu3-group-inner { padding: 24px 18px 18px; }
  .edu3-group-foot { flex-direction: column; gap: 10px; }
  .g-foot-cta, .g-foot-close { width: 100%; justify-content: center; }
  .video-modal { padding: 18px; }
  .video-modal-close { top: -44px; }

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

  .edu3-about, .edu3-programs, .edu3-news, .edu3-partner { padding: 50px 0; }
  .edu3-footer .footer-top { grid-template-columns: 1fr; padding: 40px 20px 24px; }
  .edu3-footer .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
    text-align: center;
  }

  .d-circle, .d-square, .d-line { display: none; }
}

@media (max-width: 480px) {
  .wiz-grid-3 { grid-template-columns: 1fr; }
  .btn-wiz-back span,
  .btn-wiz-next span { font-size: .78rem; }
}
