* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --navy: #1b3a6b;
  --navy-d: #102247;
  --navy-l: #e8eff8;
  --teal: #0ea5a0;
  --teal-l: #e1f5ee;
  --teal-m: #5dcaa5;
  --gold: #d97706;
  --gold-l: #fef3c7;
  --gray: #f8fafc;
  --gray2: #f1f5f9;
  --border: 1px solid #e5e7eb;
  --border-s: 0.5px solid #e5e7eb;
  --text: #1a1a1a;
  --text2: #6b7280;
  --text3: #9ca3af;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans KR", sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 15px;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}

/* ══════════════════════════════
   TOP BAR
══════════════════════════════ */
.topbar {
  background: var(--navy-d);
  padding: 6px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-align: right;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
.topbar a {
  color: rgba(255, 255, 255, 0.7);
}
.topbar a:hover {
  color: #fff;
}
.topbar-divider {
  opacity: 0.3;
}

/* ══════════════════════════════
   HEADER / NAV
══════════════════════════════ */
.header {
  background: #fff;
  border-bottom: var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg {
  width: 22px;
  height: 22px;
}
.logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.logo-sub {
  font-size: 10px;
  color: var(--text2);
  font-weight: 400;
  display: block;
  margin-top: -2px;
}

/* Main nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.nav-item {
  position: relative;
}
.nav-item > a,
.nav-item > span {
  display: block;
  padding: 0 18px;
  height: 64px;
  line-height: 64px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.15s;
}
.nav-item:hover > a,
.nav-item:hover > span {
  color: var(--teal);
}
.nav-item.new > a,
.nav-item.new > span {
  color: var(--teal);
  font-weight: 700;
}
.nav-item.new > span::after {
  content: "NEW";
  font-size: 9px;
  font-weight: 700;
  background: var(--teal);
  color: #fff;
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 5px;
  vertical-align: middle;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 180px;
  z-index: 200;
}
.nav-item:hover .dropdown {
  display: block;
}
.dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--text2);
  transition:
    background 0.12s,
    color 0.12s;
  white-space: nowrap;
}
.dropdown a:hover {
  background: var(--gray);
  color: var(--teal);
}
.dropdown-divider {
  height: 0.5px;
  background: #e5e7eb;
  margin: 4px 0;
}

/* GYTIC dropdown highlight */
.dropdown a.highlight {
  color: var(--teal);
  font-weight: 600;
}
.dropdown a.highlight::before {
  content: "★ ";
  font-size: 10px;
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.btn-apply {
  background: var(--teal);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s;
}
.btn-apply:hover {
  background: #0c8f8a;
}
.btn-login {
  border: 1px solid #e5e7eb;
  color: var(--text2);
  padding: 7px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  transition: all 0.15s;
}
.btn-login:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ══════════════════════════════
   HERO SLIDER
══════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  height: 560px;
}
.hero-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}
.hero-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.slide-1 {
  background: linear-gradient(135deg, #102247 0%, #1b3a6b 50%, #0e4d7a 100%);
}
.slide-2 {
  background: linear-gradient(135deg, #0b3127 0%, #0ea5a0 60%, #02c39a 100%);
}
.slide-3 {
  background: linear-gradient(135deg, #1b3a6b 0%, #185fa5 60%, #0277bd 100%);
}

.slide-deco {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  opacity: 0.12;
}
.slide-deco2 {
  position: absolute;
  bottom: -120px;
  right: 100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  opacity: 0.08;
}
.slide-1 .slide-deco {
  background: #0ea5a0;
}
.slide-1 .slide-deco2 {
  background: #fff;
}
.slide-2 .slide-deco {
  background: #fff;
}
.slide-2 .slide-deco2 {
  background: #1b3a6b;
}
.slide-3 .slide-deco {
  background: #02c39a;
}
.slide-3 .slide-deco2 {
  background: #fff;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-m);
  display: inline-block;
}
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.hero h1 em {
  color: var(--teal-m);
  font-style: normal;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 560px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-btn-p {
  background: var(--teal);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s;
}
.hero-btn-p:hover {
  background: #0c8f8a;
}
.hero-btn-s {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.15s;
}
.hero-btn-s:hover {
  background: rgba(255, 255, 255, 0.22);
}
.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* Slider controls */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s;
}
.hero-dot.act {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
}
.hero-arrow.prev {
  left: 20px;
}
.hero-arrow.next {
  right: 20px;
}
.hero-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ══════════════════════════════
   STATS BAR
══════════════════════════════ */
.stats-bar {
  background: var(--navy);
  padding: 0;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 1.5rem 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-num span {
  font-size: 16px;
  color: var(--teal-m);
}
.stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* ══════════════════════════════
   SECTION COMMONS
══════════════════════════════ */
.section {
  padding: 5rem 0;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-badge {
  display: inline-block;
  background: var(--teal-l);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-sub {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ══════════════════════════════
   EXAM SCHEDULE SECTION
══════════════════════════════ */
.exam-section {
  background: #fff;
  padding: 5rem 0;
}
.exam-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.exam-toggle {
  display: flex;
  background: var(--gray2);
  border-radius: var(--radius-lg);
  padding: 5px;
  gap: 4px;
  width: fit-content;
  margin: 0 auto 2.5rem;
}
.exam-tab {
  padding: 10px 32px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text2);
  border: none;
  background: transparent;
  font-family: inherit;
}
.exam-tab.act {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.process-wrap {
  margin-bottom: 2.5rem;
}
.process-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  text-align: center;
}
.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 0;
}
.process-flow::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-l), var(--teal));
  z-index: 0;
}
.pf-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 4px;
}
.pf-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  line-height: 1.2;
  text-align: center;
}
.pf-step:hover .pf-circle {
  transform: scale(1.08);
}
.pf-c1 {
  background: var(--navy);
  color: #fff;
}
.pf-c2 {
  background: #185fa5;
  color: #fff;
}
.pf-c3 {
  background: var(--teal);
  color: #fff;
}
.pf-c4 {
  background: var(--teal-m);
  color: #fff;
}
.pf-c5 {
  background: #52b788;
  color: #fff;
}
.pf-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.pf-date strong {
  color: var(--teal);
  font-weight: 700;
  display: block;
  font-size: 12px;
}
.pf-date span {
  font-size: 11px;
  color: var(--text2);
  line-height: 1.5;
}
.sched-wrap {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.sched-head-row {
  display: grid;
  background: var(--navy);
}
.sched-data-row {
  display: grid;
  border-bottom: 1px solid #f1f5f9;
  align-items: center;
  transition: background 0.12s;
}
.sched-data-row:last-child {
  border-bottom: none;
}
.sched-data-row:hover {
  background: #fafbff;
}
.sh-cell {
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.sh-cell:last-child {
  border-right: none;
  text-align: center;
}
.sd-cell {
  padding: 14px 16px;
  font-size: 13px;
  border-right: 1px solid #f1f5f9;
  vertical-align: middle;
}
.sd-cell:last-child {
  border-right: none;
  text-align: center;
}
.sd-dday {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
}
.dd-open {
  background: #fef3c7;
  color: #d97706;
}
.dd-closed {
  background: #f3f4f6;
  color: #9ca3af;
}
.dd-upcoming {
  background: var(--navy-l);
  color: var(--navy);
}
.sd-period strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  font-size: 13px;
}
.sd-period span {
  font-size: 11px;
  color: var(--text2);
}
.sd-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.sd-date small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--text2);
  margin-top: 2px;
}
.sd-location strong {
  color: var(--navy);
  font-weight: 600;
  font-size: 12px;
  display: block;
}
.sd-location span {
  font-size: 11px;
  color: var(--text2);
}
.btn-apply-sm {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 7px 16px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  transition: background 0.15s;
  cursor: pointer;
}
.btn-apply-sm:hover {
  background: #0c8f8a;
}
.btn-apply-sm.closed {
  background: #e5e7eb;
  color: #9ca3af;
  pointer-events: none;
}
.exam-notice {
  background: #fff7ed;
  border: 1px solid #fcd34d;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 2rem;
}
.en-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d97706;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.en-text {
  font-size: 13px;
  color: #78350f;
  line-height: 1.6;
}
.en-text strong {
  font-weight: 700;
  color: #92400e;
}
.exam-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 2rem;
}
.eq-card {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 1.1rem 1rem;
  text-align: center;
  transition: all 0.2s;
  background: #fff;
  cursor: pointer;
}
.eq-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 160, 0.12);
}
.eq-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eq-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.eq-ic1 {
  background: var(--navy-l);
}
.eq-ic1 svg {
  stroke: var(--navy);
}
.eq-ic2 {
  background: var(--teal-l);
}
.eq-ic2 svg {
  stroke: var(--teal);
}
.eq-ic3 {
  background: #fef3c7;
}
.eq-ic3 svg {
  stroke: #d97706;
}
.eq-ic4 {
  background: #ede9fe;
}
.eq-ic4 svg {
  stroke: #7c3aed;
}
.eq-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.eq-desc {
  font-size: 11px;
  color: var(--text2);
}

