/* ============================================================
   마더캠 — Premium CSS
   Rose-Pink / Cream-White / Deep-Navy
============================================================ */

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

:root {
  --rose:       #C94E6E;
  --rose-light: #E8637A;
  --rose-pale:  #FFF0F3;
  --rose-hover: #B03A5C;
  --cream:      #FDFAF7;
  --cream2:     #F7F2EC;
  --navy:       #1C2B45;
  --navy2:      #243350;
  --navy-light: #2E3C56;
  --gold:       #D4922A;
  --gold-light: #F4B942;
  --mint:       #3AAFA0;
  --mint-light: #5CC8BA;
  --gray-100:   #F5F5F5;
  --gray-200:   #E0E0E0;
  --gray-400:   #757575;
  --gray-500:   #555555;
  --gray-600:   #3D3D3D;
  --gray-700:   #2A2A2A;
  --gray-800:   #1A1A1A;
  --text-main:  #1E1E1E;
  --text-sub:   #2E2E2E;
  --text-muted: #555555;
  --white:      #FFFFFF;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  36px;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', 'Nanum Gothic', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.9;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
  word-break: keep-all;
  word-spacing: 0.02em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Commons ── */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-pale);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-label.light { color: #FFE0EA; background: rgba(255,255,255,0.2); letter-spacing: 0.1em; }

.section-title {
  font-family: 'Gowun Batang', Georgia, serif;
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.section-title.white { color: var(--white); }
.section-title em { color: var(--rose); font-style: italic; }

.section-sub {
  font-size: 1.05rem;
  color: #3A3A3A;
  margin-bottom: 48px;
  line-height: 1.9;
  font-weight: 400;
}
.section-sub.light { color: #D8E8FF; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* 블러 제거: 전역 스크롤·모달 시 GPU 합성 부담 감소 */
  background: rgba(255, 248, 242, 0.97);
  border-bottom: 1px solid rgba(201, 78, 110, 0.1);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 248, 242, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Gowun Batang', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-icon { color: var(--rose); font-size: 1.1rem; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--rose); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-nav-signup {
  padding: 8px 18px;
  border: 1.5px solid var(--rose);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose);
  background: transparent;
  transition: var(--transition);
}
.btn-nav-signup:hover { background: var(--rose-pale); }

.btn-nav-logout {
  padding: 8px 18px;
  border: 1.5px solid var(--gray-400);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}
.btn-nav-logout:hover { background: var(--gray-100); }

.btn-nav-pay {
  padding: 8px 20px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav-pay:hover { background: var(--rose-hover); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-200);
}
.btn-mobile-pay {
  margin-top: 16px;
  padding: 14px;
  background: var(--rose);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
}
.btn-mobile-logout {
  margin-top: 10px;
  padding: 12px 14px;
  width: 100%;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-mobile-logout:hover { background: var(--gray-100); }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  padding: 100px 24px 60px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream2) 40%, #FDE8EE 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.shape-1 {
  width: 500px; height: 500px;
  background: var(--rose);
  top: -120px; right: -100px;
}
.shape-2 {
  width: 350px; height: 350px;
  background: var(--navy);
  bottom: -80px; left: -60px;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--gold);
  top: 60%; right: 20%;
}

