/* ═══════════════════════════════════════════
   SYDNEY ELITE CAMP — style.css
   Mobile-first responsive design
   Noto Sans KR | Navy + Red/Orange + Gold
═══════════════════════════════════════════ */

/* ── CSS 변수 — 호주 국가색 (그린 + 골드) ── */
:root {
  --navy:        #006B3C;   /* Australian green */
  --navy-dark:   #004A28;   /* dark green */
  --navy-light:  #00A050;   /* bright green */
  --red:         #C8102E;   /* accent red */
  --orange:      #F07030;
  --gold:        #C9910B;
  --gold-light:  #FFB81C;   /* Australian gold */
  --kakao:       #FEE500;
  --kakao-dark:  #3C1E1E;

  --text-dark:   #1A2E1A;
  --text-mid:    #3A4A3A;
  --text-light:  #5A6A5A;
  --text-mute:   #8A9A8A;

  --bg-white:    #FFFFFF;
  --bg-light:    #F0F7F3;   /* light green tint */
  --bg-gold:     #FFFBF0;   /* light gold tint */
  --bg-navy:     #003A20;   /* dark green bg */

  --border:      #C8E0D0;
  --shadow-sm:   0 2px 8px rgba(0,80,30,0.08);
  --shadow-md:   0 6px 24px rgba(0,80,30,0.14);
  --shadow-lg:   0 12px 48px rgba(0,80,30,0.18);

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   24px;

  --container:   1100px;
  --gap:         24px;

  --transition:  0.25s ease;
}

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── 컨테이너 ─────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 760px; }

/* ── 섹션 기본 ────────────────────────────── */
.section { padding: 72px 0; }
.section--gray { background: var(--bg-light); }
.section--navy { background: var(--navy-dark); }
.section--cta  { position: relative; overflow: hidden; }

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-light);
  background: rgba(43,91,168,0.1);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.section-tag--light {
  color: var(--gold-light);
  background: rgba(245,200,66,0.15);
}

.section-title {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title--light { color: #fff; }
.section-title em { color: var(--red); font-style: normal; }

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 48px;
  line-height: 1.8;
}
.section-sub--light { color: rgba(255,255,255,0.8); }

/* ── 이미지 플레이스홀더 ───────────────────── */
.img-ph {
  background: linear-gradient(135deg, #00A050 0%, #004A28 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  text-align: center;
  padding: 24px;
  min-height: 220px;
  position: relative;
}
.img-ph--sm   { min-height: 40px; width: 100px; border-radius: var(--radius-sm); }
.img-ph--hero { min-height: 100vh; border-radius: 0; }
.img-ph--wide { min-height: 340px; width: 100%; margin-bottom: 48px; }
.img-ph--gallery { min-height: 180px; }
.img-ph--badge { min-height: 80px; width: 100px; border-radius: var(--radius-sm); font-size: 0.75rem; }
.img-ph--badge-sm { min-height: 70px; width: 80px; font-size: 0.7rem; }
.img-ph--cta { position: absolute; inset: 0; z-index: 0; border-radius: 0; min-height: 100%; }

.img-ph__label {
  font-size: 0.78rem;
  line-height: 1.5;
  opacity: 0.9;
  border: 1px dashed rgba(255,255,255,0.4);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

/* ── 버튼 ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--kakao {
  background: var(--kakao);
  color: var(--kakao-dark);
  box-shadow: var(--shadow-md);
}
.btn--kakao:hover { background: #f0d800; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.25); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: #fff; }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.15); }

.btn--submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
  padding: 16px;
  border-radius: var(--radius);
}
.btn--submit:hover { background: var(--navy-light); transform: translateY(-1px); }

.btn--lg { padding: 18px 40px; font-size: 1.05rem; }

.text-link { color: var(--navy-light); font-weight: 600; }
.text-link:hover { text-decoration: underline; }

/* ── 배지 ─────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}
.badge--gold  { background: rgba(201,145,11,0.15); color: #8A6000; border: 1px solid rgba(201,145,11,0.35); }
.badge--blue  { background: rgba(0,107,60,0.10); color: var(--navy-dark); border: 1px solid rgba(0,107,60,0.25); }

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-img {
  min-height: 36px !important;
  padding: 4px 10px !important;
  font-size: 0.7rem !important;
  line-height: 1.3;
  text-align: center;
  border-radius: var(--radius-sm) !important;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 500;
}
.nav__links a { color: var(--text-mid); transition: color var(--transition); }
.nav__links a:hover { color: var(--navy); }
.nav__cta-btn {
  background: var(--navy);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 100px;
}
.nav__cta-btn:hover { background: var(--navy-light) !important; }

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 모바일 메뉴 열림 */
.nav__links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px;
  gap: 16px;
  box-shadow: var(--shadow-md);
}

/* ══════════════════════════════════════════════
   HERO — 풀스크린 배경 사진
══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
  background: #004A28;
}

/* 배경 장식 없음 (사진 배경 사용) */

/* 배경 이미지 활성화 */
.hero__bg { display: block; position: absolute; inset: 0; z-index: 0; }
.hero__overlay {
  display: block;
  position: absolute;
  inset: 0;
  /* 하단으로 갈수록 살짝 더 어둡게 — 텍스트 가독성 확보하면서 사진도 선명히 */
  background: linear-gradient(to bottom, rgba(0,20,8,0.38) 0%, rgba(0,20,8,0.52) 100%);
}
/* Hero 배지 — 어두운 배경에서 흰색으로 */
.hero .badge--blue {
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.30);
}
.hero .badge--gold {
  color: var(--gold-light);
  background: rgba(201,145,11,0.18);
  border-color: rgba(255,184,28,0.45);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 20px;
}
.hero__title em { color: var(--gold-light); font-style: normal; }

.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.90);
  margin-bottom: 28px;
  line-height: 1.8;
}

