/* ════════════════════════════════════════════════════════
   PIVOT410 외대점 · 키즈 전문반 1기 · styles.css (v2)
   톤: 화사한 파스텔 베이스 + 포인트 비비드 + 떠다니는 사진 콜라주
   레이아웃: 아이돌 페이지와 동일 5섹션
   ════════════════════════════════════════════════════════ */

:root {
  /* 베이스 — 더 화사하게 (따뜻한 크림 + 살짝 핑크빛) */
  --cream: #FFF6EC;
  --cream-warm: #FFEEDD;
  --cream-pink: #FFF0F4;
  --cream-mint: #EEFBF4;
  --ink: #1A1626;
  --ink-soft: #2E2840;
  --paper: #FFFFFF;

  /* 키즈 비비드 액센트 */
  --yellow: #FFD23D;
  --yellow-deep: #F5B800;
  --lime: #B6F03C;
  --lime-deep: #8FD400;
  --pink: #FF6FA1;
  --pink-deep: #F03D7E;
  --sky: #4FC3F7;
  --sky-deep: #1FA8E0;
  --orange: #FF9F45;
  --purple: #B57FFF;
  --purple-deep: #9B5DF0;
  --red: #FF4D6D;
  --coral: #FF8A6B;

  --text: #1A1626;
  --text-sub: rgba(26,22,38,0.62);
  --text-dim: rgba(26,22,38,0.38);

  --line: #1A1626;
  --line-soft: rgba(26,22,38,0.12);

  --shadow-sm: 3px 3px 0 var(--ink);
  --shadow-md: 5px 5px 0 var(--ink);
  --shadow-lg: 7px 7px 0 var(--ink);

  --font-sans: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-display: 'Inter', var(--font-sans);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: -0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,111,161,0.06), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(79,195,247,0.06), transparent 35%),
    radial-gradient(circle at 50% 70%, rgba(182,240,60,0.05), transparent 40%),
    radial-gradient(rgba(26,22,38,0.045) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 22px 22px;
}

img { max-width: 100%; display: block; }

/* PC에서 별 커서 쓸 때 기본 커서 숨김 */
@media (hover: hover) and (pointer: fine) {
  .star-cursor-on, .star-cursor-on * { cursor: none !important; }
}

/* ════════════════════════════════════════════════
   별 커서 (4번: 반짝이 흩뿌리기)
   ════════════════════════════════════════════════ */
.star-cursor {
  position: fixed;
  width: 34px; height: 34px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  left: -100px; top: -100px;
  transition: transform 0.12s ease-out;
}
.star-cursor.click-pulse { transform: translate(-50%, -50%) scale(1.5) rotate(40deg); }

/* ════════════════════════════════════════════════
   떠다니는 배경 도형 + 별
   ════════════════════════════════════════════════ */
.bg-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border: 2px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.bg-deco.is-circle { border-radius: 50%; }
.bg-deco.is-diamond { transform: rotate(45deg); }

.bg-deco-h1 { top: 90px; right: 4%; width: 64px; height: 64px; background: var(--yellow); transform: rotate(12deg); animation: floatY 7s ease-in-out infinite alternate; }
.bg-deco-h2 { top: 320px; left: 2%; width: 46px; height: 46px; background: var(--pink); border-radius: 50%; animation: floatX 9s ease-in-out infinite alternate; }
.bg-deco-h3 { top: 560px; right: 7%; width: 34px; height: 34px; background: var(--lime); transform: rotate(45deg); animation: spin 16s linear infinite; }
.bg-deco-s1 { top: 1400px; right: -16px; width: 70px; height: 70px; background: var(--sky); border-radius: 50%; animation: floatX 10s ease-in-out infinite alternate; }
.bg-deco-s2 { top: 1850px; left: -8px; width: 54px; height: 54px; background: var(--purple); transform: rotate(20deg); animation: floatY 9s ease-in-out infinite alternate; }
.bg-deco-a1 { top: 2750px; left: 3%; width: 46px; height: 46px; background: var(--orange); border-radius: 50%; animation: floatY 11s ease-in-out infinite alternate; }
.bg-deco-a2 { top: 3150px; right: 5%; width: 34px; height: 34px; background: var(--pink); transform: rotate(45deg); animation: spin 20s linear infinite; }
.bg-deco-f1 { top: 4050px; left: 7%; width: 42px; height: 42px; background: var(--lime); transform: rotate(-12deg); animation: floatX 8s ease-in-out infinite alternate; }
.bg-deco-f2 { top: 4450px; right: 6%; width: 52px; height: 52px; background: var(--yellow); border-radius: 50%; animation: floatY 9s ease-in-out infinite alternate; }

.bg-star {
  position: absolute; pointer-events: none; z-index: 0;
  width: 30px; height: 30px; color: var(--pink);
  animation: spin 14s linear infinite, floatY 8s ease-in-out infinite alternate;
}
.bg-star.s2 { color: var(--yellow); animation-duration: 18s, 7s; animation-direction: reverse, alternate; }
.bg-star.s3 { color: var(--lime); }
.bg-star.s4 { color: var(--sky); animation-duration: 20s, 9s; }
.bg-star.s5 { color: var(--purple); animation-duration: 16s, 6s; animation-direction: reverse, alternate; }
.bg-star-1 { top: 180px; left: 7%; }
.bg-star-2 { top: 760px; right: 11%; }
.bg-star-3 { top: 2000px; left: 9%; }
.bg-star-4 { top: 3400px; right: 8%; }
.bg-star-5 { top: 4200px; left: 12%; }