/* ══════════════════════════════
   PROGRAMS SECTION
══════════════════════════════ */
.programs {
  background: var(--gray);
}
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prog-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: var(--border);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.prog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.prog-card.featured {
  border: 2px solid var(--teal);
}
.prog-head {
  height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.prog-head-bg {
  position: absolute;
  inset: 0;
}
.ph-1 {
  background: linear-gradient(135deg, #1b3a6b, #185fa5);
}
.ph-2 {
  background: linear-gradient(135deg, #0ea5a0, #02c39a);
}
.ph-3 {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}
.prog-head-deco {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.prog-head-deco2 {
  position: absolute;
  bottom: -50px;
  left: 20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.prog-badge {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.prog-name {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
  line-height: 1.1;
}
.prog-name-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}
.featured-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--teal);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 1;
}
.prog-body {
  padding: 1.4rem 1.5rem;
}
.prog-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.prog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.1rem;
}
.prog-tag {
  font-size: 11px;
  background: var(--gray2);
  color: var(--text2);
  padding: 3px 10px;
  border-radius: 20px;
}
.prog-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
}
.prog-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ══════════════════════════════
   GYTIC SPOTLIGHT
══════════════════════════════ */
.spotlight {
  background: var(--navy);
  padding: 5rem 0;
}
.spotlight-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.spotlight-left .section-badge {
  background: rgba(14, 165, 160, 0.2);
  color: var(--teal-m);
}
.spotlight-left .section-title {
  color: #fff;
  text-align: left;
}
.spotlight-left .section-sub {
  color: rgba(255, 255, 255, 0.65);
  text-align: left;
  max-width: 100%;
}
.spotlight-points {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sp-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(14, 165, 160, 0.2);
  border: 1px solid rgba(14, 165, 160, 0.4);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.sp-dot svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal-m);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.sp-text strong {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 2px;
}
.sp-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.sp-cta {
  margin-top: 2rem;
  display: flex;
  gap: 10px;
}
.sp-btn-p {
  background: var(--teal);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s;
}
.sp-btn-p:hover {
  background: #0c8f8a;
}
.sp-btn-s {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.15s;
}
.sp-btn-s:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Grade mini bar */
.grade-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.gm-cell {
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.gm-g {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.gm-n {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
}
.gm1 {
  background: #1b3a6b;
}
.gm2 {
  background: #1e4d8c;
}
.gm3 {
  background: #1565c0;
}
.gm4 {
  background: #0277bd;
}
.gm5 {
  background: #00838f;
}
.gm6 {
  background: #0ea5a0;
}
.gm7 {
  background: #02c39a;
}
.gm8 {
  background: #52b788;
}
.spotlight-right {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
}
.sr-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.sr-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.sr-stat {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 0.8rem;
  text-align: center;
}
.sr-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px;
}
.sr-stat-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
}
.c-teal {
  color: var(--teal-m);
}
.c-gold {
  color: #f59e0b;
}

/* ══════════════════════════════
   WHO WE ARE
══════════════════════════════ */
.about {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img {
  background: linear-gradient(135deg, var(--navy) 0%, #185fa5 100%);
  border-radius: var(--radius-xl);
  height: 380px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-deco {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(14, 165, 160, 0.15);
}
.about-img-deco2 {
  position: absolute;
  bottom: -80px;
  left: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.about-logo-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}
.about-logo-big {
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
}
.about-logo-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
.about-text .section-title {
  text-align: left;
}
.about-text .section-sub {
  text-align: left;
  max-width: 100%;
}
.about-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}
.about-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 8px;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5rem;
}
.about-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid;
}
.ab-navy {
  color: var(--navy);
  border-color: var(--navy-l);
  background: var(--navy-l);
}
.ab-teal {
  color: var(--teal);
  border-color: var(--teal-l);
  background: var(--teal-l);
}

/* ══════════════════════════════
   NEWS SECTION
══════════════════════════════ */
.news {
  background: var(--gray);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: var(--border);
  padding: 1.4rem;
  transition: box-shadow 0.2s;
}
.news-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.news-date {
  font-size: 11px;
  color: var(--text3);
  margin-bottom: 0.5rem;
}
.news-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 20px;
}
.nt-news {
  background: #e8eff8;
  color: var(--navy);
}
.nt-mou {
  background: var(--teal-l);
  color: var(--teal);
}
.nt-notice {
  background: var(--gold-l);
  color: var(--gold);
}
.news-more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.btn-more {
  border: 1px solid #e5e7eb;
  color: var(--text2);
  padding: 10px 28px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.15s;
  background: #fff;
}
.btn-more:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ══════════════════════════════
   PARTNERS