.hero__reasons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.hero__reasons li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.92);
  font-size: 0.93rem;
  background: rgba(0,50,25,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  backdrop-filter: blur(4px);
}
.hero__reasons .icon { font-size: 1.1rem; flex-shrink: 0; }

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.hero__micro {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* 히어로 사진 — 모바일 숨김 */
.hero__photo {
  display: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(0,107,60,0.15);
}
.hero__photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr 1fr !important;
  }
  .hero__photo {
    display: block;
  }
  .hero {
    min-height: 92vh;
  }
}

/* 날짜 박스 */
.hero__date-box {
  background: rgba(255,184,28,0.12);
  border: 1px solid rgba(255,184,28,0.35);
  border-left: 4px solid var(--gold-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
}
.hero__micro { color: rgba(255,255,255,0.6); }

/* ghost 버튼 — 밝은 배경용 */
.btn--ghost-dark {
  background: rgba(0,107,60,0.08);
  color: var(--navy-dark);
  border: 2px solid rgba(0,107,60,0.35);
}
.btn--ghost-dark:hover {
  background: rgba(0,107,60,0.15);
  border-color: var(--navy);
}

/* ══════════════════════════════════════════════
   PROBLEM
══════════════════════════════════════════════ */
.problem__grid {
  display: grid;
  gap: 24px;
}

.problem__bad,
.problem__want {
  padding: 28px;
  border-radius: var(--radius);
}

.problem__bad {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}
.problem__bad-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #DC2626;
  margin-bottom: 16px;
}
.problem__list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(220,38,38,0.1);
  font-size: 0.92rem;
  color: var(--text-mid);
}
.problem__list li:last-child { border: none; }

.problem__want {
  background: linear-gradient(135deg, #EEF4FF, #E8F5E8);
  border: 1px solid #BFDBFE;
}
.problem__want-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.problem__checklist li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(43,91,168,0.1);
}
.problem__checklist li::before {
  content: '✅';
  position: absolute;
  left: 0;
}
.problem__checklist li:last-child { border: none; }

.problem__promise {
  margin-top: 18px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(27,58,107,0.08);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--navy);
}

/* ══════════════════════════════════════════════
   SOLUTION
══════════════════════════════════════════════ */
.solution__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.info-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.info-card__icon { font-size: 1.8rem; margin-bottom: 8px; }
.info-card__label { font-size: 0.75rem; color: var(--text-mute); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.info-card__value { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); line-height: 1.5; }