@keyframes floatY { 0% { transform: rotate(var(--rot,0deg)) translateY(0); } 100% { transform: rotate(var(--rot,0deg)) translateY(18px); } }
@keyframes floatX { 0% { transform: translateX(0) translateY(0); } 100% { transform: translateX(14px) translateY(-14px); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ════════════════════════════════════════════════
   떠다니는 키즈 사진 (호버 반응 + 클릭 확대)
   ════════════════════════════════════════════════ */
.floating-photo {
  position: absolute;
  z-index: 1;
  border: 2.5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  overflow: hidden;
  cursor: pointer;
  background: var(--paper);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, z-index 0s;
  animation: photoFloat var(--dur, 8s) ease-in-out infinite alternate;
}
.floating-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
  pointer-events: none;
}
.floating-photo:hover {
  transform: rotate(0deg) scale(1.08) !important;
  box-shadow: 9px 9px 0 var(--pink);
  z-index: 20;
  animation-play-state: paused;
}
.floating-photo:hover img { transform: scale(1.1); }
.floating-photo.zoomed {
  transform: rotate(0deg) scale(1.25) !important;
  box-shadow: 12px 12px 0 var(--lime-deep);
  z-index: 30;
  animation-play-state: paused;
}

@keyframes photoFloat {
  0%   { transform: rotate(var(--rot, 0deg)) translateY(0); }
  100% { transform: rotate(var(--rot, 0deg)) translateY(var(--floaty, 16px)); }
}

/* ════════════════════════════════════════════════
   헤더
   ════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,246,236,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header.scrolled {
  border-bottom-color: var(--ink);
  box-shadow: 0 3px 0 var(--ink);
}

/* 상단 선착순 한정 강조 띠 */
.urgent-bar {
  background: var(--pink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
}
.urgent-bar-track {
  display: inline-block;
  animation: urgentScroll 22s linear infinite;
  padding: 7px 0;
}
.ub-item {
  font-size: 12.5px; font-weight: 800; color: #fff;
  letter-spacing: -0.01em; margin: 0 6px;
}
.ub-item b { background: var(--yellow); color: var(--ink); padding: 1px 7px; font-weight: 900; border-radius: 3px; }
.ub-sep { color: var(--yellow); font-size: 11px; margin: 0 4px; }
@keyframes urgentScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 13px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--ink); }
.brand-logo { height: 40px; width: auto; filter: brightness(0); }
.brand-text { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.brand-ko { font-size: 16px; font-weight: 900; letter-spacing: -0.02em; color: var(--ink); }
.brand-branch { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; font-family: var(--font-mono); color: var(--text-sub); }
.brand-branch::before {
  content: ''; display: inline-block;
  width: 7px; height: 7px; background: var(--pink);
  margin-right: 5px; vertical-align: middle;
  border: 1.5px solid var(--ink); border-radius: 50%;
}
.header-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--yellow); color: var(--ink);
  padding: 9px 16px; border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink); text-decoration: none;
  font-size: 13px; font-weight: 900; letter-spacing: 0.03em;
  transition: transform 0.16s, box-shadow 0.16s, background 0.16s;
}
.header-cta:hover { transform: translate(1.5px,1.5px); box-shadow: 1.5px 1.5px 0 var(--ink); background: var(--lime); }

/* ════════════════════════════════════════════════
   공통
   ════════════════════════════════════════════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.sect { padding: 92px 0 80px; position: relative; z-index: 2; }

.sect-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--cream);
  padding: 7px 15px; font-size: 11px; font-weight: 800;
  letter-spacing: 0.2em; font-family: var(--font-mono);
  margin-bottom: 24px; box-shadow: 3px 3px 0 var(--pink);
}
.sect-label .dash, .sect-label .dot { color: var(--yellow); }

.sect-headline {
  font-size: clamp(34px,5.5vw,62px); font-weight: 900;
  letter-spacing: -0.035em; line-height: 1.06;
  color: var(--ink); margin-bottom: 30px; max-width: 18ch;
}
.sect-headline .line { display: block; }
.sect-headline .word {
  display: inline-block; opacity: 0; transform: translateY(34px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.sect-headline .word.in { opacity: 1; transform: translateY(0); }
.sect-headline .accent-word {
  background: var(--yellow); padding: 0 8px; margin: 0 -3px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
  border-radius: 3px;
}
.sect-headline.final .accent-word { background: var(--lime); }
.sect-headline .accent-pink { background: var(--pink); color: #fff; }

.sect-foot {
  text-align: center; margin-top: 56px;
  font-size: 15px; font-weight: 700; color: var(--text-sub);
  line-height: 1.6; letter-spacing: -0.01em;
}

.dot { color: var(--pink); margin: 0 3px; font-weight: 900; }
.dash { color: var(--ink); }
.hi { background: var(--yellow); padding: 0 5px; font-weight: 900; border-radius: 3px; }
.hi-pink { background: var(--pink); color: #fff; padding: 0 5px; font-weight: 900; border-radius: 3px; }
.hi-lime { background: var(--lime); padding: 0 5px; font-weight: 900; border-radius: 3px; }
.hi-sky { background: var(--sky); color: #fff; padding: 0 5px; font-weight: 900; border-radius: 3px; }

/* ════════════════════════════════════════════════
   섹션 1. HERO
   ════════════════════════════════════════════════ */