══════════════════════════════ */
.partners {
  background: #fff;
  padding: 3.5rem 0;
  border-top: var(--border);
}
.partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.partners-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 1.5rem;
}
.partners-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.partner-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  padding: 8px 20px;
  border-radius: var(--radius);
  border: var(--border);
  background: var(--gray);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--navy-d);
  padding: 3rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand .logo-text {
  color: #fff;
  font-size: 18px;
}
.footer-brand .logo-sub {
  color: rgba(255, 255, 255, 0.45);
}
.footer-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 260px;
}
.footer-contact {
  margin-top: 1rem;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 7px;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.footer-links a.new-item {
  color: var(--teal-m);
  font-weight: 600;
}
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.social-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}
.social-btn svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.6);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ══════════════════════════════
   MOBILE HEADER / NAV DRAWER
══════════════════════════════ */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 300;
}
.mobile-overlay.open {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #fff;
  z-index: 400;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  height: 64px;
  border-bottom: var(--border);
  flex-shrink: 0;
}
.mobile-close-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--text2);
  transition: background 0.15s;
}
.mobile-close-btn:hover {
  background: var(--gray);
}
.mobile-close-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-nav-auth {
  display: flex;
  gap: 8px;
  padding: 0.85rem 1rem;
  border-bottom: var(--border);
  flex-shrink: 0;
}
.mobile-auth-btn {
  flex: 1;
  text-align: center;
  padding: 9px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #e5e7eb;
  color: var(--text2);
  transition: all 0.15s;
}
.mobile-auth-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.mobile-auth-btn.apply {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.mobile-auth-btn.apply:hover {
  background: #0c8f8a;
  border-color: #0c8f8a;
}

.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.4rem 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #f3f4f6;
}
.mobile-nav-top {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0.9rem 1.2rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.12s;
  gap: 6px;
}
.mobile-nav-top:hover {
  background: var(--gray2);
}
.mobile-nav-top.link {
  text-decoration: none;
}
.mobile-nav-top.new {
  color: var(--teal);
  font-weight: 700;
}
.mobile-nav-arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--text3);
}
.mobile-nav-item.open .mobile-nav-arrow {
  transform: rotate(180deg);
}
.ext-arrow {
  width: 14px;
  height: 14px;
  margin-left: auto;
  flex-shrink: 0;
  color: var(--text3);
}
.mobile-new-badge {
  font-size: 9px;
  font-weight: 700;
  background: var(--teal);
  color: #fff;
  padding: 1px 5px;
  border-radius: 4px;
}