.hero-inner {
  max-width: 580px;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201, 78, 110, 0.1);
  border: 1px solid rgba(201, 78, 110, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Gowun Batang', Georgia, serif;
  font-size: clamp(2.1rem, 4.8vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.hero-title em {
  color: var(--rose);
  font-style: italic;
}
.hero-title-sub {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--navy);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #2A2A2A;
  line-height: 1.95;
  margin: 20px 0 32px;
  font-weight: 400;
}
.hero-desc strong { color: var(--rose); font-weight: 700; }

/* Hero highlight cards */
.hero-highlight-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.h-card {
  background: var(--white);
  border: 1px solid rgba(201, 78, 110, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.h-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}
.h-card i {
  display: block;
  font-size: 1.2rem;
  color: var(--rose);
  margin-bottom: 6px;
}
.h-card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.h-card span {
  font-size: 0.73rem;
  color: #3A3A3A;
  line-height: 1.4;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(201, 78, 110, 0.35);
}
.btn-hero-primary:hover {
  background: var(--rose-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 78, 110, 0.45);
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  padding: 14px 0;
  transition: var(--transition);
}
.btn-hero-ghost:hover { color: var(--rose); }

.hero-trust {
  font-size: 0.84rem;
  color: #3D3D3D;
  font-weight: 500;
}
.hero-trust i { color: var(--rose); margin-right: 4px; }

/* Hero Mockup — VIGI Phone */
.hero-mockup {
  flex-shrink: 0;
  z-index: 1;
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--white);
  border-radius: 50%;
  display: inline-block;
  animation: livePulse 1.2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* VIGI Phone Frame */
.vigi-phone-frame {
  width: 240px;
  background: var(--navy);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 0 6px rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.1);
}
.vigi-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #E8F0FF;
  background: rgba(0,0,0,0.3);
}
.vigi-app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vigi-logo-small {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.vigi-live-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--rose);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.vigi-cam-screen {
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(160deg, #1a2640 0%, #253147 100%);
}
.vigi-cam-screen > i {
  font-size: 4rem;
  color: rgba(255,255,255,0.35);
}
.vigi-viewer-badge {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-size: 0.7rem;
  padding: 5px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.vigi-viewer-badge strong { color: var(--rose-light); }
.vigi-app-footer {
  padding: 10px 14px 14px;
  background: rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vigi-app-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
}
.vigi-app-info i { font-size: 0.75rem; }
.tplink-logo-mini { height: 14px; object-fit: contain; filter: brightness(0) invert(1); }
.vigi-cam-name {
  font-size: 0.7rem;
  color: #A8C4E8;
}

/* ============================================================
   BENEFITS
============================================================ */
.benefits {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.benefit-card {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}
.bc-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.bc-icon i { font-size: 1.2rem; color: var(--rose); }
.bc-icon.accent-rose    { background: var(--rose-pale); }
.bc-icon.accent-navy    { background: rgba(26,38,64,0.08); }
.bc-icon.accent-navy i  { color: var(--navy); }
.bc-icon.accent-gold    { background: rgba(212,146,42,0.1); }
.bc-icon.accent-gold i  { color: var(--gold); }
.bc-icon.accent-mint    { background: rgba(58,175,160,0.1); }
.bc-icon.accent-mint i  { color: var(--mint); }

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.93rem;
  color: #2E2E2E;
  line-height: 1.9;
}
.benefit-card p strong { color: var(--rose); }

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-section {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
}
.steps-wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}
.step-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  flex: 1;
  max-width: 280px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-card.featured {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
  box-shadow: 0 12px 40px rgba(201, 78, 110, 0.3);
  transform: scale(1.03);
  z-index: 1;
}
.step-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.step-num {
  font-family: 'Gowun Batang', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 12px;
}
.step-card.featured .step-num { color: rgba(255,255,255,0.55); }

.step-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step-icon-wrap i { font-size: 1.4rem; color: var(--rose); }
.step-card.featured .step-icon-wrap { background: rgba(255,255,255,0.2); }
.step-card.featured .step-icon-wrap i { color: var(--white); }

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card.featured h3 { color: var(--white); }

.step-card p {
  font-size: 0.93rem;
  color: #2E2E2E;
  line-height: 1.9;
  margin-bottom: 18px;
}
.step-card.featured p { color: rgba(255,255,255,1.0); }
.step-card p strong { color: var(--rose); }
.step-card.featured p strong { color: var(--white); font-weight: 800; }

.step-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--rose-pale);
  color: var(--rose);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}
.step-card.featured .step-tag,
.step-tag.featured-tag {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--rose);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.steps-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(201, 78, 110, 0.08);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.steps-note i { color: var(--rose); }

/* ============================================================
   VIGI GLOBAL PARTNER SECTION
============================================================ */
.vigi-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.vigi-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(201,78,110,0.08);
  top: -150px; right: -100px;
  pointer-events: none;
}

.vigi-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.vigi-text { flex: 1; }
.realtime-list {
  list-style: none;
  margin-bottom: 32px;
}
.realtime-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.97rem;
  color: rgba(255,255,255,1.0);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.realtime-list li:last-child { border-bottom: none; }
.realtime-list i { color: var(--rose-light); font-size: 0.9rem; }

.btn-realtime {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(201,78,110,0.4);
}
.btn-realtime:hover { background: var(--rose-hover); transform: translateY(-2px); }

