/* ===================================
   라이브라인업아카데미 — LLA
   로고 컬러 팔레트 기반 리디자인
   
   컬러 팔레트:
   - 코랄레드:   #F0505A (L 글자)
   - 퍼플:       #8270C9 (중간/ACADEMY 강조)
   - 다크네이비:  #1C2D4F (A 글자, 메인텍스트)
   - 배경:        #EDEDF5 (쿨톤 라벤더 오프화이트)
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;600;700;800;900&display=swap');

:root {
  /* ── 브랜드 컬러 ── */
  --red:          #F0505A;   /* 로고 L */
  --red-light:    #F57880;
  --red-dark:     #D93F49;

  --purple:       #8270C9;   /* 로고 중간·ACADEMY 강조 */
  --purple-light: #A090D8;
  --purple-dark:  #6B5CB0;

  --navy:         #1C2D4F;   /* 로고 A·메인텍스트 */
  --navy-mid:     #283A60;
  --navy-light:   #3A5080;

  /* ── 배경 ── */
  --bg-page:      #EDEDF5;   /* 시안 배경: 쿨톤 라벤더 오프화이트 */
  --bg-white:     #FFFFFF;
  --bg-card:      #F6F6FC;
  --bg-dark:      #1C2D4F;   /* 네이비 다크 섹션 */
  --bg-dark2:     #16233D;

  /* ── 텍스트 ── */
  --text-dark:    #1E2548;
  --text-mid:     #555566;
  --text-light:   #9090A8;
  --text-white:   #FFFFFF;

  /* ── 그라데이션 ── */
  --grad-hero:     linear-gradient(135deg, #F8F8FF 0%, #EDEDF5 50%, #E8E6F8 100%);
  --grad-primary:  linear-gradient(135deg, #F0505A 0%, #8270C9 100%);
  --grad-red:      linear-gradient(135deg, #F0505A 0%, #F57880 100%);
  --grad-purple:   linear-gradient(135deg, #8270C9 0%, #A090D8 100%);
  --grad-navy:     linear-gradient(135deg, #1C2D4F 0%, #283A60 100%);
  --grad-cta:      linear-gradient(135deg, #8270C9 0%, #6B5CB0 100%);
  --grad-dark:     linear-gradient(135deg, #1C2D4F 0%, #16233D 100%);

  /* ── 그림자 ── */
  --shadow-sm:    0 4px 15px rgba(130, 112, 201, 0.12);
  --shadow-md:    0 8px 30px rgba(130, 112, 201, 0.18);
  --shadow-lg:    0 20px 60px rgba(28, 45, 79, 0.15);
  --shadow-card:  0 10px 40px rgba(28, 45, 79, 0.08);
  --shadow-red:   0 8px 25px rgba(240, 80, 90, 0.30);
  --shadow-purple:0 8px 25px rgba(130, 112, 201, 0.35);

  /* ── 폰트 ── */
  --font-ko:   'Noto Sans KR', sans-serif;
  --font-en:   'Montserrat', sans-serif;

  /* ── 전환 ── */
  --tr:        all 0.3s ease;
  --tr-slow:   all 0.5s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-ko);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--tr); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(130, 112, 201, 0.08);
  padding: 0.38rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-title em { font-style: normal; color: var(--purple); }
.section-title .red { font-style: normal; color: var(--red); }
.section-desc { font-size: 1.02rem; color: var(--text-mid); line-height: 1.8; max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--tr);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  font-family: var(--font-ko);
}
.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(130,112,201,0.45); }

.btn-red {
  background: var(--grad-red);
  color: white;
  box-shadow: var(--shadow-red);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(240,80,90,0.45); }

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline:hover { background: var(--purple); color: white; transform: translateY(-2px); }

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline-red:hover { background: var(--red); color: white; transform: translateY(-2px); }

.btn-white {
  background: white;
  color: var(--purple);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); }

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(130,112,201,0.1);
  transition: var(--tr);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(28,45,79,0.08); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.nav-logo { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.3rem 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--purple);
  transition: var(--tr);
}
.nav-links a:hover { color: var(--purple); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.nav-mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border: none;
  background: none;
}
.nav-mobile-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--tr);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 70%; height: 150%;
  background: radial-gradient(ellipse, rgba(130,112,201,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse, rgba(240,80,90,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1.5px solid rgba(130,112,201,0.2);
  border-radius: 100px;
  padding: 0.48rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.22;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.hero-title .hl-red { color: var(--red); }
.hero-title .hl-purple { color: var(--purple); }

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-subtitle strong { color: var(--text-dark); font-weight: 700; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(130,112,201,0.15);
}
.hero-stat-num {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* ── 히어로 비주얼 ── */
.hero-visual { position: relative; }

.hero-card-main {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 30px 80px rgba(28,45,79,0.12);
  position: relative;
  z-index: 2;
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #EDEDF5;
}
.hero-card-icon {
  width: 56px; height: 56px;
  background: var(--grad-primary);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.hero-card-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); }
.hero-card-sub { font-size: 0.8rem; color: var(--text-light); margin-top: 0.2rem; }

.hero-modules { display: flex; flex-direction: column; gap: 0.8rem; }
.hero-module {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: var(--bg-card);
  border-radius: 12px;
  transition: var(--tr);
}
.hero-module:hover {
  background: rgba(130,112,201,0.06);
  transform: translateX(4px);
}
.hero-module-icon { font-size: 1.2rem; flex-shrink: 0; }
.hero-module-text { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); flex: 1; }
.hero-module-tag {
  font-size: 0.72rem; font-weight: 600;
  color: var(--purple);
  background: rgba(130,112,201,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

/* 플로팅 카드 */
.hero-float-1 {
  position: absolute;
  top: -20px; right: -30px;
  background: white;
  border-radius: 16px;
  padding: 1rem 1.3rem;
  box-shadow: 0 15px 40px rgba(28,45,79,0.1);
  z-index: 3;
  display: flex; align-items: center; gap: 0.8rem;
  animation: float1 3s ease-in-out infinite;
}
.hero-float-2 {
  position: absolute;
  bottom: -20px; left: -30px;
  background: var(--grad-primary);
  border-radius: 16px;
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-purple);
  z-index: 3;
  display: flex; align-items: center; gap: 0.8rem;
  animation: float2 3.5s ease-in-out infinite;
}
.hero-float-2 * { color: white !important; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
.float-label { font-size: 0.73rem; font-weight: 500; color: var(--text-light); }
.float-value { font-family: var(--font-en); font-size: 1.1rem; font-weight: 800; color: var(--text-dark); line-height: 1.2; }

/* ===== SECTION 공통 ===== */
section { padding: 100px 0; }
.section-head { margin-bottom: 4rem; }

/* ===== FEATURES ===== */
.features { background: var(--bg-white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.feature-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--tr);
  border: 1px solid rgba(130,112,201,0.08);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: var(--tr);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  background: white;
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.4rem;
}
.feature-icon.red   { background: rgba(240,80,90,0.1); }
.feature-icon.purple{ background: rgba(130,112,201,0.12); }
.feature-icon.navy  { background: rgba(28,45,79,0.08); }

.feature-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.7rem; color: var(--text-dark); }
.feature-desc  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }

/* ===== CURRICULUM ===== */
.curriculum { background: var(--bg-page); }

.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.curriculum-list { display: flex; flex-direction: column; gap: 0.9rem; }
.curriculum-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--tr);
  border: 2px solid transparent;
}
.curriculum-item:hover,
.curriculum-item.active {
  border-color: var(--purple);
  box-shadow: 0 8px 25px rgba(130,112,201,0.12);
  transform: translateX(4px);
}