.mobile-sub {
  display: none;
  background: var(--gray);
  padding: 0.3rem 0;
}
.mobile-nav-item.open .mobile-sub {
  display: block;
}
.mobile-sub-link {
  display: block;
  padding: 0.65rem 1.2rem 0.65rem 2rem;
  font-size: 13px;
  color: var(--text2);
  transition: color 0.12s;
}
.mobile-sub-link:hover {
  color: var(--teal);
}
.mobile-sub-link.highlight {
  color: var(--teal);
  font-weight: 600;
}
.sub-star {
  font-size: 10px;
  margin-right: 3px;
}

.mobile-nav-foot {
  padding: 0.75rem 1rem;
  border-top: var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.mobile-foot-link {
  font-size: 12px;
  color: var(--text3);
  transition: color 0.15s;
}
.mobile-foot-link:hover {
  color: var(--teal);
}
.mobile-foot-div {
  font-size: 11px;
  color: #d1d5db;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 36px;
  }
  .prog-grid,
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid,
  .spotlight-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  .nav {
    display: none;
  }
  .header-right {
    display: none;
  }
  .topbar {
    display: none;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 28px;
  }
  .prog-grid,
  .news-grid,
  .stats-inner {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 24px;
  }
}

/* ══════════════════════════════
   EXAM SECTION — PHP-specific additions
══════════════════════════════ */
.sd-round {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}
.sd-type {
  font-size: 11px;
  color: var(--text2);
  margin-top: 2px;
}
.sd-period strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  font-size: 13px;
}
.sd-period span {
  font-size: 11px;
  color: var(--text2);
}
.reg-status {
  font-size: 11px;
  font-weight: 600;
}
.reg-status.open {
  color: #16a34a;
}
.reg-status.upcoming {
  color: var(--navy);
}
.reg-status.closed {
  color: var(--text3);
}
.dropdown-link {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--text2);
  transition:
    background 0.12s,
    color 0.12s;
  white-space: nowrap;
}
.dropdown-link:hover {
  background: var(--gray);
  color: var(--teal);
}
.dropdown-link.highlight {
  color: var(--teal);
  font-weight: 600;
}
.dropdown-link.highlight::before {
  content: "★ ";
  font-size: 10px;
}