.transform-bar {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.transform-step {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.transform-step:last-child { border: none; }
.transform-step--mid { background: rgba(43,91,168,0.05); }
.transform-step--after { background: linear-gradient(135deg, rgba(43,91,168,0.08), rgba(27,58,107,0.05)); }

.transform-step__phase {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy-light);
  margin-bottom: 6px;
}
.transform-step__text { font-size: 0.95rem; color: var(--text-mid); }

.transform-arrow {
  display: none;
  font-size: 1.5rem;
  color: var(--navy-light);
  padding: 0 16px;
  align-self: center;
}

/* ══════════════════════════════════════════════
   EDGE
══════════════════════════════════════════════ */
.edge__grid {
  display: grid;
  gap: 24px;
}

.edge-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.edge-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.edge-card__img { min-height: 200px; border-radius: 0; }

.edge-card__body { padding: 28px; }
.edge-card__icon { font-size: 2rem; margin-bottom: 12px; }
.edge-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.edge-card__body p {
  font-size: 0.93rem;
  color: var(--text-mid);
  margin-bottom: 10px;
  line-height: 1.75;
}
.edge-card__quote {
  font-size: 0.88rem;
  color: var(--navy-light);
  border-left: 3px solid var(--navy-light);
  padding-left: 14px;
  font-style: italic;
  margin-top: 14px;
}
.edge-card__badge {
  margin-top: 16px;
  display: inline-flex;
}

/* ══════════════════════════════════════════════
   PROOF
══════════════════════════════════════════════ */
.testimonials {
  display: grid;
  gap: 20px;
  margin-bottom: 48px;
}

.testimonial {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(4px);
}
.testimonial__stars { color: var(--gold-light); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial__text {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin-bottom: 16px;
}
.testimonial__author {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 28px 20px;
}
.stat { text-align: center; }
.stat__num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__num span { font-size: 1.4rem; }
.stat__label { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

.proof__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* ══════════════════════════════════════════════
   SCHEDULE
══════════════════════════════════════════════ */
.schedule__layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}
.schedule-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
}
.schedule-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  vertical-align: top;
}
.schedule-table tr:last-child td { border: none; }
.schedule-table tr.highlight td { background: rgba(43,91,168,0.06); font-weight: 500; }
.schedule-table td:first-child {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  min-width: 80px;
}

.schedule__weeks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.week-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.week-card--accent { border-left-color: var(--navy); }
.week-card__num {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-light);
  margin-bottom: 4px;
}
.week-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.week-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }

/* ══════════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════════ */
.accordion { margin-bottom: 36px; }

.accordion__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg-white);
}

.accordion__q {
  width: 100%;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 18px 52px 18px 20px;
  position: relative;
  transition: background var(--transition);
  line-height: 1.5;
}
.accordion__q:hover { background: var(--bg-light); }
.accordion__q::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--navy-light);
  transition: transform var(--transition);
  font-weight: 300;
}
.accordion__item.open .accordion__q { background: var(--bg-light); color: var(--navy); }
.accordion__item.open .accordion__q::after { transform: translateY(-50%) rotate(45deg); }

.accordion__a {
  display: none;
  padding: 0 20px 20px;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  background: var(--bg-light);
}
.accordion__item.open .accordion__a { display: block; }

.faq__more { text-align: center; margin-top: 8px; }

/* ══════════════════════════════════════════════
   CONTACT / CTA
══════════════════════════════════════════════ */
.contact {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}
.contact__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(15,34,64,0.92) 0%, rgba(27,58,107,0.88) 100%);
}
.contact__content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
}
.contact__buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 48px;
}

.inquiry-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  max-width: 560px;
}
.inquiry-form__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.form__row { display: grid; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form__group label { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); }

.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form__group select option { background: var(--navy-dark); color: #fff; }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--gold-light);
}
.optional { font-weight: 400; color: rgba(255,255,255,0.5); }

.form__privacy { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-align: center; margin-top: 12px; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0 32px;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}
.footer__logo {
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
}
.footer__logo span { font-size: 0.8rem; font-weight: 400; color: rgba(255,255,255,0.5); }
.footer__tagline { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 6px; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: #fff; }

.footer__badges { display: flex; align-items: flex-start; gap: 14px; }
.footer__badge-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.9;
}
.footer__copy { margin-top: 8px; color: rgba(255,255,255,0.3) !important; }

/* ══════════════════════════════════════════════
   STICKY MOBILE CTA
══════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(15,34,64,0.97);
  border-top: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  transform: translateY(100%);
  transition: transform var(--transition);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1; font-size: 0.88rem; padding: 12px 16px; }

/* ══════════════════════════════════════════════
   FAQ PAGE — 확장 스타일
══════════════════════════════════════════════ */
.faq-page { padding-top: 64px; }
.faq-page__hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 60px 0 50px;
  text-align: center;
}
.faq-category { margin-bottom: 48px; }
.faq-category__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  padding: 12px 20px;
  background: rgba(43,91,168,0.08);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 16px;
}
.faq-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  background: rgba(43,91,168,0.1);
  color: var(--navy-light);
  margin-top: 10px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Tablet 768px+
