/* ══════════════════════════════════════════
   표쌤코딩 메인페이지 — 리디자인 2026
   트렌드: 라이트 모드 + 파스텔 오로라 + 글래스모피즘
   ══════════════════════════════════════════ */

/* ── 기본 리셋 및 배경 ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Noto Sans KR", "SUIT Variable", sans-serif;
  background: #f5f7ff;
  color: #0f172a;
  min-height: 100vh;
  overflow-x: hidden;
}

/* 배경 오로라 레이어 (파스텔) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 5% 0%, rgba(99, 155, 255, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 95% 0%, rgba(168, 120, 255, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 105%, rgba(52, 211, 153, 0.12) 0%, transparent 55%);
}

/* 노이즈 텍스처 오버레이 */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── 컨테이너 ── */
.c { width: min(calc(100% - 40px), 1160px); margin: 0 auto; position: relative; z-index: 1; }

/* ── 플로팅 네비게이션 바 ── */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(calc(100% - 40px), 960px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px 10px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(200, 215, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 24px rgba(99, 120, 220, 0.1), inset 0 1px 0 rgba(255,255,255,0.9);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.4);
  flex-shrink: 0;
}

.nav-title {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-title strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.nav-title small {
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 500;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-pill {
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  transition: all 180ms ease;
  border: 1px solid transparent;
  text-decoration: none;
}

.nav-pill.active,
.nav-pill:hover {
  background: rgba(59, 130, 246, 0.09);
  border-color: rgba(59, 130, 246, 0.2);
  color: #2563eb;
}

/* ── 히어로 섹션 ── */
.hero {
  padding: 100px 0 32px;
  position: relative;
}

/* 배경 그리드 라인 */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(99,120,220,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,120,220,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 30%, transparent 80%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.hero-content { max-width: 620px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 7px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.22);
  font-size: 0.75rem;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.hero h1 .grad {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
  margin: 0 0 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.35);
  transition: all 200ms ease;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  color: #475569;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(200, 215, 240, 0.8);
  transition: all 200ms ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(99, 130, 246, 0.3);
  color: #1e40af;
}

/* ── 히어로 스탯 (오른쪽 패널) ── */
.hero-stats-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

.stat-card {
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(210, 225, 255, 0.8);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(99, 120, 220, 0.07);
}

.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stat-icon.blue { background: rgba(59, 130, 246, 0.1); }
.stat-icon.purple { background: rgba(139, 92, 246, 0.1); }
.stat-icon.green { background: rgba(16, 185, 129, 0.1); }

.stat-info { display: flex; flex-direction: column; gap: 2px; }
.stat-val { font-size: 1.4rem; font-weight: 900; color: #0f172a; letter-spacing: -0.04em; line-height: 1; }
.stat-lbl { font-size: 0.72rem; color: #94a3b8; font-weight: 600; }

/* ── 구분선 ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(99,120,220,0.15) 30%, rgba(99,120,220,0.15) 70%, transparent 100%);
  margin: 0 0 56px;
  position: relative;
  z-index: 1;
}

/* ── 섹션 헤더 ── */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 5px 0 0;
  font-size: 0.82rem;
  color: #94a3b8;
}

.section-count {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(99,120,220,0.15);
  background: rgba(99,120,220,0.05);
  white-space: nowrap;
}

/* ── 프로그램 그리드 ── */
#programGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  padding-bottom: 80px;
}

/* ── 프로그램 카드 ── */
.program-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(215, 228, 255, 0.9);
  border-radius: 24px;
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  position: relative;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(99, 120, 220, 0.06);
}

/* 카드 호버 — 컬러 글로우 보더 */
.program-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(59,130,246,0.6), rgba(139,92,246,0.5), rgba(16,185,129,0.4));
  z-index: -1;
  opacity: 0;
  transition: opacity 240ms ease;
}

.program-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(99, 120, 220, 0.18);
}

.program-card:hover::before {
  opacity: 0.55;
}

/* 카드 이미지 */
.program-card-visual {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #e0e9ff 0%, #ede9fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.program-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.program-card:hover .program-card-visual img { transform: scale(1.05); }

.program-card-dual-visual {
  display: flex !important;
  flex-direction: row;
  gap: 8px;
  padding: 12px;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f4ff 0%, #ede9fe 100%);
  align-items: center;
}
.program-card-dual-visual img {
  flex: 1;
  min-width: 0;
  height: 100%;
  width: 50%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.14);
  transition: transform 300ms ease;
  image-rendering: auto;
}
.program-card:hover .program-card-dual-visual img:first-child { transform: translateX(-3px) rotate(-1.5deg); }
.program-card:hover .program-card-dual-visual img:last-child  { transform: translateX(3px) rotate(1.5deg); }