/* ══════════════════════════════
   SUBPAGE COMMONS
══════════════════════════════ */

/* Page Hero */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--navy-d) 0%,
    var(--navy) 60%,
    #185fa5 100%
  );
  padding: 3rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(14, 165, 160, 0.1);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}
.breadcrumb a:hover {
  color: #fff;
}
.bc-sep {
  opacity: 0.4;
}
.bc-current {
  color: rgba(255, 255, 255, 0.9);
}
.page-hero-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.page-hero-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 560px;
}

/* Subpage layout */
.subpage-wrap {
  background: var(--gray);
  min-height: 60vh;
  padding: 2.5rem 0 4rem;
}
.subpage-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}
.subpage-inner.no-sidebar {
  grid-template-columns: 1fr;
}

/* Sidebar */
.sidebar {
  background: #fff;
  border-radius: var(--radius-lg);
  border: var(--border);
  overflow: hidden;
  position: sticky;
  top: 84px;
}
.sidebar-section {
  background: var(--navy);
  color: #fff;
  padding: 0.85rem 1.1rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.sidebar-nav {
  padding: 0.4rem 0;
}
.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.1rem;
  font-size: 13px;
  color: var(--text2);
  transition: all 0.15s;
  border-left: 3px solid transparent;
}
.sidebar-link:hover {
  background: var(--gray);
  color: var(--navy);
  border-left-color: var(--teal);
}
.sidebar-link.active {
  background: var(--teal-l);
  color: var(--teal);
  font-weight: 700;
  border-left-color: var(--teal);
}
.ext-icon {
  font-size: 10px;
  color: var(--text3);
}

