:root {
  --primary-blue: #0066ff;
  --primary-dark: #0a1628;
  --accent-cyan: #2de2e6;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #64748b;
  --gradient-hero: linear-gradient(180deg, #0a1628 0%, #122a4a 100%);
  --shadow-card: 0 4px 24px rgba(0, 102, 255, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 102, 255, 0.15);
  /* 브랜드 공식 컬러 */
  --ms-red: #f25022;
  --ms-green: #7fba00;
  --ms-blue: #00a4ef;
  --ms-yellow: #ffb900;
  --adobe-red: #ff0000;
  --prompt-green: #10a37f;
  --meta-blue: #0082fb;
  --unity-white: #ffffff;
  --autodesk-green: #00ae42;
  --google-blue: #4285f4;

  /* 폰트 변수 */
  --font-body: "Noto Sans KR", sans-serif;
  --font-title: "Black Han Sans", sans-serif;
  --font-english: "Montserrat", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  background: var(--gradient-hero);
  padding: 130px 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(45, 226, 230, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

/* 후킹 타이틀 */
.hook-title {
  margin-bottom: 60px;
}
.hook-badge {
  display: inline-block;
  background: rgba(45, 226, 230, 0.12);
  border: 1px solid rgba(45, 226, 230, 0.35);
  color: var(--accent-cyan);
  font-family: var(--font-english);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.hook-title h1 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400;
  color: white;
  line-height: 1.3;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hook-title h1 span {
  color: white;
}
.hook-title h1 span#typing-target {
  background: linear-gradient(90deg, #2de2e6, #0088ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hook-title p {
  font-size: 1rem;
  color: hsla(0, 0%, 100%, 0.849);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Glocal Section */
.glocal-section {
  padding: 50px 20px 40px;
}
.glocal-content {
  max-width: 1000px;
  margin: 0 auto;
}
.glocal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 35px;
}
.glocal-title span {
  font-family: var(--font-english);
  color: var(--accent-cyan);
  font-weight: 700;
}

/* Glocal 그리드 */
.glocal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  max-width: 800px;
  margin: 0 auto;
}
.glocal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.glocal-item::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  flex-shrink: 0;
}
.glocal-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 400;
}

/* Partners Banner */
.partners-banner {
  background: rgba(255, 255, 255, 0.97);
  padding: 24px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}
.partner-logo {
  height: 28px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.partner-item:hover .partner-logo {
  transform: scale(1.1);
}
.partner-desc {
  font-size: small;
  color: hsl(182, 100%, 16%);
  font-weight: 600;
}

/* Main Content */
.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.section-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.card-image-wrapper {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.card:hover .card-image {
  transform: scale(1.02);
}
.card-content {
  padding: 20px 16px;
}
.card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.4;
}
.card-badge {
  display: inline-block;
  font-family: var(--font-english);
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  margin-right: 6px;
}
.card-badge:last-of-type {
  margin-right: 0;
}
.card-badge.blue {
  background: linear-gradient(135deg, #0078d4, #00bcf2);
}
.card-badge.green {
  background: linear-gradient(135deg, #10b981, #34d399);
}
.card-badge.orange {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}
.card-badge.purple {
  background: linear-gradient(135deg, #7c4dff, #b388ff);
}
.card-badge.sky {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}
.card-badge.red {
  background: linear-gradient(135deg, #ef4444, #f87171);
}
.card-badge.yellow {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}
.card-badge.pink {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}
.card-badge.teal {
  background: linear-gradient(135deg, #14b8a6, #2dd4bf);
}
.card-badge.gray {
  background: linear-gradient(135deg, #6b7280, #9ca3af);
}
.card-badge.indigo {
  background: linear-gradient(135deg, #6366f1, #818cf8);
}
.card-badge.rose {
  background: linear-gradient(135deg, #f43f5e, #fb7185);
}
.card-badge.amber {
  background: linear-gradient(135deg, #d97706, #fbbf24);
}
.card-badge.cyan {
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
}
.card-badge.navy {
  background: linear-gradient(135deg, #1e3a5f, #3b5998);
}
.card-badge.google {
  background: linear-gradient(135deg, #4285f4, #34a853);
}
/* Card Overlay */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 12px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover .card-overlay {
  opacity: 1;
}
.click-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: white;
}
.click-hint svg {
  width: 12px;
  height: 12px;
}

/* 커리큘럼 섹션 */
.curriculum-section {
  background: var(--gradient-hero);
  padding: 80px 20px;
}
.curriculum-container {
  max-width: 1200px;
  margin: 0 auto;
}
.curriculum-header {
  text-align: center;
  margin-bottom: 50px;
}
.curriculum-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}

.curriculum-header p {
  font-size: 1rem;
  color: hsla(0, 0%, 100%, 0.849);
  max-width: 600px;
  margin: 0 auto;
}

/* 탭 버튼 */
.curriculum-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.curriculum-tab {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.curriculum-tab:hover {
  background: rgba(45, 226, 230, 0.2);
  border-color: var(--accent-cyan);
}
.curriculum-tab.active {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--primary-dark);
}
.curriculum-tab span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 4px;
}

/* 탭 콘텐츠 */
.curriculum-content {
  display: none;
}
.curriculum-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 분야 카드 */
.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.field-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}
.field-card.google-standalone {
  margin-bottom: 25px;
}
.field-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
}
.field-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.field-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.field-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}
/* 브랜드별 field-icon 배경색 */
.field-icon.ms {
  background: linear-gradient(135deg, #00a4ef, #0078d4);
}
.field-icon.adobe {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}
.field-icon.prompt {
  background: linear-gradient(135deg, #10a37f, #0d8c6d);
}
.field-icon.autodesk {
  background: linear-gradient(135deg, #00ae42, #008c35);
}
.field-icon.meta {
  background: linear-gradient(135deg, #0082fb, #0064c8);
}
.field-icon.unity {
  background: linear-gradient(135deg, #222c37, #000000);
}
.field-icon.google {
  background: linear-gradient(135deg, #4285f4, #34a853);
}

.field-card-header h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
}
.field-card-header span {
  display: block;
  color: var(--accent-cyan);
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 2px;
}

/* 과정 리스트 */
.course-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.course-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 14px 16px;
  border-left: 3px solid var(--accent-cyan);
}
.course-item h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.course-item p {
  color: #ffffffd0;
  font-size: 0.8rem;
  line-height: 1.5;
}
/* 클릭 가능한 course-item */
.course-item.clickable {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.course-item.clickable:hover {
  background: rgba(45, 226, 230, 0.1);
  transform: translateX(4px);
}
.course-item.clickable::after {
  content: "자세히 보기";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  padding-right: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(10, 22, 40, 0.85) 40%,
    rgba(10, 22, 40, 0.95) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.course-item.clickable:hover::after {
  opacity: 1;
}
/* 커리큘럼 보기 아이콘 */
.course-item.clickable::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.course-item.clickable:hover::before {
  opacity: 1;
}

/* 안내 문구 */
.curriculum-notice {
  text-align: center;
  margin-top: 20px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}
.curriculum-notice p {
  color: var(--accent-cyan);
  font-size: 0.85rem;
}

.course-badge {
  display: inline-block;
  background: rgba(45, 226, 230, 0.2);
  color: var(--accent-cyan);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  margin-right: 6px;
  margin-bottom: 6px;
}
/* 브랜드별 border 스타일 */
.course-item.ms-red {
  border-left-color: var(--ms-red);
}
.course-item.ms-green {
  border-left-color: var(--ms-green);
}
.course-item.ms-blue {
  border-left-color: var(--ms-blue);
}
.course-item.ms-yellow {
  border-left-color: var(--ms-yellow);
}
.course-item.adobe {
  border-left-color: var(--adobe-red);
}
.course-item.prompt {
  border-left-color: var(--prompt-green);
}
.course-item.meta {
  border-left-color: var(--meta-blue);
}
.course-item.unity {
  border-left-color: var(--unity-white);
}
.course-item.autodesk {
  border-left-color: var(--autodesk-green);
}
.course-item.google {
  border-left-color: var(--google-blue);
}

/* 브랜드별 badge 스타일 */
.course-badge.ms-red {
  background: rgba(242, 80, 34, 0.2);
  color: var(--ms-red);
}
.course-badge.ms-green {
  background: rgba(127, 186, 0, 0.2);
  color: var(--ms-green);
}
.course-badge.ms-blue {
  background: rgba(0, 164, 239, 0.2);
  color: var(--ms-blue);
}
.course-badge.ms-yellow {
  background: rgba(255, 185, 0, 0.2);
  color: var(--ms-yellow);
}
.course-badge.adobe {
  background: rgba(255, 0, 0, 0.2);
  color: var(--adobe-red);
}
.course-badge.prompt {
  background: rgba(16, 163, 127, 0.2);
  color: var(--prompt-green);
}
.course-badge.meta {
  background: rgba(0, 130, 251, 0.2);
  color: var(--meta-blue);
}
.course-badge.unity {
  background: rgba(255, 255, 255, 0.15);
  color: var(--unity-white);
}
.course-badge.autodesk {
  background: rgba(0, 174, 66, 0.2);
  color: var(--autodesk-green);
}
.course-badge.google {
  background: rgba(66, 133, 244, 0.2);
  color: var(--google-blue);
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-content {
  transform: scale(1);
}
.modal-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}
.modal-close {
  position: absolute;
  top: -20px;
  right: -60px;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.modal-close:hover {
  background: var(--accent-cyan);
  transform: rotate(90deg);
}
.modal-close svg {
  width: 18px;
  height: 18px;
}
.modal-title {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
  opacity: 0.9;
}

/* 커리큘럼 모달 */
.curriculum-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.curriculum-modal.active {
  opacity: 1;
  visibility: visible;
}
.curriculum-modal-content {
  background: linear-gradient(135deg, #1a2a4a 0%, #0d1a2d 100%);
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  border: 1px solid rgba(45, 226, 230, 0.3);
}
.curriculum-modal.active .curriculum-modal-content {
  transform: scale(1) translateY(0);
}
.curriculum-modal-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #1a2a4a 0%, #0d1a2d 100%);
  border-radius: 20px 20px 0 0;
  z-index: 10;
}

/* 모달 하단 닫기 버튼 */
.curriculum-modal-close-btn {
  display: block;
  width: 100%;
  padding: 16px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.curriculum-modal-close-btn:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--primary-dark);
}

.brand-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.brand-tag.ms {
  background: rgba(0, 164, 239, 0.2);
  color: var(--ms-blue);
}
.brand-tag.adobe {
  background: rgba(255, 0, 0, 0.2);
  color: var(--adobe-red);
}
.brand-tag.prompt {
  background: rgba(16, 163, 127, 0.2);
  color: var(--prompt-green);
}
.brand-tag.autodesk {
  background: rgba(0, 174, 66, 0.2);
  color: var(--autodesk-green);
}
.brand-tag.meta {
  background: rgba(0, 130, 251, 0.2);
  color: var(--meta-blue);
}
.brand-tag.unity {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.brand-tag.google {
  background: rgba(66, 133, 244, 0.2);
  color: var(--google-blue);
}

.curriculum-modal-header h2 {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.curriculum-modal-header .subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.meta-info {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.meta-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 500;
}
.curriculum-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.curriculum-modal-close:hover {
  background: var(--accent-cyan);
  color: var(--primary-dark);
  transform: rotate(90deg);
}
.curriculum-modal-body {
  padding: 24px 28px 28px;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.schedule-table th {
  background: rgba(45, 226, 230, 0.15);
  color: var(--accent-cyan);
  padding: 12px 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.schedule-table td {
  padding: 12px 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: middle;
  line-height: 1.4;
}
.schedule-table .time-col {
  color: var(--accent-cyan);
  font-weight: 500;
  white-space: nowrap;
  background: rgba(45, 226, 230, 0.05);
}
.schedule-table .highlight {
  background: rgba(45, 226, 230, 0.12);
  color: var(--accent-cyan);
  font-weight: 600;
}
.curriculum-section-title {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.curriculum-section-title::before {
  content: "";
  width: 4px;
  height: 16px;
  background: var(--accent-cyan);
  border-radius: 2px;
}
.curriculum-list {
  list-style: none;
  margin-bottom: 20px;
}
.curriculum-list li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.curriculum-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}
.curriculum-footer {
  background: rgba(45, 226, 230, 0.1);
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
}
.curriculum-footer p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  line-height: 1.6;
}
.curriculum-footer strong {
  color: var(--accent-cyan);
}
/* Footer CTA */
.footer {
  background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 50%, #0a1628 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid var(--accent-cyan);
}
.footer-title {
  color: white;
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  font-weight: 900;
  margin-bottom: 35px;
  line-height: 1.4;
}
.footer-title span {
  color: var(--accent-cyan);
  text-shadow: 0 0 30px rgba(45, 226, 230, 0.5);
}
.footer-cta {
  color: hsla(0, 0%, 100%, 0.849);
  font-weight: 500;
  margin-bottom: 28px;
}
.footer-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 226, 230, 0.1);
  border: 1px solid rgba(45, 226, 230, 0.3);
  padding: 14px 28px;
  border-radius: 30px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-item:hover {
  background: var(--accent-cyan);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 226, 230, 0.3);
}
.footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* 명함 섹션 */
.namecard-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.namecard-section img {
  max-width: 340px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.namecard-section img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(45, 226, 230, 0.2);
}

/* 페이드인 효과 */
.fade-in.white {
  color: white;
}
.fade-in {
  opacity: 0;
  animation: fadeInText 1s ease forwards;
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 타이핑 영역 숨김 (시작 전) */
#typing-target {
  opacity: 0;
}
#typing-target.show {
  opacity: 1;
}

/* 스크롤 애니메이션 */
.card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.card.visible {
  opacity: 1;
  transform: translateY(0);
}
.card:nth-child(1) {
  transition-delay: 0.1s;
}
.card:nth-child(2) {
  transition-delay: 0.15s;
}
.card:nth-child(3) {
  transition-delay: 0.2s;
}
.card:nth-child(4) {
  transition-delay: 0.25s;
}
.card:nth-child(5) {
  transition-delay: 0.3s;
}
.card:nth-child(6) {
  transition-delay: 0.35s;
}
.card:nth-child(7) {
  transition-delay: 0.4s;
}
.card:nth-child(8) {
  transition-delay: 0.45s;
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 20px 0;
  }
  .hook-title {
    margin-bottom: 45px;
  }
  .hook-badge {
    font-size: 0.75rem;
    padding: 8px 18px;
  }
  .glocal-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .partners-banner {
    gap: 30px;
    padding: 20px;
  }
  .partner-logo {
    height: 22px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .card-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .curriculum-tabs {
    flex-direction: column;
    align-items: center;
  }
  .curriculum-tab {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .footer-contact {
    flex-direction: column;
    align-items: center;
  }
  .contact-item {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