/* VIGI Logo Block */
.vigi-logo-block {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vigi-partner-card {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  text-align: center;
  min-width: 280px;
}
.vpc-top { margin-bottom: 24px; }
.vpc-badge {
  display: inline-block;
  padding: 5px 16px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.vpc-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.vpc-x {
  font-size: 1.8rem;
  color: #C8D8F0;
  font-weight: 300;
  line-height: 1;
}
.vpc-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.vpc-brand span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.mothercam-brand i {
  font-size: 2.4rem;
  color: var(--rose-light);
}
.vigi-brand i {
  font-size: 2.4rem;
  color: var(--gold-light);
}
.vpc-desc {
  font-size: 0.92rem;
  color: #D8E8FF;
  line-height: 1.75;
  margin-bottom: 24px;
}
.vpc-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.vpc-stat { text-align: center; }
.vpc-stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
}
.vpc-stat span {
  font-size: 0.75rem;
  color: #B8CCEE;
}

/* ============================================================
   SINGLE PLAN SECTION
============================================================ */
.plan-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}
.plan-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  text-align: left;
  align-items: start;
}

/* Plan Card */
.plan-card {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,38,64,0.3);
}
.plan-card::before {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(201,78,110,0.12);
  top: -80px; right: -60px;
}
.plan-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.plan-name {
  font-size: 1rem;
  font-weight: 600;
  color: #D8E8FF;
  margin-bottom: 10px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.price-num {
  font-family: 'Gowun Batang', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
}
.price-unit {
  font-size: 1rem;
  color: #C8DCFF;
}
.plan-desc {
  font-size: 0.9rem;
  color: #C8DCFF;
  margin-bottom: 28px;
}
.plan-features {
  list-style: none;
  margin-bottom: 32px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.92rem;
  color: #E8F2FF;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features i { color: var(--rose-light); font-size: 0.85rem; }
.btn-plan {
  width: 100%;
  padding: 16px;
  background: var(--rose);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.btn-plan:hover { background: var(--rose-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,78,110,0.4); }
.plan-safe {
  font-size: 0.82rem;
  color: #C8DCFF;
  text-align: center;
}
.plan-safe i { color: var(--rose-light); }

/* Plan Summary */
.plan-summary {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}
.plan-summary h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.summary-rows { margin-bottom: 28px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--gray-200);
  color: #2E2E2E;
}
.summary-row.total {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  border-bottom: none;
  padding-top: 16px;
}
.summary-row .amt  { font-weight: 600; color: var(--navy); }
.summary-row .free { color: var(--mint); font-weight: 700; }
.summary-row .total-amt {
  font-family: 'Gowun Batang', Georgia, serif;
  font-size: 1.5rem;
  color: var(--rose);
}

/* Compare Table */
.summary-compare { margin-bottom: 24px; }
.summary-compare h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.summary-compare h4 i { color: var(--rose); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
}
.compare-table th {
  padding: 8px 10px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  font-weight: 600;
}
.compare-table th:first-child { text-align: left; border-radius: 6px 0 0 0; }
.compare-table th:last-child  { border-radius: 0 6px 0 0; }
.compare-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--gray-200);
  color: #2E2E2E;
}
.compare-table .col-other { text-align: center; color: #3D3D3D; }
.compare-table .col-mc    { text-align: center; color: var(--rose); font-weight: 600; }
.compare-table thead th.col-other { background: rgba(26,38,64,0.7); }
.compare-table thead th.col-mc    { background: var(--rose); }
.compare-table tbody tr:hover td  { background: var(--rose-pale); }

.trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: rgba(26,38,64,0.06);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy2);
}
.trust-badges i { color: var(--rose); }

/* ============================================================
   CENTERS SECTION
============================================================ */
.centers-section {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
}
.center-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.filter-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2A2A2A;
  background: var(--white);
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}
.center-count-bar {
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: #2A2A2A;
  font-weight: 500;
}
.centers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.center-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  cursor: pointer;
}
.center-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}
.center-card-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 6px;
}
.center-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.center-card-region {
  font-size: 0.85rem;
  color: #3A3A3A;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.center-card-region i { color: var(--rose); }
.center-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.center-tag {
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--rose-pale);
  color: var(--rose);
}
.center-tag.tag-live {
  background: rgba(58,175,160,0.1);
  color: var(--mint);
}
.center-card-btn {
  margin-top: 14px;
  width: 100%;
  padding: 10px;
  background: var(--rose);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.center-card-btn:hover { background: var(--rose-hover); }

/* ============================================================
   REVIEWS
============================================================ */
.reviews-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}
.review-card {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--gold); margin-bottom: 14px; font-size: 0.9rem; }
.review-text {
  font-size: 0.93rem;
  color: #2E2E2E;
  line-height: 2.0;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.review-author span {
  font-size: 0.8rem;
  color: #555555;
}

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
}
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: var(--transition);
  gap: 16px;
}
.faq-q:hover { background: var(--rose-pale); color: var(--rose); }
.faq-q.open { background: var(--rose-pale); color: var(--rose); }
.faq-q i { flex-shrink: 0; transition: var(--transition); color: var(--rose); }
.faq-q.open i { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
}
.faq-a.open { display: block; }
.faq-a p {
  font-size: 0.93rem;
  color: #2E2E2E;
  line-height: 2.0;
}