.curriculum-week {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: rgba(130,112,201,0.08);
  border-radius: 12px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: var(--tr);
}
.curriculum-item.active .curriculum-week,
.curriculum-item:hover .curriculum-week {
  background: var(--grad-primary);
}
.week-num {
  font-family: var(--font-en);
  font-size: 1rem; font-weight: 800;
  color: var(--purple); line-height: 1;
  transition: var(--tr);
}
.week-label {
  font-size: 0.6rem; color: var(--text-light);
  font-weight: 600; letter-spacing: 0.05em;
  transition: var(--tr);
}
.curriculum-item.active .week-num,
.curriculum-item.active .week-label,
.curriculum-item:hover .week-num,
.curriculum-item:hover .week-label { color: white; }

.curriculum-content h4 { font-size: 0.98rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.curriculum-content p  { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; }

.curriculum-visual { position: sticky; top: 120px; }
.curriculum-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.curriculum-card-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid #EDEDF5;
}
.curriculum-card-icon {
  width: 48px; height: 48px;
  background: var(--grad-primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.curriculum-card-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); }

.curriculum-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.curriculum-tag {
  background: rgba(130,112,201,0.08);
  color: var(--purple);
  font-size: 0.8rem; font-weight: 600;
  padding: 0.32rem 0.85rem;
  border-radius: 100px;
}
.curriculum-tag.red-tag {
  background: rgba(240,80,90,0.08);
  color: var(--red);
}

.curriculum-progress { display: flex; flex-direction: column; gap: 1rem; }
.progress-item { display: flex; flex-direction: column; gap: 0.4rem; }
.progress-label {
  display: flex; justify-content: space-between;
  font-size: 0.84rem; font-weight: 600;
}
.progress-label span:last-child { color: var(--purple); }
.progress-bar {
  height: 7px;
  background: #EDEDF5;
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--grad-primary);
  border-radius: 100px;
  transition: width 0.8s ease;
}