══════════════════════════════════════════════ */
@media (min-width: 768px) {
  .section { padding: 96px 0; }
  .section-title { font-size: 2.4rem; }

  .nav__links { display: flex; }
  .nav__burger { display: none; }

  .hero__title { font-size: 3.2rem; }
  .hero__ctas { flex-direction: row; }
  .hero__reasons { gap: 14px; }

  .problem__grid { grid-template-columns: 1fr 1fr; }

  .solution__cards { grid-template-columns: repeat(3, 1fr); }

  .transform-bar {
    flex-direction: row;
    align-items: stretch;
  }
  .transform-step { flex: 1; border-bottom: none; border-right: 1px solid var(--border); }
  .transform-step:last-child { border: none; }
  .transform-arrow { display: flex; }

  .edge__grid { grid-template-columns: repeat(2, 1fr); }
  .edge-card--wide { grid-column: 1 / -1; }
  .edge-card--wide .edge-card__img { height: 300px; }
  .edge-card--wide { display: grid; grid-template-columns: 1fr 1fr; }
  .edge-card--wide .edge-card__img { min-height: 100%; }

  .testimonials { grid-template-columns: repeat(3, 1fr); }

  .proof__gallery { grid-template-columns: repeat(4, 1fr); }

  .schedule__layout { flex-direction: row; align-items: flex-start; }
  .schedule__table-wrap { flex: 1.2; }
  .schedule__weeks { flex: 1; }

  .form__row { grid-template-columns: 1fr 1fr; }

  .footer__top { flex-direction: row; justify-content: space-between; }
  .footer__top > * { flex: 1; }

  .sticky-cta { display: none; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Desktop 1024px+
══════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hero__title { font-size: 3.8rem; }
  .hero__content { max-width: 700px; }
  .solution__cards { grid-template-columns: repeat(6, 1fr); }
  .contact__content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .contact__buttons { margin-bottom: 0; }
}

/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   URGENCY BANNER
══════════════════════════════════════════════ */
.urgency-banner {
  background: linear-gradient(90deg, #C8102E 0%, #E83020 50%, #C8102E 100%);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  position: relative;
  z-index: 1000;
}
.urgency-banner a { color: #FFB81C; text-decoration: underline; }
.urgency-banner .u-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.urgency-banner .u-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.urgency-banner .u-num {
  background: #FFB81C;
  color: #1A2E1A;
  border-radius: 4px;
  padding: 1px 8px;
  font-weight: 900;
}

/* ══════════════════════════════════════════════
   JENNY 원장 섹션
══════════════════════════════════════════════ */
.jenny { background: var(--bg-gold); }
.jenny__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.jenny__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--gold-light);
  box-shadow: 0 8px 32px rgba(0,107,60,0.25), 0 2px 8px rgba(0,0,0,0.15);
  flex-shrink: 0;
  display: block;
}
.jenny__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.jenny__cred {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(0,107,60,0.1);
  color: var(--navy);
  border: 1px solid rgba(0,107,60,0.2);
  padding: 5px 12px;
  border-radius: 100px;
}
.jenny__quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy-dark);
  border-left: 4px solid var(--gold-light);
  padding: 12px 20px;
  background: rgba(255,184,28,0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 16px;
  line-height: 1.8;
}