.program-card-visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dde8ff 0%, #ece8fd 100%);
}

.program-card-visual-placeholder span {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(99, 120, 200, 0.5);
}

/* 배지 행 */
.card-badge-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

/* 온돌봄 키트 배지 */
.card-kit-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 3px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(234,88,12,0.1), rgba(217,119,6,0.1));
  color: #c2410c;
  border: 1px solid rgba(234,88,12,0.22);
  white-space: nowrap;
}

/* 차시 정보 */
.card-lesson-info {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #2563eb;
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 999px;
  padding: 2px 8px;
  vertical-align: middle;
}

/* 배지 */
.card-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  margin-bottom: 0;
  width: fit-content;
  box-shadow: 0 2px 12px rgba(59,130,246,0.3);
}

.chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 0;
  width: fit-content;
}

.chip:not(.alt):not(.dim) {
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.chip.alt {
  background: rgba(124, 58, 237, 0.08);
  color: #6d28d9;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.chip.dim {
  background: rgba(100, 116, 139, 0.08);
  color: #475569;
  border: 1px solid rgba(100, 116, 139, 0.15);
}

/* 카드 텍스트 */
.card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.card-description {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* 태그 */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  list-style: none;
  padding: 12px 0 14px;
  margin: 0;
}

.tag-list li {
  font-size: 0.7rem;
  font-weight: 600;
  color: #059669;
  background: rgba(16, 185, 129, 0.07);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 999px;
  padding: 3px 9px;
}

/* 카드 푸터 */
.program-footer {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(215, 228, 255, 0.7);
}

.program-footer .muted {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
}

/* 버튼 */
.button-secondary {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff !important;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(37, 99, 235, 0.28);
  transition: all 200ms ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  letter-spacing: -0.01em;
}

.button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.42);
}

.button-secondary[aria-disabled="true"] {
  background: #f1f5f9;
  color: #94a3b8 !important;
  box-shadow: none;
  cursor: default;
  transform: none;
  border: 1px solid #e2e8f0;
}

/* 준비 중 카드 */
.program-card:has(.button-secondary[aria-disabled="true"]) {
  opacity: 0.6;
}

/* ── glass-card 전역 스타일 오버라이드 (라이트 테마용) ── */
.program-card.glass-card {
  background: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(215, 228, 255, 0.9) !important;
  box-shadow: 0 2px 16px rgba(99, 120, 220, 0.06) !important;
  backdrop-filter: blur(12px) !important;
  border-radius: 24px !important;
  padding: 20px !important;
}

.program-card.glass-card::after { display: none; }

/* ── 탭 바 ── */
.tab-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(210,225,255,0.8);
  border-radius: 16px;
  padding: 5px;
  width: fit-content;
  backdrop-filter: blur(12px);
}
.tab-btn {
  padding: 9px 22px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  transition: all 200ms ease;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.tab-btn.active {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  box-shadow: 0 3px 12px rgba(37,99,235,0.28);
}
.tab-btn:not(.active):hover {
  background: rgba(37,99,235,0.07);
  color: #2563eb;
}
.tab-panel { display: block; }
.tab-panel.is-hidden { display: none; }

/* ── 콘텐츠 카드 (큰 형태) ── */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  padding-bottom: 80px;
}
.content-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(215,228,255,0.9);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 20px rgba(99,120,220,0.07);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  position: relative;
  backdrop-filter: blur(12px);
}
.content-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 29px;
  z-index: -1;
  opacity: 0;
  transition: opacity 240ms ease;
}
.content-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 18px 50px rgba(99,120,220,0.16); }
.content-card:hover::before { opacity: 0.5; }