/* ===== INSTRUCTORS ===== */
.instructors { background: var(--bg-white); }

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.instructor-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex; gap: 2rem; align-items: flex-start;
  transition: var(--tr);
  border: 1px solid rgba(130,112,201,0.07);
}
.instructor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  background: white;
}
.instructor-avatar {
  width: 88px; height: 88px;
  border-radius: 22px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
}
.instructor-avatar.av-red    { background: rgba(240,80,90,0.1); }
.instructor-avatar.av-purple { background: rgba(130,112,201,0.12); }

.instructor-role {
  display: inline-block;
  font-size: 0.73rem; font-weight: 700;
  color: var(--purple);
  background: rgba(130,112,201,0.1);
  padding: 0.22rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}
.instructor-role.red {
  color: var(--red);
  background: rgba(240,80,90,0.1);
}
.instructor-name { font-size: 1.3rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.75rem; }
.instructor-desc { font-size: 0.87rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.1rem; }
.instructor-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.instructor-tag {
  font-size: 0.77rem; font-weight: 600;
  color: var(--text-mid);
  background: white;
  padding: 0.22rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(28,45,79,0.07);
}

/* 운영사 박스 */
.ops-box {
  margin-top: 3rem;
  background: var(--bg-page);
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.ops-box-info { display: flex; flex-direction: column; gap: 0.75rem; }
.ops-box-info-item {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.87rem; color: var(--text-mid);
}

/* ===== STORIES ===== */
.stories { background: var(--bg-page); position: relative; overflow: hidden; }
.stories::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 160%;
  background: radial-gradient(ellipse, rgba(130,112,201,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stories-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.stories-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white;
  border: 1.5px solid rgba(130,112,201,0.2);
  border-radius: 100px;
  padding: 0.5rem 1.2rem;
  font-size: 0.82rem; font-weight: 700;
  color: var(--purple);
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.stories-intro-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900; color: var(--text-dark); line-height: 1.3;
  margin-bottom: 1rem;
}
.stories-intro-text h2 em { font-style: normal; color: var(--purple); }
.stories-intro-text p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; }

.stories-highlight-box {
  background: white; border-radius: 24px; padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.stories-highlight-title {
  font-size: 0.82rem; font-weight: 700; color: var(--text-light);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.stories-numbers {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
}
.stories-num-item {
  background: var(--bg-page); border-radius: 14px; padding: 1.2rem;
}
.stories-num-value {
  font-family: var(--font-en);
  font-size: 1.6rem; font-weight: 800;
  color: var(--purple); line-height: 1;
  margin-bottom: 0.3rem;
}
.stories-num-label { font-size: 0.78rem; color: var(--text-mid); font-weight: 500; }

.stories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem;
}
.story-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.story-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
}
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.story-card-top {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem;
}
.story-avatar {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.story-name { font-size: 0.98rem; font-weight: 700; color: var(--text-dark); }
.story-role { font-size: 0.78rem; color: var(--text-light); margin-top: 0.12rem; }
.story-quote {
  font-size: 0.88rem; color: var(--text-mid);
  line-height: 1.75; margin-bottom: 1.2rem;
  font-style: italic;
}
.story-quote::before { content: '"'; color: var(--red); font-size: 1.2rem; font-weight: 800; margin-right: 0.15rem; }
.story-quote::after  { content: '"'; color: var(--red); font-size: 1.2rem; font-weight: 800; margin-left:  0.15rem; }
.story-result {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: rgba(130,112,201,0.06);
  border-radius: 10px;
  font-size: 0.82rem; font-weight: 600; color: var(--purple);
}

/* ===== QUALIFICATION / PARTNERSHIP ===== */
.partnership {
  background: var(--grad-dark);
  color: white;
  position: relative; overflow: hidden;
}
.partnership::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.partnership .section-label { background: rgba(130,112,201,0.2); }
.partnership .section-title { color: white; }
.partnership .section-desc  { color: rgba(255,255,255,0.6); }

.partnership-inner {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem;
  align-items: center; position: relative; z-index: 1;
}
.partnership-logos { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 2.5rem; }
.partner-logo-item {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; transition: var(--tr);
}
.partner-logo-item:hover {
  background: rgba(130,112,201,0.18);
  border-color: rgba(130,112,201,0.35);
}
.partner-icon { font-size: 1.9rem; flex-shrink: 0; }
.partner-name { font-size: 0.98rem; font-weight: 700; color: white; }
.partner-desc { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 0.12rem; }

.qualification-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 2.5rem;
  position: relative;
}
.qualification-card::before {
  content: '';
  position: absolute; top: -1px; left: 30px; right: 30px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}
.qualification-title { font-size: 1.3rem; font-weight: 800; color: white; margin-bottom: 0.4rem; }
.qualification-sub { font-size: 0.87rem; color: rgba(255,255,255,0.45); margin-bottom: 2rem; }

.qualification-items { display: flex; flex-direction: column; gap: 1.2rem; }
.qualification-item { display: flex; gap: 1rem; align-items: flex-start; }
.qualification-check {
  width: 26px; height: 26px;
  background: var(--grad-primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0; margin-top: 0.1rem;
}
.qualification-text { font-size: 0.9rem; color: rgba(255,255,255,0.78); line-height: 1.6; }
.qualification-text strong { color: white; font-weight: 700; }

.qualification-footer {
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.qualification-status { display: flex; align-items: center; gap: 0.6rem; }
.status-dot {
  width: 9px; height: 9px;
  background: #4CAF50; border-radius: 50%;
  animation: pulseDot 2s infinite;
}
.status-text { font-size: 0.83rem; font-weight: 600; color: rgba(255,255,255,0.65); }

/* ===== CONSULTATION SECTION ===== */
.consultation {
  background: var(--bg-white);
  padding: 100px 0;
}
.consultation-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.consultation-info {}
.consultation-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.consultation-info h2 em { font-style: normal; color: var(--purple); }
.consultation-info p {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.consultation-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--bg-page);
  border-radius: 14px;
}
.c-step-num {
  width: 32px; height: 32px;
  background: var(--grad-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-size: 0.85rem; font-weight: 800;
  color: white; flex-shrink: 0;
}
.c-step-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
.c-step-text strong { color: var(--text-dark); font-weight: 700; }

/* ── 상담 폼 ── */
.consult-form-card {
  background: white;
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(28,45,79,0.1);
  border: 1px solid rgba(130,112,201,0.1);
}
.consult-form-title {
  font-size: 1.3rem; font-weight: 800; color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.consult-form-sub {
  font-size: 0.88rem; color: var(--text-light);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #EDEDF5;
}

.form-group { margin-bottom: 1.4rem; }
.form-label {
  display: block;
  font-size: 0.85rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.5rem;
}
.form-label .req { color: var(--red); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid #E0E0EC;
  border-radius: 12px;
  font-size: 0.92rem;
  font-family: var(--font-ko);
  color: var(--text-dark);
  background: white;
  outline: none;
  transition: var(--tr);
  appearance: none;
}
.form-control::placeholder { color: #AAAABB; }
.form-control:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(130,112,201,0.1);
}
.form-control:hover { border-color: #BBBBD0; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239090A8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.form-agree input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--purple);
  margin-top: 2px;
  cursor: pointer;
}
.form-agree-text {
  font-size: 0.83rem; color: var(--text-mid); line-height: 1.5;
}
.form-agree-text a {
  color: var(--purple);
  text-decoration: underline;
}

.form-submit-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--grad-primary);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 1rem; font-weight: 700;
  font-family: var(--font-ko);
  cursor: pointer;
  transition: var(--tr);
  box-shadow: var(--shadow-purple);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(130,112,201,0.45);
}
.form-submit-btn:active { transform: translateY(0); }
.form-submit-btn:disabled {
  opacity: 0.65; cursor: not-allowed; transform: none;
}

/* 성공 메시지 */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success-title { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-success-desc { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--grad-cta);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; color: white;
  margin-bottom: 1rem; line-height: 1.3;
}
.cta-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  max-width: 500px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.cta-actions {
  display: flex; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo { height: 38px; width: auto; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.84rem; line-height: 1.7; margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.4);
}
.footer-contact-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.81rem; margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.45);
}
.footer-col-title {
  font-size: 0.78rem; font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.87rem; color: rgba(255,255,255,0.5);
  transition: var(--tr);
}
.footer-links a:hover { color: var(--purple-light); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copyright { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-sns { display: flex; gap: 0.7rem; }
.footer-sns a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; transition: var(--tr);
}
.footer-sns a:hover { background: var(--purple); transform: translateY(-2px); }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: var(--grad-primary);
  color: white; border: none;
  border-radius: 13px; cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-purple);
  transition: var(--tr);
  opacity: 0; pointer-events: none; z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: white; z-index: 999;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.15rem; font-weight: 700;
  color: var(--text-dark);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(130,112,201,0.08);
}
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--text-dark);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .curriculum-grid { grid-template-columns: 1fr; gap: 3rem; }
  .curriculum-visual { position: static; order: -1; }
  .instructors-grid { grid-template-columns: 1fr; }
  .stories-intro { grid-template-columns: 1fr; gap: 2rem; }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .partnership-inner { grid-template-columns: 1fr; gap: 3rem; }
  .consultation-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .ops-box { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn { display: flex; }
  .hero { padding: 100px 0 60px; }
  .hero-stats { gap: 1.2rem; flex-wrap: wrap; }
  .features-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-float-1, .hero-float-2 { display: none; }
  .consult-form-card { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .stories-numbers { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}