/* ══════════════════════════════════════════════
   PARENT PROGRAM 섹션
══════════════════════════════════════════════ */
.parent-prog { background: linear-gradient(135deg, #F0F7F3 0%, var(--bg-gold) 100%); }
.parent-prog__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  color: #1A2E1A;
  font-weight: 900;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.parent-prog__grid {
  display: grid;
  gap: 20px;
}
.parent-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.parent-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.parent-card--child { border-color: var(--navy); }
.parent-card--parent { border-color: var(--gold-light); }
.parent-card__tag {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  display: inline-block;
}
.parent-card--child .parent-card__tag { background: rgba(0,107,60,0.1); color: var(--navy); }
.parent-card--parent .parent-card__tag { background: rgba(255,184,28,0.2); color: #8A6000; }
.parent-card__title { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.parent-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.parent-card ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}
.parent-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--navy); font-weight: 700; }
.parent-card--parent ul li::before { color: #C9910B; }
.parent-prog__note {
  background: rgba(0,107,60,0.06);
  border: 1px solid rgba(0,107,60,0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 24px;
}

/* ══════════════════════════════════════════════
   REAL IMAGES
══════════════════════════════════════════════ */
.real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-wrapper {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.img-wrapper--hero {
  position: absolute;
  inset: 0;
  border-radius: 0;
}
.img-wrapper--hero .real-img { width: 100%; height: 100%; object-fit: cover; }

/* gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ══════════════════════════════════════════════
   ZOOM / INFO SESSION NOTICE
══════════════════════════════════════════════ */
.zoom-notice {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.zoom-notice__icon { font-size: 2.2rem; flex-shrink: 0; }
.zoom-notice__text { flex: 1; min-width: 200px; }
.zoom-notice__title { font-weight: 900; font-size: 1rem; margin-bottom: 4px; }
.zoom-notice__sub { font-size: 0.85rem; opacity: 0.85; }
.zoom-notice a.btn { flex-shrink: 0; }

/* ══════════════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════════════ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 32px;
}
.compare-table th {
  padding: 14px 16px;
  font-weight: 800;
  text-align: center;
}
.compare-table th:first-child { background: #f0f0f0; color: var(--text-mid); text-align: left; }
.compare-table th:nth-child(2) { background: #ffeaea; color: #C8102E; }
.compare-table th:last-child { background: var(--navy-dark); color: var(--gold-light); }
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  vertical-align: top;
}
.compare-table td:first-child { font-weight: 600; color: var(--text-dark); }
.compare-table td:nth-child(2) { color: #999; }
.compare-table td:last-child { color: var(--navy); font-weight: 700; }
.compare-table tr:last-child td { border: none; }
.compare-table tr:hover td { background: rgba(0,107,60,0.03); }

/* ══════════════════════════════════════════════
   SOCIAL LINKS
══════════════════════════════════════════════ */
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  transition: all var(--transition);
}
.social-link--insta { background: linear-gradient(45deg, #E1306C, #833AB4); color: #fff; }
.social-link--blog  { background: #03C75A; color: #fff; }
.social-link--kakao { background: var(--kakao); color: var(--kakao-dark); }
.social-link:hover  { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ══════════════════════════════════════════════
   VIDEO EMBED
══════════════════════════════════════════════ */
.video-section { background: var(--bg-light); }
.video-grid {
  display: grid;
  gap: 20px;
}
.video-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.video-card video {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}
.video-card__caption {
  padding: 14px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════════
   포스트잇 포토월
══════════════════════════════════════════════ */
.photo-wall-section {
  background: var(--bg-light);
  padding: 48px 0 20px;
}
.photo-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding: 8px 20px 8px;
}
.photo-note {
  background: #fff;
  padding: 10px 10px 38px;
  box-shadow: 3px 6px 18px rgba(0,0,0,0.15), 0 1px 4px rgba(0,0,0,0.08);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.photo-note:hover {
  transform: rotate(0deg) scale(1.09);
  box-shadow: 8px 14px 36px rgba(0,0,0,0.22);
  z-index: 20;
}
.photo-note img {
  width: 170px;
  height: 140px;
  object-fit: cover;
  display: block;
}
.photo-note__caption {
  font-size: 0.72rem;
  text-align: center;
  color: #555;
  margin-top: 8px;
  line-height: 1.5;
  padding: 0 4px;
}
/* 붙임핀 효과 */
.photo-note::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  z-index: 2;
}
/* 색상 테이프 위 */
.photo-note--tape::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 16px;
  background: rgba(255,200,50,0.55);
  border-radius: 2px;
  z-index: 3;
}

/* ══════════════════════════════════════════════
   2026 RESPONSIVE ADDITIONS
══════════════════════════════════════════════ */
@media (min-width: 768px) {
  .jenny__layout { flex-direction: row; align-items: flex-start; }
  .parent-prog__grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid img { height: 220px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .parent-prog__grid { grid-template-columns: 1fr 1fr; }
  .compare-table { font-size: 0.92rem; }
}

/* ═══ 기수 캘린더 (season.js) ═══ */
.season-cal {
  background: #fff;
  border: 1px solid rgba(0, 74, 40, 0.15);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.season-cal__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 74, 40, 0.12);
  flex-wrap: wrap;
}
.season-cal__row:last-child { border-bottom: none; }
.season-cal__year {
  font-weight: 900;
  color: var(--navy);
  font-size: 0.92rem;
  min-width: 86px;
}
.season-cal__date {
  font-size: 0.88rem;
  color: var(--text-mid);
  flex: 1;
}
.season-cal__status {
  font-size: 0.74rem;
  font-weight: 800;
  background: rgba(0, 107, 60, 0.1);
  color: var(--navy);
  padding: 3px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

/* 긴급 배너 — JS가 채우기 전 빈 상태 대비 */
.urgency-banner:empty { display: none; }
