/* ===== 입학안내 페이지 스타일 ===== */

/* 히어로 섹션 */
.admission-main .page-hero {
  background: linear-gradient(135deg, #f8f9fc 0%, #e8ecf4 100%);
  padding: 60px 0;
  text-align: center;
}

.admission-main .hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.admission-main .hero-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.admission-main .hero-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.admission-main .hero-subtitle {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

/* 섹션 공통 */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

/* 입학 기준 섹션 */
.criteria-section {
  padding: 60px 0;
  background: #fff;
}

.grade-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grade-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.grade-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.grade-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.grade-pass .grade-badge {
  background: #dcfce7;
  color: #166534;
}

.grade-consult .grade-badge {
  background: #fef3c7;
  color: #92400e;
}

.grade-fail .grade-badge {
  background: #f3f4f6;
  color: #6b7280;
}

.grade-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.status-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-icon svg {
  width: 28px;
  height: 28px;
}

.grade-pass .status-icon svg {
  fill: #22c55e;
}

.grade-consult .status-icon svg {
  fill: #f59e0b;
}

.grade-fail .status-icon svg {
  fill: #9ca3af;
}

.status-text {
  font-size: 18px;
  font-weight: 700;
}

.grade-pass .status-text {
  color: #166534;
}

.grade-consult .status-text {
  color: #92400e;
}

.grade-fail .status-text {
  color: #6b7280;
}

.grade-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* 입학 절차 섹션 */
.process-section {
  padding: 60px 0;
  background: #f8f9fc;
}

.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-content {
  flex: 1;
  background: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* 설명회 혜택 배너 */
.benefit-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.benefit-content {
  display: flex;
  align-items: center;
  gap: 32px;
  color: white;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 48px;
  height: 48px;
  fill: white;
}

.benefit-text {
  flex: 1;
}

.benefit-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  margin-bottom: 8px;
}

.benefit-list li:last-child {
  margin-bottom: 0;
}

.benefit-list svg {
  width: 20px;
  height: 20px;
  fill: #fef08a;
  flex-shrink: 0;
}

.benefit-btn {
  display: inline-block;
  background: white;
  color: var(--primary-color);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.benefit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* 문의 방법 섹션 */
.contact-section {
  padding: 60px 0;
  background: #fff;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.contact-icon.kakao {
  background: #fee500;
}

.contact-icon.kakao svg {
  fill: #3c1e1e;
}

.contact-icon.naver {
  background: #03c75a;
}

.contact-icon.phone {
  background: var(--primary-color);
}

.contact-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.contact-desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.contact-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.contact-btn.kakao-btn {
  background: #fee500;
  color: #3c1e1e;
}

.contact-btn.naver-btn {
  background: #03c75a;
  color: white;
}

.contact-btn.phone-btn {
  background: var(--primary-color);
  color: white;
}

/* 반응형 */
@media (max-width: 768px) {
  .admission-main .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .grade-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .grade-card {
    padding: 24px 20px;
  }

  .process-timeline::before {
    left: 20px;
  }

  .step-number {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .step-content {
    padding: 16px 20px;
  }

  .step-title {
    font-size: 16px;
  }

  .benefit-content {
    flex-direction: column;
    text-align: center;
  }

  .benefit-icon {
    width: 64px;
    height: 64px;
  }

  .benefit-icon svg {
    width: 36px;
    height: 36px;
  }

  .benefit-title {
    font-size: 20px;
  }

  .benefit-list li {
    justify-content: center;
    font-size: 14px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .admission-main .page-hero {
    padding: 40px 0;
  }

  .admission-main .hero-title {
    font-size: 24px;
  }

  .criteria-section,
  .process-section,
  .benefit-banner,
  .contact-section {
    padding: 40px 0;
  }

  .process-step {
    gap: 16px;
  }
}