/* ============================================================
   APPLY SECTION
============================================================ */
.apply-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--cream) 0%, #FDE8EE 100%);
  text-align: center;
}
.apply-cta-wrap {
  display: flex;
  gap: 32px;
  align-items: stretch;
  max-width: 880px;
  margin: 0 auto;
}
.apply-info-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,78,110,0.1);
  text-align: left;
}
.apply-price-display {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 24px;
}
.apc-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #3D3D3D;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.apc-price {
  display: block;
  font-family: 'Gowun Batang', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--rose);
}
.apc-price small { font-size: 1.2rem; }
.apc-note {
  font-size: 0.82rem;
  color: #3D3D3D;
  font-weight: 500;
}
.apply-include {
  list-style: none;
  margin-bottom: 24px;
}
.apply-include li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.93rem;
  color: #2E2E2E;
  border-bottom: 1px solid var(--gray-200);
  font-weight: 500;
}
.apply-include li:last-child { border-bottom: none; }
.apply-include i { color: var(--rose); }
.apply-trust {
  font-size: 0.82rem;
  color: #3D3D3D;
  text-align: center;
  font-weight: 500;
}
.apply-trust i { color: var(--rose); margin-right: 2px; }

.apply-btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.btn-apply-main {
  width: 100%;
  padding: 20px 28px;
  background: var(--rose);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 8px 28px rgba(201,78,110,0.35);
}
.btn-apply-main:hover { background: var(--rose-hover); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(201,78,110,0.45); }
.apply-sub-note {
  font-size: 0.9rem;
  color: #3D3D3D;
  font-weight: 500;
}
.apply-sub-note a { color: var(--rose); font-weight: 600; }

.apply-methods {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.apply-methods span { font-size: 0.8rem; color: #3D3D3D; font-weight: 500; }
.apply-methods img { height: 22px; object-fit: contain; }
.pay-text {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}
.pay-text.kakao { background: #FEE500; color: #3C1E1E; }
.pay-text.naver { background: #03C75A; color: var(--white); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Gowun Batang', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--rose-light);
}
.footer-logo i { margin-right: 6px; }
.footer-brand p {
  font-size: 0.9rem;
  color: #C0D4F0;
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-copy { margin-top: 12px !important; font-size: 0.78rem !important; color: #8AAACE !important; }

.footer-links h4,
.footer-contact h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: #B8CCE8;
  padding: 5px 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--rose-light); }
.footer-contact p {
  font-size: 0.9rem;
  color: #D0E4FF;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.footer-contact i { color: var(--rose); width: 14px; }
.footer-trust {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.footer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: #C0D4F0;
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 50px;
}
.footer-trust i { color: var(--rose-light); }
.footer-bottom {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  font-size: 0.78rem;
  color: #8AAACE;
  flex-wrap: wrap;
}

/* ============================================================
   MODALS
============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  /* 전체 화면 backdrop-blur는 저사양 기기에서 병목 → 단색 딤만 사용 */
  background: rgba(0, 0, 0, 0.72);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  max-width: 520px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s ease;
  margin: auto;
}
.modal-box.wide { max-width: 680px; }

@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .modal-box {
    animation: none;
  }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gray-600);
  transition: var(--transition);
}
.modal-close:hover { background: var(--rose); color: var(--white); }

.modal-header { text-align: center; margin-bottom: 28px; }
.modal-logo {
  font-family: 'Gowun Batang', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 10px;
}
.modal-header h2 {
  font-family: 'Gowun Batang', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.modal-header p { font-size: 0.9rem; color: #2E2E2E; font-weight: 500; }

/* Form */
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--gray-800);
  transition: var(--transition);
  background: var(--white);
}
.form-group select {
  cursor: pointer;
  appearance: auto;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201,78,110,0.1);
}
.req { color: var(--rose); }
.opt { font-size: 0.78rem; font-weight: 500; color: #555555; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: #2E2E2E;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  accent-color: var(--rose);
  margin-top: 2px;
}

