/* ===== 기본 설정 ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', sans-serif;
  color: #1e2a3a;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  --primary: #0b4a9e;
  --primary-dark: #083a7d;
  --primary-light: #1e6fd9;
  --accent: #ff7a45;
  --bg: #f5f7fa;
  --line: #e5eaf1;
  --text: #1e2a3a;
  --muted: #6b7a90;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== 상단 바 ===== */
.topbar { background: #0f1c33; color: #cfd6e2; font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 36px; }
.topbar-links { display: flex; gap: 18px; }
.topbar-links a { color: #cfd6e2; }
.topbar-links a:hover { color: #fff; }

/* ===== 헤더 ===== */
.header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 78px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; font-weight: 900; font-size: 15px; letter-spacing: 0.5px;
}
.logo-text { font-weight: 700; font-size: 19px; color: var(--text); display: flex; flex-direction: column; line-height: 1.2; }
.logo-text small { font-weight: 400; font-size: 11px; color: var(--muted); letter-spacing: 1px; }
.gnb ul { display: flex; gap: 36px; }
.gnb a { font-weight: 500; font-size: 16px; color: #2a3952; padding: 8px 2px; position: relative; }
.gnb a:hover, .gnb a.active { color: var(--primary); }
.gnb a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 3px; background: var(--primary); border-radius: 2px;
}
.gnb a.gnb-cbt {
  background: var(--accent); color: #fff !important;
  padding: 8px 16px; border-radius: 6px;
}
.gnb a.gnb-cbt:hover { background: #e8632f; color: #fff; }
.gnb a.gnb-cbt::after { display: none; }

/* ===== 히어로 ===== */
.hero {
  background:
    linear-gradient(115deg, rgba(11,74,158,0.92) 0%, rgba(30,111,217,0.88) 100%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.2), transparent 40%);
  color: #fff;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.hero::after {
  content: ''; position: absolute; right: 100px; bottom: -80px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.hero-wrap {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; flex: 1 1 auto; }
.hero-badge {
  flex: 0 0 auto; width: 320px; max-width: 40vw;
  display: flex; align-items: center; justify-content: center;
}
.hero-badge .badge-svg,
.hero-badge img { width: 100%; height: auto; display: block; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero-sub { font-size: 13px; letter-spacing: 3px; opacity: 0.85; margin-bottom: 18px; font-weight: 500; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 8px 18px; border-radius: 30px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.hero-pill-dot {
  width: 8px; height: 8px; background: #ff7a45;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,122,69,0.25);
  animation: pillPulse 2s infinite;
}
@keyframes pillPulse {
  50% { box-shadow: 0 0 0 7px rgba(255,122,69,0.05); }
}
.hero-title { font-size: 48px; font-weight: 300; line-height: 1.25; margin-bottom: 22px; }
.hero-title strong { font-weight: 900; }
.hero-desc { font-size: 18px; opacity: 0.92; margin-bottom: 36px; line-height: 1.7; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== 버튼 ===== */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 6px;
  font-weight: 700; font-size: 15px; transition: all 0.2s;
  border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #e8632f; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,122,69,0.35); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #f0f5ff; }
.btn-lg { padding: 16px 40px; font-size: 16px; }

/* ===== 지표 ===== */
.stats { background: #fff; padding: 50px 0; border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-num { font-size: 42px; font-weight: 900; color: var(--primary); line-height: 1.2; }
.stat-label { font-size: 15px; color: var(--muted); margin-top: 6px; }

/* ===== 섹션 공통 ===== */
.section-head { text-align: center; margin-bottom: 50px; }
.eyebrow { color: var(--primary); font-size: 13px; letter-spacing: 3px; font-weight: 700; margin-bottom: 12px; }
.section-head h2 { font-size: 36px; font-weight: 700; margin-bottom: 14px; }
.lead { color: var(--muted); font-size: 17px; }

/* ===== 탭 섹션 ===== */
.tab-section { padding: 90px 0; background: var(--bg); }
.content-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}
.content-main { min-width: 0; }
.content-aside { position: sticky; top: 100px; }

/* 추천도서 카드 */
.promo-card {
  background: #fff;
  border-radius: 12px;
  padding: 26px 22px;
  box-shadow: 0 4px 24px rgba(11,74,158,0.08);
  border-top: 4px solid var(--primary);
}
.promo-eyebrow {
  font-size: 11px; letter-spacing: 2.5px; font-weight: 700;
  color: var(--accent); margin-bottom: 6px;
}
.promo-title {
  font-size: 20px; font-weight: 700; color: var(--text);
  margin-bottom: 8px;
}
.promo-desc {
  font-size: 13px; color: var(--muted); line-height: 1.6;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.book {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  padding: 14px 8px;
  border-radius: 8px;
  transition: all 0.2s;
  margin-bottom: 6px;
}
.book:hover { background: #f0f5ff; transform: translateX(-2px); }
.book-cover {
  width: 78px; height: 110px; overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background: #eef2f7;
}
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-info { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.book-badge {
  display: inline-block; align-self: flex-start;
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  padding: 2px 7px; border-radius: 3px;
  background: var(--accent); color: #fff;
  margin-bottom: 6px;
}
.book-info h4 {
  font-size: 13.5px; font-weight: 700; line-height: 1.4;
  color: var(--text); margin-bottom: 4px;
}
.book-author { font-size: 11.5px; color: var(--muted); margin-bottom: 6px; }
.book-link { font-size: 11.5px; color: var(--primary); font-weight: 600; }

/* 추천강의 (YouTube) */
.promo-card-yt { margin-top: 20px; border-top-color: #ff0033; }
.promo-eyebrow-yt { color: #ff0033; }
.yt-channel {
  display: block; border-radius: 10px; overflow: hidden;
  transition: all 0.2s; background: #0f1c33;
}
.yt-channel:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,0,51,0.18); }
.yt-thumb {
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,0,51,0.35), transparent 60%),
    linear-gradient(135deg, #1a2842 0%, #0f1c33 100%);
  display: flex; align-items: center; justify-content: center;
}
.yt-thumb::before {
  content: '☁'; position: absolute; left: 18px; top: 14px;
  font-size: 22px; color: rgba(255,255,255,0.15);
}
.yt-thumb::after {
  content: '☁'; position: absolute; right: 22px; bottom: 14px;
  font-size: 30px; color: rgba(255,255,255,0.1);
}
.yt-play {
  width: 56px; height: 40px;
  background: #ff0033; color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900;
  box-shadow: 0 4px 14px rgba(255,0,51,0.5);
  padding-left: 3px;
  transition: transform 0.2s;
}
.yt-channel:hover .yt-play { transform: scale(1.1); }
.yt-badge-yt {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.75); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  padding: 3px 8px; border-radius: 3px;
}
.yt-info { padding: 12px 14px 14px; background: #fff; }
.yt-info h4 {
  font-size: 14.5px; font-weight: 700; color: var(--text);
  margin-bottom: 4px; line-height: 1.3;
}
.yt-meta { font-size: 11.5px; color: var(--muted); margin-bottom: 8px; }
.yt-link { font-size: 11.5px; color: #ff0033; font-weight: 700; }

.tabs {
  display: flex; background: #fff; border-radius: 10px;
  overflow: hidden; box-shadow: 0 2px 12px rgba(11,74,158,0.06);
  max-width: 640px; margin: 0 auto 36px;
  border: 1px solid var(--line);
}
.tab {
  flex: 1; padding: 18px 10px; font-size: 16px; font-weight: 700;
  color: var(--muted); background: #fff; transition: all 0.2s;
  border-right: 1px solid var(--line);
}
.tab:last-child { border-right: none; }
.tab:hover { color: var(--primary); background: #f0f5ff; }
.tab.active { background: var(--primary); color: #fff; }

.tab-panel {
  display: none; background: #fff; padding: 50px; border-radius: 12px;
  box-shadow: 0 4px 24px rgba(11,74,158,0.06);
  animation: fadeIn 0.35s ease;
}
.tab-panel.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.panel-title { font-size: 26px; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.panel-desc { color: var(--muted); font-size: 16px; margin-bottom: 30px; padding-bottom: 24px; border-bottom: 2px solid var(--bg); }
.sub-title { font-size: 18px; font-weight: 700; margin: 32px 0 16px; color: var(--text); }

/* ===== 강의목차 ===== */
.curriculum { display: grid; gap: 14px; }
.curriculum li {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: center;
  padding: 22px 26px; background: var(--bg); border-radius: 10px;
  border-left: 4px solid var(--primary); transition: all 0.2s;
}
.curriculum li:hover { transform: translateX(4px); background: #eaf1fb; }
.curriculum .ch { font-size: 15px; font-weight: 900; color: var(--primary); text-align: center; }
.curriculum h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.curriculum .ct p { color: var(--muted); font-size: 14px; }

/* ===== 자격증 설명 ===== */
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
}
.info-row { display: grid; grid-template-columns: 140px 1fr; border-bottom: 1px solid var(--line); }
.info-row:nth-last-child(-n+2) { border-bottom: none; }
.info-row:nth-child(odd) { border-right: 1px solid var(--line); }
.info-label { background: #f8faff; padding: 16px 18px; font-weight: 700; color: var(--primary); font-size: 14px; }
.info-value { padding: 16px 18px; font-size: 14.5px; }

.check-list { display: grid; gap: 10px; }
.check-list li {
  position: relative; padding: 10px 14px 10px 38px;
  background: var(--bg); border-radius: 8px; font-size: 15px;
}
.check-list li::before {
  content: '✓'; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--primary); font-weight: 900; font-size: 16px;
}

/* ===== 신청 폼 ===== */
.apply-form { display: grid; gap: 18px; max-width: 720px; }
.form-row { display: grid; gap: 8px; }
.form-row label { font-weight: 600; font-size: 14px; color: var(--text); }
.req { color: #e53e3e; }
.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row input[type="date"],
.form-row input[type="url"],
.form-row select,
.form-row textarea {
  width: 100%; padding: 13px 14px; font-size: 15px; font-family: inherit;
  border: 1.5px solid var(--line); border-radius: 8px; background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,74,158,0.12);
}
.form-row textarea { resize: vertical; }
.form-check .check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); cursor: pointer; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--primary); }
.form-actions { display: flex; gap: 10px; margin-top: 10px; }
.form-actions .btn-ghost { color: var(--muted); border-color: var(--line); }
.form-actions .btn-ghost:hover { color: var(--primary); border-color: var(--primary); background: #f0f5ff; }

/* ===== 인재풀 등록 ===== */
.talent-hero {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin: 20px 0 32px;
}
.talent-hero-item {
  background: linear-gradient(135deg, #f4f8ff 0%, #eaf1fb 100%);
  border: 1px solid #d7e4f5; border-radius: 12px;
  padding: 22px 20px; text-align: left;
}
.talent-hero-icon { font-size: 28px; margin-bottom: 10px; }
.talent-hero-item h4 { font-size: 16px; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.talent-hero-item p { font-size: 13px; color: var(--muted); line-height: 1.55; }

.form-row-2col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.form-row-2col > div { display: grid; gap: 8px; }
.form-row-2col label { font-weight: 600; font-size: 14px; color: var(--text); }

.label-hint { font-weight: 400; font-size: 12px; color: var(--muted); margin-left: 4px; }
.field-note { font-size: 12px; color: var(--muted); margin-top: 4px; }

.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block; padding: 9px 16px;
  border: 1.5px solid var(--line); border-radius: 999px;
  font-size: 13.5px; font-weight: 500; color: var(--text);
  background: #fff; transition: all 0.18s;
  user-select: none;
}
.chip:hover span { border-color: var(--primary); color: var(--primary); }
.chip input:checked + span {
  background: var(--primary); color: #fff;
  border-color: var(--primary);
  box-shadow: 0 3px 10px rgba(11,74,158,0.25);
}
.chip input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(11,74,158,0.2);
}

.form-check .check small { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.5; }

.cert-check {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px; border: 1.5px solid #ffd36b;
  background: linear-gradient(135deg, #fff8e6 0%, #fff2d1 100%);
  border-radius: 10px; cursor: pointer;
  transition: all 0.2s;
}
.cert-check:hover { border-color: #ff9a3b; box-shadow: 0 3px 12px rgba(255,154,59,0.18); }
.cert-check input[type="checkbox"] { width: 20px; height: 20px; margin-top: 2px; accent-color: #ff9a3b; }
.cert-check strong { display: block; font-size: 15px; color: #7a4a00; font-weight: 700; }
.cert-check small { display: block; font-size: 12.5px; color: #8a6a2c; margin-top: 4px; line-height: 1.5; }
.cert-check input:checked ~ span strong { color: #b35a00; }
.cert-check:has(input:checked) {
  border-color: #ff9a3b; background: linear-gradient(135deg, #fff2d1 0%, #ffe0a8 100%);
  box-shadow: 0 3px 12px rgba(255,154,59,0.25);
}

/* ===== 결제 섹션 ===== */
.price-box {
  background: linear-gradient(135deg, #0b4a9e, #1e6fd9);
  color: #fff; padding: 20px 22px; border-radius: 10px;
  box-shadow: 0 6px 18px rgba(11,74,158,0.25);
}
.price-box-row { display: flex; justify-content: space-between; align-items: center; }
.price-label { font-size: 14px; opacity: 0.9; }
.price-amount { font-size: 28px; font-weight: 900; letter-spacing: -0.5px; }
.price-note { font-size: 12px; opacity: 0.85; margin-top: 8px; }

.pay-methods { display: grid; gap: 10px; }
.pay-method {
  display: block; cursor: pointer;
  border: 2px solid var(--line); border-radius: 10px;
  padding: 16px 18px; transition: all 0.2s;
  background: #fff;
}
.pay-method input[type="radio"] { display: none; }
.pay-method:hover { border-color: var(--primary-light); }
.pay-method:has(input:checked) {
  border-color: var(--primary);
  background: #f0f5ff;
  box-shadow: 0 0 0 3px rgba(11,74,158,0.08);
}
.pay-method-disabled { opacity: 0.55; cursor: not-allowed; }
.pay-method-disabled:hover { border-color: var(--line); }
.pay-method-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; margin-bottom: 6px;
}
.pay-icon { font-size: 20px; }
.pay-badge {
  margin-left: auto; font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 12px;
}
.pay-badge-on { background: #e6f7ee; color: #1f9d55; }
.pay-badge-soon { background: #f4f5f7; color: #8a94a6; }
.pay-method-desc { font-size: 13px; color: var(--muted); padding-left: 30px; line-height: 1.5; }

.pay-terms {
  background: #f8faff; border-left: 3px solid var(--primary);
  padding: 18px 22px; border-radius: 0 8px 8px 0;
}
.pay-terms h5 {
  font-size: 14px; font-weight: 700; color: var(--primary);
  margin-bottom: 10px;
}
.pay-terms ul { display: grid; gap: 6px; padding-left: 18px; list-style: disc; }
.pay-terms li { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===== 모달 ===== */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal.active { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 28, 51, 0.65);
  backdrop-filter: blur(3px);
  animation: fadeIn 0.25s ease;
}
.modal-card {
  position: relative; background: #fff; border-radius: 14px;
  width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto;
  padding: 38px 34px 30px; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 12px; right: 14px;
  width: 34px; height: 34px; font-size: 26px;
  color: var(--muted); border-radius: 50%;
}
.modal-close:hover { background: var(--bg); color: var(--text); }
.modal-icon {
  width: 60px; height: 60px; margin: 0 auto 18px;
  background: linear-gradient(135deg, #1f9d55, #30c971);
  color: #fff; font-size: 32px; font-weight: 900;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(31,157,85,0.3);
}
.modal-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.modal-sub { color: var(--muted); font-size: 14px; margin-bottom: 24px; line-height: 1.6; }

.receipt {
  background: var(--bg); border-radius: 10px;
  padding: 16px 20px; text-align: left; margin-bottom: 14px;
}
.receipt-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 14px;
  border-bottom: 1px dashed #d6dde8;
}
.receipt-row:last-child { border-bottom: none; }
.receipt-row span { color: var(--muted); }
.receipt-row strong { color: var(--text); font-weight: 600; }
.receipt-price { padding-top: 12px; margin-top: 4px; border-top: 2px solid #fff; border-bottom: none !important; }
.receipt-price span { font-weight: 700; color: var(--text); }
.receipt-price strong { font-size: 20px; color: var(--accent); font-weight: 900; }

.receipt-bank {
  background: #fff; border: 2px solid var(--primary);
  border-radius: 10px; padding: 16px 20px; text-align: left;
  margin-bottom: 18px;
}
.bank-head {
  font-size: 13px; font-weight: 700; color: var(--primary);
  letter-spacing: 1px; margin-bottom: 10px;
}
.bank-body { display: grid; gap: 8px; }
.bank-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; gap: 10px;
}
.bank-row > span { color: var(--muted); min-width: 60px; }
.bank-row strong { color: var(--text); font-weight: 700; text-align: right; }
.copy-btn {
  font-size: 11px; padding: 3px 9px; margin-left: 6px;
  background: var(--primary); color: #fff; border-radius: 4px;
  font-weight: 600;
}
.copy-btn:hover { background: var(--primary-dark); }
.bank-note { font-size: 12px; color: #e53e3e; margin-top: 12px; line-height: 1.5; }

.modal-actions { margin-top: 10px; }
.modal-actions .btn { width: 100%; }

/* ===== 자료실 (리드마그넷) ===== */
.resources { padding: 90px 0; background: #fff; }
.resource-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-bottom: 40px;
}
.resource-card {
  background: #fff; border: 1.5px solid var(--line);
  border-radius: 14px; padding: 30px 28px;
  transition: all 0.25s; position: relative;
}
.resource-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11,74,158,0.12);
}
.resource-icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: linear-gradient(135deg, #eaf1fb, #dfe9f7);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
}
.resource-meta {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; color: var(--primary);
  background: #eaf1fb; padding: 3px 10px; border-radius: 4px;
  margin-bottom: 12px;
}
.resource-card h3 {
  font-size: 18px; font-weight: 700;
  color: var(--text); margin-bottom: 8px; line-height: 1.3;
}
.resource-desc { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.resource-items {
  display: grid; gap: 8px; padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.resource-items li {
  position: relative; padding-left: 20px;
  font-size: 13.5px; color: #4a5a72;
}
.resource-items li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--primary); font-weight: 900;
}

/* 리드 폼 */
.resource-form {
  background: linear-gradient(135deg, #0b4a9e, #1e6fd9);
  color: #fff; border-radius: 16px;
  padding: 38px 42px;
  box-shadow: 0 12px 32px rgba(11,74,158,0.2);
}
.resource-form-head { margin-bottom: 24px; text-align: center; }
.resource-form-head h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.resource-form-head p { opacity: 0.9; font-size: 14.5px; }
.resource-form-body {
  display: grid; grid-template-columns: 1fr 1.5fr auto; gap: 10px;
  margin-bottom: 14px;
}
.resource-form-body input {
  padding: 14px 18px; font-size: 15px; font-family: inherit;
  border: none; border-radius: 8px; background: #fff;
  color: var(--text);
}
.resource-form-body input:focus {
  outline: none; box-shadow: 0 0 0 4px rgba(255,122,69,0.3);
}
.resource-form-body .btn { white-space: nowrap; padding: 14px 28px; }
.resource-agree {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; opacity: 0.9; cursor: pointer;
}
.resource-agree input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--accent); }

/* ===== FAQ ===== */
.faq-section { padding: 90px 0; background: var(--bg); }
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: #fff; border-radius: 10px;
  border: 1.5px solid var(--line);
  overflow: hidden; transition: all 0.2s;
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(11,74,158,0.08);
}
.faq-item summary {
  padding: 20px 24px;
  font-size: 16px; font-weight: 600; color: var(--text);
  cursor: pointer; display: flex; align-items: center; gap: 14px;
  list-style: none; position: relative;
  padding-right: 50px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; transition: all 0.2s;
}
.faq-item[open] summary::after {
  content: '−'; background: var(--primary); color: #fff;
}
.faq-q {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-size: 13px; font-weight: 900; flex-shrink: 0;
}
.faq-a {
  padding: 4px 24px 22px 66px;
  font-size: 14.5px; line-height: 1.8; color: #4a5a72;
}
.faq-a strong { color: var(--primary); font-weight: 700; }

/* ===== CTA 밴드 ===== */
.cta-band { background: linear-gradient(90deg, var(--primary-dark), var(--primary-light)); color: #fff; padding: 60px 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.cta-inner h3 { font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.cta-inner p { opacity: 0.9; font-size: 16px; }

/* ===== 푸터 ===== */
.footer { background: #0f1c33; color: #a9b5c8; padding: 60px 0 40px; font-size: 14px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer-logo { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer-addr { line-height: 1.8; }
.footer-copy { margin-top: 20px; font-size: 13px; color: #6b7a90; }
.footer-col h5 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col ul a:hover { color: #fff; }

/* ===== 반응형 ===== */
@media (max-width: 1100px) {
  .content-wrap { grid-template-columns: 1fr; }
  .content-aside { position: static; }
  .promo-card { max-width: 640px; margin: 0 auto; }
}
@media (max-width: 960px) {
  .gnb ul { gap: 16px; }
  .gnb a { font-size: 13.5px; }
  .hero-title { font-size: 36px; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-form { padding: 28px 22px; }
  .resource-form-body { grid-template-columns: 1fr; }
  .faq-item summary { font-size: 15px; padding: 16px 50px 16px 20px; }
  .faq-a { padding: 4px 20px 18px 58px; font-size: 14px; }
  .hero { padding: 70px 0 80px; }
  .hero-wrap { flex-direction: column; gap: 30px; align-items: flex-start; }
  .hero-badge { width: 200px; align-self: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .info-grid { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 120px 1fr; border-right: none !important; }
  .info-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .info-row:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .tab-panel { padding: 30px 22px; }
  .section-head h2 { font-size: 28px; }
  .talent-hero { grid-template-columns: 1fr; }
  .form-row-2col { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .topbar-info { display: none; }
  .header-inner { height: 64px; }
  .logo-mark { width: 38px; height: 38px; font-size: 13px; }
  .logo-text { font-size: 16px; }
  .gnb { display: none; }
  .hero-title { font-size: 28px; }
  .hero-desc { font-size: 15px; }
  .hero-badge { width: 170px; }
  .tabs { flex-direction: column; max-width: 100%; }
  .tab { border-right: none; border-bottom: 1px solid var(--line); }
  .tab:last-child { border-bottom: none; }
  .curriculum li { grid-template-columns: 60px 1fr; padding: 16px 18px; gap: 14px; }
  .cta-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   메인 배너 — 다이나믹 효과
   ============================================================ */

.hero-dynamic {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0e2d57 0%, #163a73 40%, #1d4d96 70%, #2862b5 100%);
  background-size: 200% 200%;
  animation: heroGradientShift 18s ease-in-out infinite;
}

@keyframes heroGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* 떠다니는 도형 배경 */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: heroFloat 14s ease-in-out infinite;
}
.hero-shape-1 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #ffb13b, transparent 70%);
  top: -80px; left: -100px;
  animation-duration: 16s;
}
.hero-shape-2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, #4dc4ff, transparent 70%);
  top: 30%; right: -60px;
  animation-duration: 20s;
  animation-delay: -3s;
}
.hero-shape-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, #ff7a45, transparent 70%);
  bottom: -60px; left: 30%;
  animation-duration: 18s;
  animation-delay: -6s;
}
.hero-shape-4 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, #a78bfa, transparent 70%);
  top: 12%; left: 45%;
  animation-duration: 22s;
  animation-delay: -10s;
  opacity: 0.4;
}
.hero-shape-5 {
  width: 140px; height: 140px;
  background: radial-gradient(circle, #38d9a9, transparent 70%);
  bottom: 18%; right: 18%;
  animation-duration: 15s;
  animation-delay: -8s;
  opacity: 0.45;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(40px, -30px) scale(1.08); }
  50%      { transform: translate(-30px, 40px) scale(0.95); }
  75%      { transform: translate(20px, 20px) scale(1.05); }
}

/* 그리드 패턴 오버레이 */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}

/* 메인 콘텐츠가 도형 위로 */
.hero-dynamic .hero-wrap,
.hero-dynamic .hero-inner,
.hero-dynamic .hero-badge {
  position: relative;
  z-index: 2;
}

/* 페이드인 애니메이션 */
.hero-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* 회전 키워드 */
.hero-rotate {
  display: inline-block;
  position: relative;
  min-height: 1.2em;
  vertical-align: bottom;
}
.hero-rotate-word {
  position: absolute;
  top: 0; left: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  background: linear-gradient(135deg, #ffd36b 0%, #ff8a1f 60%, #ff6b35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(255, 138, 31, 0.35));
}
.hero-rotate-word.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

/* 배지 floating */
.hero-badge-float {
  animation: heroBadgeFloat 6s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-badge-float:hover {
  transform: scale(1.05) rotate(-3deg);
}
@keyframes heroBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* 핀 살짝 깜빡임 */
.hero-pill-dot {
  animation: heroDotPulse 2s ease-in-out infinite;
}
@keyframes heroDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(56, 217, 169, 0.7); }
  50%      { box-shadow: 0 0 0 8px rgba(56, 217, 169, 0); }
}

/* CTA 버튼 호버 효과 강화 */
.hero-dynamic .btn-primary {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.3s;
}
.hero-dynamic .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 138, 31, 0.4);
}
.hero-dynamic .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.hero-dynamic .btn-primary:hover::after {
  transform: translateX(100%);
}

/* stats 카운트업 시 강조 */
.stat-num {
  transition: color 0.3s;
}
.stat.counting .stat-num {
  color: #ff7a1f;
}

/* 모바일 대응 */
@media (max-width: 720px) {
  .hero-shape-1, .hero-shape-2, .hero-shape-3 { transform: scale(0.7); }
  .hero-shape-4, .hero-shape-5 { display: none; }
}

/* ============================================================
   메인 배너 — 우측 가운데 배지 이미지 + 회전 스탬프
   ============================================================ */
.hero-badge-img {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(11, 62, 133, 0.35));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-badge-img:hover { transform: scale(1.04) rotate(-2deg); }

.hero-dynamic .hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-stamp-badge {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 130px;
  height: 130px;
  z-index: 4;
  animation: stampRotate 18s linear infinite;
  filter: drop-shadow(0 6px 16px rgba(255, 122, 31, 0.45));
  pointer-events: none;
}
.hero-stamp-badge svg { width: 100%; height: 100%; display: block; }
@keyframes stampRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-stamp-badge::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 31, 0.35), transparent 70%);
  animation: stampGlow 3s ease-in-out infinite;
  z-index: -1;
}
@keyframes stampGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 0.9; transform: scale(1.1); }
}
@media (max-width: 980px) {
  .hero-badge-img { max-width: 240px; margin: 24px auto 0; }
  .hero-stamp-badge { width: 95px; height: 95px; top: 16px; right: 16px; }
}
@media (max-width: 480px) {
  .hero-badge-img { max-width: 180px; }
  .hero-stamp-badge { width: 75px; height: 75px; top: 12px; right: 12px; }
}

/* ============================================================
   Hero 배지 — 강제 표시 (CSS 충돌 방지)
   ============================================================ */
.hero-dynamic .hero-badge {
  display: flex !important;
  width: 320px !important;
  max-width: 40vw !important;
  flex-shrink: 0 !important;
  align-items: center;
  justify-content: center;
}
.hero-badge-img {
  display: block !important;
  width: 100% !important;
  max-width: 340px !important;
  height: auto !important;
  filter: drop-shadow(0 12px 32px rgba(11, 62, 133, 0.4));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-badge-img:hover { transform: scale(1.04) rotate(-2deg); }

/* hero-wrap이 좁아져도 배지가 줄지 않게 */
.hero-dynamic .hero-wrap { gap: 32px; flex-wrap: wrap; }

/* 모바일 — 세로 정렬 + 적절한 크기 */
@media (max-width: 980px) {
  .hero-dynamic .hero-wrap { flex-direction: column; align-items: center; text-align: center; }
  .hero-dynamic .hero-badge { width: 260px !important; max-width: 80vw !important; margin-top: 24px; }
  .hero-badge-img { max-width: 260px !important; }
}
@media (max-width: 480px) {
  .hero-dynamic .hero-badge { width: 200px !important; }
  .hero-badge-img { max-width: 200px !important; }
}

/* ============================================================
   메인 배너 — 배지 강제 표시 (absolute 고정 + fade-in 우회)
   ============================================================ */
.hero-badge-fixed {
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  z-index: 5;
  width: 340px;
  max-width: 32vw;
  pointer-events: auto;
}
.hero-badge-fixed img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-badge-fixed img:hover { transform: scale(1.04) rotate(-2deg); }

@keyframes badgeFloatNew {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* hero-inner는 좌측 절반만 차지하도록 (배지 공간 확보) */
.hero-dynamic .hero-wrap { position: relative; }
.hero-dynamic .hero-inner { max-width: 60%; }

/* 모바일 — 배지를 텍스트 아래로 (absolute 해제, 가운데 정렬) */
@media (max-width: 980px) {
  .hero-dynamic .hero-inner { max-width: 100%; text-align: center; }
  .hero-badge-fixed {
    position: static;
    transform: none;
    margin: 32px auto 0;
    width: 240px;
    max-width: 80vw;
    display: block;
  }
}
@media (max-width: 480px) {
  .hero-badge-fixed { width: 200px; }
}