.content-card-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.6rem;
  position: relative;
  overflow: hidden;
}
.content-card-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.content-card-cat {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  width: fit-content;
}
.content-card-title { font-size: 1.3rem; font-weight: 900; color: #0f172a; margin: 0 0 10px; letter-spacing: -0.03em; }
.content-card-desc  { font-size: 0.86rem; color: #64748b; line-height: 1.75; margin: 0 0 18px; flex: 1; }
.content-card-tags  { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 20px; }
.content-card-tags span {
  font-size: 0.7rem; font-weight: 600; border-radius: 999px; padding: 3px 9px;
  background: rgba(99,102,241,0.07); color: #4338ca; border: 1px solid rgba(99,102,241,0.15);
}
.content-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid rgba(215,228,255,0.7);
}
.content-card-meta { font-size: 0.75rem; color: #94a3b8; font-weight: 600; }
.content-card-btn {
  padding: 8px 18px; border-radius: 999px; font-size: 0.78rem; font-weight: 700;
  background: #f1f5f9; color: #94a3b8; border: 1px solid #e2e8f0;
}

/* content-card 색상 변형 */
.content-card.career  .content-card-visual { background: linear-gradient(135deg,#fef3c7,#fde68a); }
.content-card.career  .content-card-cat    { background:rgba(245,158,11,0.1); color:#b45309; border:1px solid rgba(245,158,11,0.22); }
.content-card.career::before               { background: linear-gradient(135deg,rgba(245,158,11,0.5),rgba(234,88,12,0.4)); }
.content-card.elementary .content-card-visual { background: linear-gradient(135deg,#d1fae5,#a7f3d0); }
.content-card.elementary .content-card-cat    { background:rgba(16,185,129,0.09); color:#047857; border:1px solid rgba(16,185,129,0.2); }
.content-card.elementary::before              { background: linear-gradient(135deg,rgba(16,185,129,0.5),rgba(5,150,105,0.4)); }
.content-card.middle .content-card-visual { background: linear-gradient(135deg,#e0e7ff,#c7d2fe); }
.content-card.middle .content-card-cat    { background:rgba(99,102,241,0.09); color:#4338ca; border:1px solid rgba(99,102,241,0.2); }
.content-card.middle::before              { background: linear-gradient(135deg,rgba(99,102,241,0.5),rgba(124,58,237,0.4)); }
.content-card.startup .content-card-visual { background: linear-gradient(135deg,#fef3c7,#fed7aa); }
.content-card.startup .content-card-cat    { background:rgba(234,88,12,0.09); color:#c2410c; border:1px solid rgba(234,88,12,0.2); }
.content-card.startup::before              { background: linear-gradient(135deg,rgba(245,158,11,0.5),rgba(234,88,12,0.4)); }
.content-card.lifelong .content-card-visual { background: linear-gradient(135deg,#fce7f3,#fbcfe8); }
.content-card.lifelong .content-card-cat    { background:rgba(236,72,153,0.09); color:#9d174d; border:1px solid rgba(236,72,153,0.2); }
.content-card.lifelong::before              { background: linear-gradient(135deg,rgba(236,72,153,0.5),rgba(219,39,119,0.4)); }

/* ── 교육 후기 섹션 ── */
.reviews-section {
  position: relative; z-index: 1;
  padding: 56px 0 80px;
  border-top: 1px solid rgba(210,225,255,0.5);
  margin-top: 24px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.review-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(215,228,255,0.8);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 14px rgba(99,120,220,0.06);
}
.review-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; }
.review-quote {
  font-size: 0.9rem; color: #334155; line-height: 1.75;
  position: relative; padding-left: 16px;
}
.review-quote::before {
  content: "";
  position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 3px; border-radius: 2px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: #fff;
  flex-shrink: 0;
}
.review-info strong { display: block; font-size: 0.85rem; font-weight: 800; color: #0f172a; }
.review-info span   { font-size: 0.75rem; color: #94a3b8; }

/* ── 콘텐츠 섹션 chip 컬러 ── */
.chip-career     { background:rgba(245,158,11,0.09); color:#b45309; border:1px solid rgba(245,158,11,0.22); }
.chip-elementary { background:rgba(16,185,129,0.09); color:#047857; border:1px solid rgba(16,185,129,0.2); }
.chip-middle     { background:rgba(99,102,241,0.09); color:#4338ca; border:1px solid rgba(99,102,241,0.2); }

/* ── 반응형 ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-stats-panel {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: auto;
  }
  .stat-card { flex: 1; min-width: 140px; }
}

@media (max-width: 640px) {
  .navbar { top: 12px; padding: 8px 12px; }
  .hero { padding: 100px 0 48px; }
  .hero h1 { font-size: 1.8rem; }
  #programGrid { grid-template-columns: 1fr; }
  .hero-actions { gap: 8px; }
  .nav-title { display: none; }
}