/* Subpage main content */
.subpage-main {
  background: #fff;
  border-radius: var(--radius-lg);
  border: var(--border);
  padding: 2rem 2.2rem;
  min-height: 400px;
}
.content-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--teal-l);
}
.content-title span {
  color: var(--teal);
}
.content-lead {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}
.content-section {
  margin-bottom: 2rem;
}
.content-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  padding-left: 10px;
  border-left: 3px solid var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
}
.content-body {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.85;
}
.content-body p {
  margin-bottom: 0.85rem;
}
.content-body p:last-child {
  margin-bottom: 0;
}
.content-body ul {
  padding-left: 1.2rem;
  margin-bottom: 0.85rem;
}
.content-body li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}
.content-body strong {
  color: var(--text);
  font-weight: 600;
}

/* Info cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 1.5rem 0;
}
.info-card {
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  text-align: center;
  background: var(--gray);
}
.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ic-navy {
  background: var(--navy-l);
}
.ic-navy svg {
  stroke: var(--navy);
}
.ic-teal {
  background: var(--teal-l);
}
.ic-teal svg {
  stroke: var(--teal);
}
.ic-gold {
  background: var(--gold-l);
}
.ic-gold svg {
  stroke: var(--gold);
}
.info-card-num {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.info-card-lbl {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.4;
}

/* Data table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 1rem 0;
}
.data-table thead tr {
  background: var(--navy);
}
.data-table th {
  padding: 10px 14px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}
.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: top;
  color: var(--text2);
  line-height: 1.6;
}
.data-table tr:last-child td {
  border-bottom: none;
}
.data-table tr:hover td {
  background: #fafbff;
}
.data-table td strong {
  color: var(--text);
  font-weight: 600;
}

/* Grade badge row */
.grade-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1rem 0;
}
.grade-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.gp1 {
  background: #1b3a6b;
}
.gp2 {
  background: #1e4d8c;
}
.gp3 {
  background: #1565c0;
}
.gp4 {
  background: #0277bd;
}
.gp5 {
  background: #00838f;
}
.gp6 {
  background: #0ea5a0;
}
.gp7 {
  background: #02c39a;
}
.gp8 {
  background: #52b788;
}

/* Notice box */
.notice-box {
  background: var(--gold-l);
  border: 1px solid #fcd34d;
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.notice-box-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.notice-box-text {
  font-size: 13px;
  color: #78350f;
  line-height: 1.65;
}
.notice-box-text strong {
  color: #92400e;
  font-weight: 700;
}

/* Info highlight box */
.highlight-box {
  background: var(--navy-l);
  border: 1px solid #c3d5ef;
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem;
  margin: 1.2rem 0;
}
.highlight-box-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.highlight-box p {
  font-size: 13px;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

/* Step flow */
.step-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.2rem 0;
}
.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-line {
  width: 2px;
  flex: 1;
  background: #e5e7eb;
  min-height: 24px;
  margin: 4px 0;
}
.step-item:last-child .step-line {
  display: none;
}
.step-content {
  padding: 0.2rem 0 1.4rem;
}
.step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.step-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}

/* Board list */
.board-list {
  border-top: 2px solid var(--navy);
}
.board-item {
  display: grid;
  grid-template-columns: 60px 1fr 120px 90px;
  align-items: center;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.12s;
  gap: 12px;
}
.board-item:hover {
  background: var(--gray);
}
.board-num {
  font-size: 12px;
  color: var(--text3);
  text-align: center;
}
.board-title-link {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  transition: color 0.15s;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.board-title-link:hover {
  color: var(--teal);
}
.board-date {
  font-size: 12px;
  color: var(--text3);
  text-align: center;
}
.board-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 20px;
  text-align: center;
}
.board-header {
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.board-header div {
  color: rgba(255, 255, 255, 0.8);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 1.5rem;
}
.page-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text2);
  transition: all 0.15s;
  cursor: pointer;
  background: #fff;
}
.page-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.page-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  font-weight: 700;
}