.hero { position: relative; padding: 56px 0 84px; overflow: hidden; z-index: 2; }
.hero-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start;
}
@media (max-width: 1100px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero-left { display: flex; flex-direction: column; gap: 22px; }

.hero-label {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  background: var(--ink); color: var(--cream);
  padding: 8px 14px 8px 8px; font-size: 12.5px; font-weight: 800;
  letter-spacing: -0.01em; font-family: var(--font-sans);
  box-shadow: 3px 3px 0 var(--pink);
  opacity: 0; transform: translateX(-30px); transition: opacity 0.6s, transform 0.6s;
}
.hero-label.in { opacity: 1; transform: translateX(0); }
.hero-label-fire {
  background: var(--pink); color: #fff;
  padding: 4px 10px; font-size: 12px; font-weight: 900;
  border: 1.5px solid #fff; letter-spacing: -0.01em;
  animation: firePulse 1.6s ease-in-out infinite;
}
@keyframes firePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }

/* 카운트다운 */
.countdown {
  background: var(--ink); color: var(--cream);
  padding: 22px 24px; border: 2px solid var(--ink);
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s;
  position: relative; overflow: hidden;
}
.countdown.in { opacity: 1; transform: translateY(0); }
.countdown::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 56px; height: 56px; background: var(--pink);
  transform: translate(28px,-28px) rotate(45deg);
}
.countdown-row { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 14px; position: relative; z-index: 1; }
.cd-unit { display: flex; flex-direction: column; gap: 4px; }
.cd-num { display: flex; gap: 2px; font-family: var(--font-mono); font-size: 42px; font-weight: 800; line-height: 1; color: var(--cream); letter-spacing: -0.04em; }
.cd-num .digit { display: inline-block; min-width: 26px; text-align: center; }
.cd-num .digit.flip { animation: flipIn 0.35s ease-out; }
@keyframes flipIn { 0% { transform: translateY(-6px); opacity: 0.4; } 100% { transform: translateY(0); opacity: 1; } }
.cd-label { font-size: 9.5px; font-weight: 800; letter-spacing: 0.2em; color: var(--yellow); font-family: var(--font-mono); }
.cd-sep { font-size: 30px; font-weight: 800; color: rgba(255,255,255,0.3); padding-bottom: 14px; }
.countdown-deadline { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; font-weight: 700; position: relative; z-index: 1; padding-top: 12px; border-top: 1px dashed rgba(255,246,236,0.25); }
.deadline-date { color: var(--lime); font-size: 16px; }
.deadline-time { color: rgba(255,246,236,0.7); }
.deadline-tag { margin-left: auto; background: var(--red); color: #fff; padding: 2px 8px; font-size: 10px; font-weight: 900; letter-spacing: 0.1em; }
.countdown.urgent .deadline-tag { animation: blink 0.6s steps(2) infinite; }
@keyframes blink { 0%,49% { opacity: 1; } 50%,100% { opacity: 0.4; } }

.hero-headline {
  font-size: clamp(36px,5.6vw,66px); font-weight: 900;
  letter-spacing: -0.04em; line-height: 1.04; color: var(--ink); max-width: 15ch;
}
.hero-headline .line { display: block; }
.hero-headline .word { display: inline-block; opacity: 0; transform: translateY(40px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.hero-headline .word.in { opacity: 1; transform: translateY(0); }
.hero-headline .accent-word { background: var(--lime); padding: 0 8px; margin: 0 -3px; box-decoration-break: clone; -webkit-box-decoration-break: clone; border-radius: 3px; }
.hero-headline .accent-pink { background: var(--pink); color: #fff; padding: 0 8px; margin: 0 -3px; box-decoration-break: clone; -webkit-box-decoration-break: clone; border-radius: 3px; }

.hero-sub {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  padding-left: 18px; border-left: 4px solid var(--pink);
  opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s;
}
.hero-sub.in { opacity: 1; transform: translateY(0); }
.hero-sub li { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.55; letter-spacing: -0.01em; }

/* 혜택 박스 */
.benefit-box {
  background: var(--paper); border: 2px solid var(--ink); box-shadow: var(--shadow-lg);
  padding: 22px; opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; position: relative;
}
.benefit-box.in { opacity: 1; transform: translateY(0); }
.benefit-head { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: 0.16em; color: var(--ink); font-family: var(--font-mono); padding-bottom: 14px; margin-bottom: 14px; border-bottom: 2px dashed var(--line-soft); }
.benefit-head .dash { color: var(--pink); }
.benefit-item { display: flex; gap: 14px; padding: 12px 0; }
.benefit-num { flex-shrink: 0; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: var(--yellow); border: 2px solid var(--ink); font-family: var(--font-mono); font-size: 13px; font-weight: 900; }
.benefit-body { flex: 1; min-width: 0; }
.benefit-title { font-size: 16px; font-weight: 900; color: var(--ink); letter-spacing: -0.015em; margin-bottom: 4px; line-height: 1.3; }
.benefit-tag { display: inline-block; background: var(--lime); color: var(--ink); padding: 1px 6px; font-size: 10.5px; font-weight: 900; letter-spacing: 0.04em; margin-left: 4px; font-family: var(--font-mono); border: 1.5px solid var(--ink); }
.benefit-tag.hot { background: var(--pink); color: #fff; }
.benefit-desc { font-size: 13.5px; color: var(--text-sub); font-weight: 600; line-height: 1.5; }
.benefit-list { list-style: none; margin-top: 8px; padding: 0; }
.benefit-list li { font-size: 13px; color: var(--ink); padding-left: 14px; position: relative; line-height: 1.6; font-weight: 600; }
.benefit-list li::before { content: '★'; color: var(--pink); position: absolute; left: 0; font-size: 9px; top: 5px; }
.benefit-arrow { margin-top: 10px; font-size: 14px; font-weight: 900; color: var(--ink); background: var(--yellow); padding: 5px 10px; display: inline-block; border: 2px solid var(--ink); }
.benefit-quote { margin-top: 10px; padding: 10px 12px; background: var(--cream-pink); border-left: 4px solid var(--pink); font-size: 12.5px; color: var(--ink); font-weight: 600; line-height: 1.5; }
.benefit-foot { margin-top: 14px; padding-top: 14px; border-top: 2px dashed var(--line-soft); text-align: center; font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em; color: var(--ink); font-family: var(--font-mono); }
.benefit-foot .dash { color: var(--pink); }

/* CTA 버튼 */
.cta-button {
  display: block; background: var(--pink); color: #fff;
  border: 2px solid var(--ink); box-shadow: var(--shadow-lg);
  padding: 16px 22px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative; overflow: hidden; opacity: 0; transform: translateY(20px);
}
.cta-button.in { opacity: 1; transform: translateY(0); }
.cta-button:hover { transform: translate(2px,2px); box-shadow: 3px 3px 0 var(--ink); background: var(--pink-deep); }
.cta-button::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%); transform: translateX(-100%) rotate(45deg); transition: transform 0.8s cubic-bezier(0.16,1,0.3,1); pointer-events: none; }
.cta-button:hover::before { transform: translateX(100%) rotate(45deg); }
.cta-top { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.13em; color: var(--yellow); margin-bottom: 4px; position: relative; z-index: 1; }
.cta-bottom { font-size: 17px; font-weight: 900; letter-spacing: -0.02em; color: #fff; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.cta-arrow { font-size: 20px; font-weight: 900; transition: transform 0.2s; }
.cta-button:hover .cta-arrow { transform: translateX(4px); }

/* HERO 우측 — 키즈 사진 콜라주 */
.hero-photos {
  position: relative;
  min-height: 620px;
  opacity: 0; transform: translateY(30px); transition: opacity 0.8s, transform 0.8s;
}
.hero-photos.in { opacity: 1; transform: translateY(0); }

.hero-photo {
  position: absolute;
  border: 2.5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  overflow: hidden; cursor: pointer; background: var(--paper);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  animation: photoFloat var(--dur,7s) ease-in-out infinite alternate;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; pointer-events: none; }
.hero-photo:hover { transform: rotate(0deg) scale(1.07) !important; box-shadow: 8px 8px 0 var(--pink); z-index: 20; animation-play-state: paused; }
.hero-photo:hover img { transform: scale(1.08); }
.hero-photo.zoomed { transform: rotate(0deg) scale(1.2) !important; box-shadow: 11px 11px 0 var(--lime-deep); z-index: 30; animation-play-state: paused; }

/* 데스크탑 배치 — 7장 콜라주 */
.hp-1 { top: 0; left: 6%; width: 48%; height: 240px; --rot: -3deg; --dur: 8s; --floaty: 14px; z-index: 3; }
.hp-2 { top: 20px; right: 2%; width: 38%; height: 185px; --rot: 4deg; --dur: 9s; --floaty: -16px; z-index: 4; }
.hp-3 { top: 215px; left: 0; width: 34%; height: 180px; --rot: 5deg; --dur: 7s; --floaty: 12px; z-index: 5; }
.hp-4 { top: 250px; left: 33%; width: 36%; height: 165px; --rot: -4deg; --dur: 10s; --floaty: -12px; z-index: 4; }
.hp-5 { top: 230px; right: 1%; width: 33%; height: 175px; --rot: 6deg; --dur: 8.5s; --floaty: 14px; z-index: 6; }
.hp-6 { top: 405px; left: 8%; width: 37%; height: 160px; --rot: -5deg; --dur: 9.5s; --floaty: -13px; z-index: 5; }
.hp-7 { top: 425px; right: 6%; width: 35%; height: 155px; --rot: 4deg; --dur: 7.5s; --floaty: 13px; z-index: 4; }

.hero-photo-badge {
  position: absolute; z-index: 8;
  background: var(--yellow); color: var(--ink);
  border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink);
  padding: 7px 12px; font-family: var(--font-mono);
  font-size: 11px; font-weight: 900; letter-spacing: 0.02em;
  transform: rotate(-6deg); top: 195px; left: 38%;
  animation: badgeWobble 3s ease-in-out infinite alternate;
}
.hero-photo-cap {
  position: absolute; z-index: 8;
  bottom: -8px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #fff;
  border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink);
  padding: 6px 16px; font-size: 12.5px; font-weight: 900;
  letter-spacing: -0.01em; white-space: nowrap;
}
@keyframes badgeWobble { 0% { transform: rotate(-6deg); } 100% { transform: rotate(4deg); } }

@media (max-width: 1100px) {
  .hero-photos { min-height: 600px; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 700px) {
  /* 모바일: absolute 콜라주 → 2열 그리드로 전환 (7장 다 보이게) */
  .hero-photos {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-bottom: 40px;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-photo {
    position: static !important;
    width: 100% !important;
    height: 150px !important;
    transform: none !important;
    animation: none !important;
    top: auto !important; left: auto !important; right: auto !important;
  }
  .hero-photo.hp-1 { grid-column: 1 / 3; height: 200px !important; }
  .hero-photo:hover { transform: scale(1.02) !important; }
  .hero-photo.zoomed { transform: scale(1.04) !important; }
  .hero-photo-badge {
    position: static !important;
    transform: rotate(-3deg) !important;
    justify-self: start;
    grid-column: 1 / 3;
    margin: 4px 0;
    top: auto !important; left: auto !important;
    animation: none !important;
  }
  .hero-photo-cap {
    position: static !important;
    transform: none !important;
    left: auto !important; bottom: auto !important;
    grid-column: 1 / 3;
    justify-self: center;
    margin-top: 4px;
  }
}

@keyframes shadowDrop { 0% { opacity: 0; transform: translate(-10px,-10px); } 60% { opacity: 1; transform: translate(2px,2px); } 100% { opacity: 1; transform: translate(0,0); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ════════════════════════════════════════════════
   섹션 2. 관리 시스템
   ════════════════════════════════════════════════ */
.sect-system { background: var(--cream-warm); }

.process-box { background: var(--paper); border: 2px solid var(--ink); box-shadow: var(--shadow-md); padding: 26px; margin-bottom: 34px; opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.process-box.in { opacity: 1; transform: translateY(0); }
.process-head { text-align: center; font-size: 12px; font-weight: 800; letter-spacing: 0.14em; color: var(--ink); font-family: var(--font-mono); padding-bottom: 18px; margin-bottom: 24px; border-bottom: 2px dashed var(--line-soft); }
.process-head .dash, .process-head .dot { color: var(--pink); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2,1fr); } }
.process-step { background: var(--cream); border: 2px solid var(--ink); padding: 16px; box-shadow: 3px 3px 0 var(--ink); transition: transform 0.18s, box-shadow 0.18s; }
.process-step:hover { transform: translate(1.5px,1.5px); box-shadow: 1.5px 1.5px 0 var(--ink); }
.process-step.accent { background: var(--lime); }
.step-num { font-size: 10.5px; font-weight: 800; letter-spacing: 0.18em; color: var(--pink); font-family: var(--font-mono); margin-bottom: 8px; }
.step-title { font-size: 16px; font-weight: 900; letter-spacing: -0.02em; color: var(--ink); line-height: 1.2; margin-bottom: 6px; }
.step-desc { font-size: 12px; color: var(--text-sub); font-weight: 600; line-height: 1.5; }
.process-foot { text-align: center; margin-top: 22px; padding-top: 18px; border-top: 2px dashed var(--line-soft); font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.55; }

/* 하드트레이닝 인용문 */
.basics-quote { background: var(--ink); color: var(--cream); border: 2px solid var(--ink); box-shadow: var(--shadow-lg); padding: 38px 30px; margin-bottom: 34px; position: relative; text-align: center; opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; overflow: hidden; }
.basics-quote.in { opacity: 1; transform: translateY(0); }
.basics-quote::before { content: '"'; position: absolute; top: 6px; left: 24px; font-size: 84px; color: var(--pink); opacity: 0.45; font-family: var(--font-display); line-height: 1; }
.basics-quote p { font-size: clamp(20px,3vw,27px); font-weight: 800; line-height: 1.5; letter-spacing: -0.025em; position: relative; z-index: 1; }
.basics-quote p + p { margin-top: 14px; }
.basics-quote .quote-em { margin-top: 18px; padding-top: 18px; border-top: 2px dashed rgba(255,246,236,0.25); }
.basics-quote .hi { background: var(--yellow); color: var(--ink); padding: 0 6px; }
.basics-quote .hi-pink { background: var(--pink); color: #fff; padding: 0 6px; }
.basics-quote .hi-lime { background: var(--lime); color: var(--ink); padding: 0 6px; font-weight: 900; }

/* 트레이너 소개 블록 */
.trainer-box { background: var(--sky); color: var(--ink); border: 2px solid var(--ink); box-shadow: var(--shadow-lg); padding: 30px; margin-bottom: 34px; position: relative; overflow: hidden; opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.trainer-box.in { opacity: 1; transform: translateY(0); }
.trainer-box::before { content: ''; position: absolute; top: 0; right: 0; width: 70px; height: 70px; background: var(--yellow); transform: translate(35px,-35px) rotate(45deg); }
.trainer-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--ink); color: var(--yellow); padding: 5px 12px; font-size: 10.5px; font-weight: 800; letter-spacing: 0.16em; font-family: var(--font-mono); margin-bottom: 16px; }
.trainer-title { font-size: clamp(20px,3vw,26px); font-weight: 900; letter-spacing: -0.025em; line-height: 1.35; margin-bottom: 18px; position: relative; z-index: 1; }
.trainer-title .hi { background: #fff; padding: 0 6px; }
.trainer-careers { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; position: relative; z-index: 1; }
@media (max-width: 600px) { .trainer-careers { grid-template-columns: 1fr; } }
.career-item { background: rgba(255,255,255,0.9); border: 2px solid var(--ink); padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.career-icon { flex-shrink: 0; width: 30px; height: 30px; background: var(--pink); color: #fff; border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 13px; }
.career-txt { font-size: 13.5px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; line-height: 1.3; }
.trainer-foot { margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.55; position: relative; z-index: 1; }

/* 4카드 */
.manage-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 48px; }
@media (max-width: 900px) { .manage-grid { grid-template-columns: repeat(2,1fr); } }
.manage-card { background: var(--paper); border: 2px solid var(--ink); box-shadow: var(--shadow-md); padding: 22px; opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
.manage-card.in { opacity: 1; transform: translateY(0); }
.manage-card:hover { transform: translate(2px,2px); box-shadow: 3px 3px 0 var(--ink); }
.manage-card.accent { background: var(--yellow); }
.card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 2px dashed var(--line-soft); }
.card-num { font-size: 10.5px; font-weight: 800; letter-spacing: 0.18em; color: var(--pink); font-family: var(--font-mono); }
.manage-card.accent .card-num { color: var(--ink); }
.card-arrow { font-size: 16px; font-weight: 900; color: var(--ink); }
.card-title { font-size: 19px; font-weight: 900; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 12px; line-height: 1.2; }
.manage-card p { font-size: 13.5px; color: var(--ink); font-weight: 600; line-height: 1.55; letter-spacing: -0.005em; }
.manage-card p + p { margin-top: 10px; }
.card-foot { margin-top: 12px !important; padding-top: 12px; border-top: 2px dashed var(--line-soft); font-size: 12.5px !important; color: var(--text-sub) !important; font-weight: 700 !important; }
.card-foot-accent { background: var(--ink); color: var(--lime) !important; padding: 6px 10px; text-align: center; font-weight: 900 !important; border-top: none !important; margin-top: 14px !important; }

/* 진단서 샘플 */
.diagnosis-figure { margin: 0 auto 24px; max-width: 720px; text-align: center; }
.diagnosis-frame { position: relative; background: var(--paper); border: 2px solid var(--ink); box-shadow: var(--shadow-lg); overflow: hidden; margin-bottom: 14px; }
.diagnosis-frame img { width: 100%; display: block; }
.blur-overlay { position: absolute; backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }
.blur-overlay.light { background: rgba(255,246,236,0.55); }
.blur-overlay.dark { background: rgba(26,22,38,0.45); }
.diagnosis-lock { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: rgba(26,22,38,0.4); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); color: var(--cream); }
.lock-ring { width: 56px; height: 56px; border-radius: 50%; background: var(--yellow); border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; color: var(--ink); box-shadow: 4px 4px 0 var(--pink); }
.lock-eyebrow { font-size: 10px; font-weight: 800; letter-spacing: 0.22em; color: var(--yellow); font-family: var(--font-mono); }
.lock-title { font-size: 16px; font-weight: 900; letter-spacing: -0.02em; text-align: center; line-height: 1.35; color: #fff; }
.diagnosis-figure figcaption { font-size: 12px; color: var(--text-sub); font-family: var(--font-mono); letter-spacing: 0.05em; }

/* ════════════════════════════════════════════════
   섹션 3. IDOL FROM PIVOT410
   ════════════════════════════════════════════════ */
.sect-idols { background: var(--cream); }
.idol-meta { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; flex-wrap: wrap; }
.idol-count { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.idol-count .num { font-size: 38px; color: var(--pink); margin-right: 8px; letter-spacing: -0.05em; }
.idol-meta-sep { width: 32px; height: 2px; background: var(--ink); }
.idol-meta-txt { font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; color: var(--text-sub); font-family: var(--font-mono); }
.idol-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 10px; margin-bottom: 40px; }
@media (max-width: 1100px) { .idol-grid { grid-template-columns: repeat(5,1fr); } }
@media (max-width: 800px) { .idol-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 540px) { .idol-grid { grid-template-columns: repeat(3,1fr); gap: 8px; } }
.idol-card { position: relative; aspect-ratio: 3/4; background: var(--ink-soft); border: 2px solid var(--ink); box-shadow: 2px 2px 0 var(--ink); overflow: hidden; opacity: 0; transform: translateY(16px) scale(0.96); transition: opacity 0.5s, transform 0.5s; }
.idol-card.in { opacity: 1; transform: translateY(0) scale(1); }
.idol-card:hover { transform: translate(1px,1px) scale(1.04); box-shadow: 3px 3px 0 var(--pink); z-index: 10; }
.idol-card img { width: 100%; height: 100%; object-fit: cover; }
.idol-card .cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 8px 7px; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85)); }
.cap-group { display: block; font-size: 9px; color: var(--yellow); font-family: var(--font-mono); font-weight: 800; letter-spacing: 0.06em; margin-bottom: 1px; }
.cap-name { display: block; font-size: 11.5px; color: #fff; font-weight: 800; letter-spacing: -0.01em; }

.trust-box { background: var(--pink); color: #fff; border: 2px solid var(--ink); box-shadow: var(--shadow-lg); padding: 22px 26px; text-align: center; margin-bottom: 34px; opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; position: relative; }
.trust-box.in { opacity: 1; transform: translateY(0); }
.trust-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--ink); color: var(--yellow); padding: 4px 10px; font-size: 10px; font-weight: 800; letter-spacing: 0.18em; font-family: var(--font-mono); margin-bottom: 12px; }
.dot-red { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.6); } }
.trust-box p { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.5; }
.trust-box .hi { background: var(--lime); color: var(--ink); padding: 0 6px; }

/* ════════════════════════════════════════════════
   섹션 4. 외대점
   ════════════════════════════════════════════════ */
.sect-space { background: var(--cream-mint); }
.space-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; margin-bottom: 40px; max-height: 520px; }
@media (max-width: 800px) { .space-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; max-height: none; } }
.space-shot { position: relative; overflow: hidden; border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); }
.space-shot.wide { grid-row: 1/3; grid-column: 1; }
@media (max-width: 800px) { .space-shot.wide { grid-row: auto; grid-column: 1/3; } }
.space-shot img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 180px; }
.space-shot figcaption { position: absolute; bottom: 8px; left: 8px; background: var(--ink); color: var(--yellow); padding: 4px 9px; font-size: 10.5px; font-weight: 800; letter-spacing: 0.1em; font-family: var(--font-mono); }
.info-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 20px; margin-bottom: 36px; }
@media (max-width: 800px) { .info-row { grid-template-columns: 1fr; } }
.info-col { display: flex; flex-direction: column; gap: 14px; }
.info-block { background: var(--paper); border: 2px solid var(--ink); box-shadow: var(--shadow-sm); padding: 20px; }
.info-head { font-size: 11px; font-weight: 800; letter-spacing: 0.18em; color: var(--pink); font-family: var(--font-mono); margin-bottom: 12px; }
.info-head .dash { color: var(--ink); }
.info-body p { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.55; }
.info-body p + p { margin-top: 10px; }
.info-sub { font-size: 13px !important; color: var(--text-sub) !important; font-weight: 600 !important; }
.info-phone { font-family: var(--font-mono); font-size: 19px !important; font-weight: 800 !important; letter-spacing: -0.01em; color: var(--ink) !important; }
.info-kakao { display: inline-flex; align-items: center; gap: 6px; background: var(--yellow); color: var(--ink); padding: 8px 14px; text-decoration: none; font-size: 13px; font-weight: 800; border: 2px solid var(--ink); box-shadow: 2px 2px 0 var(--ink); margin-top: 6px; transition: transform 0.15s, box-shadow 0.15s; }
.info-kakao:hover { transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--ink); }
.map-col { position: relative; }
.map-link { display: block; position: relative; border: 2px solid var(--ink); box-shadow: var(--shadow-md); overflow: hidden; text-decoration: none; transition: transform 0.18s, box-shadow 0.18s; }
.map-link:hover { transform: translate(2px,2px); box-shadow: 3px 3px 0 var(--ink); }
.map-link img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 220px; }
.map-cta { position: absolute; bottom: 0; left: 0; right: 0; background: var(--pink); color: #fff; padding: 12px 16px; font-size: 13.5px; font-weight: 900; letter-spacing: -0.01em; display: flex; justify-content: space-between; align-items: center; border-top: 2px solid var(--ink); }
.map-cta .arrow { font-weight: 900; font-size: 16px; }

/* ════════════════════════════════════════════════
   섹션 5. 신청 폼
   ════════════════════════════════════════════════ */
.sect-consult { background: var(--ink); color: var(--cream); padding-bottom: 100px; }
.sect-consult .sect-label { background: var(--yellow); color: var(--ink); box-shadow: 3px 3px 0 var(--pink); }
.sect-consult .sect-label .dash, .sect-consult .sect-label .dot { color: var(--pink); }
.sect-consult .sect-headline { color: var(--cream); }
.sect-consult .sect-headline .accent-word { background: var(--lime); color: var(--ink); }
.consult-sub { font-size: 16px; font-weight: 700; color: rgba(255,246,236,0.85); line-height: 1.65; margin-bottom: 40px; letter-spacing: -0.01em; opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
.consult-sub.in { opacity: 1; transform: translateY(0); }
.consult-sub .hi { background: var(--lime); color: var(--ink); padding: 0 6px; }
.consult-grid { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 30px; align-items: start; }
@media (max-width: 900px) { .consult-grid { grid-template-columns: 1fr; } }
.benefit-box.compact { background: var(--cream); color: var(--ink); box-shadow: var(--shadow-md); }
.benefit-box.compact .benefit-num { background: var(--pink); color: #fff; }
.benefit-box.compact .benefit-head { color: var(--ink); }
.mini-countdown { display: flex; justify-content: space-between; gap: 6px; margin-top: 14px; padding-top: 14px; border-top: 2px dashed var(--line-soft); }
.mini-unit { flex: 1; background: var(--ink); color: var(--lime); padding: 8px 4px; text-align: center; font-family: var(--font-mono); font-size: 17px; font-weight: 800; letter-spacing: -0.02em; border: 2px solid var(--ink); }
.mini-label { display: block; font-size: 8.5px; color: var(--yellow); font-weight: 700; letter-spacing: 0.15em; margin-top: 2px; }
.consult-form { background: var(--cream); color: var(--ink); border: 2px solid var(--cream); box-shadow: 7px 7px 0 var(--pink); padding: 28px; }
.form-row { margin-bottom: 16px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 540px) { .form-row.two { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 12px; font-weight: 800; letter-spacing: 0.04em; color: var(--ink); font-family: var(--font-mono); }
.req { color: var(--pink); margin-left: 2px; font-weight: 900; }
.opt { color: var(--text-dim); font-size: 11px; margin-left: 4px; font-weight: 600; }
.field input[type="text"], .field input[type="tel"], .field textarea, .field select { background: var(--paper); border: 2px solid var(--ink); padding: 11px 13px; font-family: var(--font-sans); font-size: 14.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; outline: none; transition: box-shadow 0.18s; width: 100%; }
.field input:focus, .field textarea:focus, .field select:focus { box-shadow: 3px 3px 0 var(--pink); }
.field textarea { resize: vertical; min-height: 90px; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 36px; cursor: pointer; }
.select-arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--ink); font-size: 12px; font-weight: 800; }
.privacy-block { margin-top: 18px; padding-top: 18px; border-top: 2px dashed var(--line-soft); }
.checkbox-row { display: flex; align-items: center; gap: 10px; cursor: pointer; margin-bottom: 14px; }
.checkbox-row input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }
.check-vis { width: 22px; height: 22px; background: var(--paper); border: 2px solid var(--ink); flex-shrink: 0; position: relative; transition: background 0.15s; }
.check-vis::after { content: ''; position: absolute; top: 50%; left: 50%; width: 8px; height: 12px; border: solid var(--ink); border-width: 0 2.5px 2.5px 0; transform: translate(-50%,-60%) rotate(45deg); opacity: 0; transition: opacity 0.15s; }
.checkbox-row input:checked ~ .check-vis { background: var(--lime); }
.checkbox-row input:checked ~ .check-vis::after { opacity: 1; }
.check-txt { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.privacy-detail { background: var(--paper); border: 2px solid var(--ink); padding: 14px 16px; font-size: 12px; color: var(--ink); }
.privacy-row { display: grid; grid-template-columns: 80px 1fr; gap: 10px; padding: 5px 0; border-bottom: 1px dashed var(--line-soft); line-height: 1.45; }
.privacy-row:last-of-type { border-bottom: none; }
.privacy-row.highlight { background: var(--cream-warm); margin: 4px -8px; padding: 6px 8px; }
.privacy-key { font-weight: 800; font-size: 11px; letter-spacing: 0.04em; color: var(--pink); font-family: var(--font-mono); }
.privacy-val { font-size: 12px; font-weight: 600; }
.privacy-val strong { font-weight: 900; background: var(--yellow); padding: 0 3px; }
.privacy-foot { margin-top: 10px; padding-top: 8px; border-top: 1px dashed var(--line-soft); font-size: 11px; color: var(--text-sub); font-weight: 600; }
.submit-button { margin-top: 20px; width: 100%; background: var(--lime); color: var(--ink); border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--pink); cursor: pointer; opacity: 1; transform: none; }
.submit-button .cta-top { color: var(--ink); }
.submit-button .cta-bottom { color: var(--ink); }
.submit-button:hover { background: var(--yellow); transform: translate(2px,2px); box-shadow: 3px 3px 0 var(--pink); }
.form-foot { margin-top: 14px; text-align: center; font-size: 12px; font-weight: 700; color: var(--text-sub); font-family: var(--font-mono); }
.consult-success { background: var(--lime); color: var(--ink); border: 2px solid var(--ink); box-shadow: var(--shadow-lg); padding: 50px 30px; text-align: center; }
.success-mark { font-size: 56px; font-weight: 900; color: var(--pink); margin-bottom: 14px; }
.consult-success h3 { font-size: 24px; font-weight: 900; letter-spacing: -0.025em; margin-bottom: 8px; color: var(--ink); }
.consult-success p { font-size: 14.5px; font-weight: 700; color: var(--ink); line-height: 1.55; }
.consult-success .success-sub { margin-top: 12px; padding-top: 12px; border-top: 2px dashed var(--ink); font-family: var(--font-mono); font-size: 12.5px !important; color: var(--ink) !important; font-weight: 700 !important; opacity: 0.7; }

/* ════════════════════════════════════════════════
   푸터
   ════════════════════════════════════════════════ */
.site-footer { background: var(--ink); color: var(--cream); padding: 60px 0 24px; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; margin-bottom: 30px; align-items: end; }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { margin-bottom: 12px; }
.footer-logo { height: 32px; }
.footer-branch { font-size: 13px; font-weight: 800; letter-spacing: 0.05em; color: var(--yellow); margin-bottom: 6px; }
.footer-branch .dot { color: var(--pink); }
.footer-addr { font-size: 12.5px; color: rgba(255,246,236,0.65); font-family: var(--font-mono); letter-spacing: 0.02em; }
.footer-right { display: flex; flex-direction: column; gap: 8px; text-align: right; }
.footer-ig, .footer-web { font-size: 13px; font-weight: 800; color: var(--cream); text-decoration: none; font-family: var(--font-mono); letter-spacing: 0.03em; transition: color 0.15s; }
.footer-ig:hover { color: var(--yellow); }
.footer-web:hover { color: var(--lime); }
.footer-divider { height: 2px; background: rgba(255,246,236,0.15); margin-bottom: 16px; }
.footer-bottom { display: flex; justify-content: space-between; font-size: 11.5px; color: rgba(255,246,236,0.4); font-family: var(--font-mono); letter-spacing: 0.04em; }
.footer-bottom .dot { color: var(--pink); }

/* 플로팅 CTA */
.floating-cta { position: fixed; bottom: 24px; right: 24px; z-index: 99; display: inline-flex; align-items: center; gap: 8px; background: var(--pink); color: #fff; padding: 14px 22px; text-decoration: none; font-size: 14px; font-weight: 900; letter-spacing: -0.01em; border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); opacity: 0; pointer-events: none; transform: translateY(20px); transition: opacity 0.3s, transform 0.3s, background 0.18s; }
.floating-cta.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.floating-cta:hover { background: var(--yellow); color: var(--ink); }
.floating-cta .arrow { font-size: 16px; font-weight: 900; }
@media (max-width: 540px) { .floating-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
@media (max-width: 600px) {
  .sect { padding: 60px 0 50px; }
  .hero { padding: 36px 0 60px; }
  .header-inner { padding: 12px 18px; }
  .container { padding: 0 18px; }
  .hero-grid { padding: 0 18px; gap: 36px; }
  .cd-num { font-size: 30px; }
  .cd-num .digit { min-width: 19px; }
  .countdown { padding: 18px; }
}