/* Payment Methods */
.pay-methods-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pay-method-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 600;
  color: #2E2E2E;
}
.pay-method-opt:has(input:checked) {
  border-color: var(--rose);
  background: var(--rose-pale);
  color: var(--rose);
}
.pay-method-opt input { accent-color: var(--rose); }
.kakao-opt { color: #3C1E1E; }
.naver-opt { color: #03C75A; }

/* Pay Summary Mini */
.pay-summary-mini {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.psm-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: #2E2E2E;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-200);
}
.psm-row:last-child { border-bottom: none; }
.psm-row.psm-total {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  padding-top: 12px;
  border-bottom: none;
}
.psm-row.psm-total span:last-child { color: var(--rose); font-size: 1.15rem; }
.psm-row .free { color: var(--mint); font-weight: 700; }
.psm-note {
  font-size: 0.8rem;
  color: #3D3D3D;
  text-align: center;
  padding-top: 10px;
  font-weight: 500;
}
.psm-note i { color: var(--rose); }

.btn-modal-submit {
  padding: 16px;
  background: var(--rose);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  width: 100%;
}
.btn-modal-submit:hover { background: var(--rose-hover); transform: translateY(-2px); }
.btn-modal-submit.pay-btn { padding: 18px; font-size: 1.05rem; }

.pay-secure {
  font-size: 0.82rem;
  color: #3D3D3D;
  text-align: center;
  font-weight: 500;
}
.pay-secure i { color: var(--rose); }

.modal-login-footer {
  text-align: center;
  font-size: 0.88rem;
  color: #5c5c5c;
  margin-top: 14px;
  line-height: 1.5;
}
.modal-login-footer .link-like {
  display: inline;
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 0 4px;
  font: inherit;
  font-weight: 600;
  color: var(--rose);
  cursor: pointer;
  text-decoration: underline;
}
.modal-login-footer .link-like:hover {
  opacity: 0.88;
}

/* Complete Modal */
.complete-box {
  text-align: center;
  max-width: 480px;
}
.complete-icon {
  font-size: 4rem;
  color: var(--mint);
  margin-bottom: 20px;
}
.complete-box h2 {
  font-family: 'Gowun Batang', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.complete-desc {
  font-size: 0.9rem;
  color: #2E2E2E;
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 500;
}
.complete-info {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.complete-info div {
  font-size: 0.88rem;
  color: #2E2E2E;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.complete-info i { color: var(--rose); width: 14px; }
.complete-info strong { color: var(--navy); }

.complete-link-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.complete-link-box i { color: var(--rose-light); font-size: 1.2rem; }
.complete-link-box span { font-size: 0.9rem; font-weight: 600; }
.complete-link-box small { font-size: 0.75rem; color: #A8C4E8; }

.btn-complete {
  padding: 14px 40px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}
.btn-complete:hover { background: var(--rose-hover); }

/* ============================================================
   SCROLL TO TOP
============================================================ */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(201,78,110,0.4);
  z-index: 900;
  transition: var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--rose-hover); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 100px; }
  .hero-inner { max-width: 100%; }
  .hero-highlight-cards { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { justify-content: center; }
  .hero-trust { text-align: center; }
  .hero-mockup { width: 100%; display: flex; justify-content: center; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-wrap { grid-template-columns: 1fr; }
  .plan-card { max-width: 100%; }
  .centers-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .vigi-inner { flex-direction: column; }
  .vigi-text { text-align: center; }
  .realtime-list li { justify-content: center; }
  .vigi-logo-block { width: 100%; }
  .vigi-partner-card { min-width: unset; width: 100%; max-width: 400px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .apply-cta-wrap { flex-direction: column; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .hero-highlight-cards { grid-template-columns: repeat(2, 1fr); }
  .steps-wrap { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 8px 0; }
  .step-card { max-width: 100%; width: 100%; }
  .step-card.featured { transform: none; }

  .benefits-grid { grid-template-columns: 1fr; }
  .centers-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pay-methods-select { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .modal-box { padding: 28px 20px; }
  .apply-cta-wrap { flex-direction: column; }
  .vigi-phone-frame { width: 200px; }
  .vigi-cam-screen { height: 220px; }
}

@media (max-width: 480px) {
  .hero-highlight-cards { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .plan-wrap { grid-template-columns: 1fr; }
  .pay-methods-select { grid-template-columns: 1fr; }
  .vigi-phone-frame { width: 180px; }
}

/* ============================================================
   결제 흐름 — 단계 표시 (Step Indicator)
============================================================ */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.step-dot span,
.step-dot i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gray-200);
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}
.step-dot small {
  font-size: 0.68rem;
  color: #999;
  font-weight: 500;
  white-space: nowrap;
}
.step-dot.active span,
.step-dot.active i {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201,78,110,0.35);
}
.step-dot.active small { color: var(--rose); font-weight: 700; }
.step-dot.done span,
.step-dot.done i {
  background: var(--mint);
  color: var(--white);
}
.step-dot.done small { color: var(--mint); font-weight: 600; }

.step-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  margin: 0 6px;
  margin-bottom: 20px;
  min-width: 28px;
  transition: var(--transition);
}
.step-line.active { background: var(--mint); }

/* ============================================================
   결제 안내 모달 — 신청 정보 요약
============================================================ */
.pay-info-summary {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pis-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #2E2E2E;
  font-weight: 500;
}
.pis-row i {
  width: 16px;
  color: var(--rose);
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* ============================================================
   토스 결제 금액 박스
============================================================ */
.toss-price-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  margin-bottom: 16px;
}
.tpb-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #A8C4E8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.tpb-amount {
  font-family: 'Gowun Batang', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}
.tpb-amount span {
  font-size: 1.2rem;
  color: #C8DCFF;
}
.tpb-note {
  font-size: 0.78rem;
  color: #A8C4E8;
}

/* ============================================================
   토스 결제 버튼
============================================================ */
.btn-toss-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px;
  background: #0064FF;
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 12px;
  box-shadow: 0 6px 20px rgba(0, 100, 255, 0.3);
  cursor: pointer;
}
.btn-toss-pay:hover {
  background: #0052D4;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 100, 255, 0.4);
}
.btn-toss-pay svg { flex-shrink: 0; }

/* ============================================================
   토스 결제 안내 박스
============================================================ */
.toss-guide {
  background: #FFF8E8;
  border: 1px solid #F4D48A;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tg-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.83rem;
  color: #5A4500;
  line-height: 1.6;
}
.tg-item i {
  color: #D4922A;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.tg-item strong { color: #3A2D00; }

/* ============================================================
   다른 결제 수단
============================================================ */
.other-pay-wrap {
  margin-bottom: 16px;
}
.other-pay-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #888;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}
.other-pay-title::before,
.other-pay-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: var(--gray-200);
}
.other-pay-title::before { left: 0; }
.other-pay-title::after  { right: 0; }

.other-pay-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.btn-other-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-other-pay.kakao {
  background: #FEE500;
  color: #3C1E1E;
}
.btn-other-pay.kakao:hover { background: #F5DC00; transform: translateY(-1px); }
.btn-other-pay.account {
  background: var(--gray-100);
  color: #2A2A2A;
  border: 1.5px solid var(--gray-200);
}
.btn-other-pay.account:hover { background: var(--gray-200); transform: translateY(-1px); }

/* ============================================================
   계좌이체 정보 박스
============================================================ */
.account-info-box {
  background: var(--cream);
  border: 1.5px solid var(--rose-pale);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 14px;
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.aib-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.aib-title i { color: var(--rose); }
.aib-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--gray-200);
}
.aib-row:last-of-type { border-bottom: none; }
.aib-row span { color: #555; }
.aib-row strong { color: var(--navy); font-weight: 700; }
.aib-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #3D3D3D;
  line-height: 1.7;
  background: rgba(201,78,110,0.05);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.aib-note strong { color: var(--rose); }

/* ============================================================
   결제 완료 — 고객센터 박스
============================================================ */
.complete-cs-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
  text-align: left;
}
.complete-cs-box i {
  font-size: 1.6rem;
  color: var(--rose);
  flex-shrink: 0;
}
.complete-cs-box strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.complete-cs-box span {
  font-size: 0.85rem;
  color: #3D3D3D;
}