/* Member card */
.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 1rem 0;
}
.member-card {
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  text-align: center;
  background: var(--gray);
  transition: box-shadow 0.2s;
}
.member-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.member-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.member-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.member-role {
  font-size: 12px;
  color: var(--text2);
}

/* FAQ accordion */
.faq-list {
  margin: 0.5rem 0;
}
.faq-item {
  border: var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  cursor: pointer;
  background: #fff;
  transition: background 0.15s;
  gap: 12px;
}
.faq-q:hover {
  background: var(--gray);
}
.faq-q-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-a {
  display: none;
  padding: 0 1.2rem 1rem;
  background: #fafbff;
  border-top: 1px solid #f1f5f9;
}
.faq-item.open .faq-a {
  display: block;
}
.faq-a p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.75;
  padding-top: 0.85rem;
}

/* Contact / Apply form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 1rem 0;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group.full {
  grid-column: 1/-1;
}
.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.form-label .required {
  color: #ef4444;
  margin-left: 2px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text);
  font-family: inherit;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  background: #fff;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 165, 160, 0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  background: var(--navy);
  color: #fff;
  padding: 11px 32px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background 0.15s;
}
.form-submit:hover {
  background: var(--navy-d);
}

/* Timeline (history) */
.timeline {
  position: relative;
  padding-left: 28px;
  margin: 1rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}
.timeline-item {
  position: relative;
  margin-bottom: 1.8rem;
}
.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--teal);
}
.timeline-year {
  font-size: 11px;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.timeline-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.timeline-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 900px) {
  .subpage-inner {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .info-grid,
  .member-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .board-item {
    grid-template-columns: 40px 1fr 80px;
  }
  .board-item .board-date {
    display: none;
  }
}
@media (max-width: 600px) {
  .page-hero-title {
    font-size: 24px;
  }
  .info-grid,
  .member-grid {
    grid-template-columns: 1fr;
  }
  .subpage-main {
    padding: 1.2rem;
  }
}

/* ══════════════════════════════
   MEMBERSHIP CARD
══════════════════════════════ */
.cont {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* 회원증 카드 */
.cont .card {
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 70%, #1e5799 100%);
  border-radius: var(--radius-xl);
  padding: 2rem 2rem 2rem 2.2rem;
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  box-shadow: 0 8px 32px rgba(27, 58, 107, 0.25);
  position: relative;
  overflow: hidden;
  max-width: 560px;
}
.cont .card::before {
  content: "GITA";
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 100px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -4px;
  pointer-events: none;
  user-select: none;
}
.cont .card .left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 110px;
}
.cont .card .left h4 {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.6;
  margin: 0;
}
.cont .card .right {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.cont .card .right > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cont .card .right p {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}
.cont .card .right p:first-child {
  font-size: 15px;
  font-weight: 800;
  color: var(--teal-m);
  letter-spacing: 0.05em;
}
.cont .card .right img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* 자격증 이미지 */
.certif {
  position: relative;
  display: inline-block;
  max-width: 560px;
}
.certif img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  border: var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.certif .name {
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-d);
  white-space: nowrap;
}
.certif .type {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  white-space: nowrap;
}
.certif .date {
  position: absolute;
  top: 78%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: var(--text2);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .cont .card {
    padding: 1.4rem;
    gap: 1rem;
  }
  .cont .card .left {
    min-width: 90px;
  }
  .cont .card .right img {
    width: 56px;
    height: 70px;
  }
}

/* ── BITT 페이지 레이아웃 별칭 (subpage-* 와 동일) ── */
.page-wrap {
  background: var(--gray);
  min-height: 60vh;
  padding: 2.5rem 0 4rem;
}
.page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}
.page-main {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  padding: 2rem 2.2rem;
  min-height: 400px;
}
@media (max-width: 900px) {
  .page-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .page-main {
    padding: 1.2rem;
  }
}
