/* ══════════════ TOKENS — V6 네이비+오렌지 ══════════════ */
:root {
  --black:  #0e1827;       /* 딥 네이비 (기존 순검정→신선한 네이비) */
  --ink:    #12233a;
  --white:  #ffffff;
  --green:  #00b46a;       /* 밝은 민트그린 */
  --green-d:#008a50;
  --green-l:#e0f7ed;
  --green-m:#9aeac5;
  --yellow: #FF6B2B;       /* 바이탈 오렌지 (기존 노란→클릭 유발 오렌지) */
  --yellow-d:#e05520;
  --gray:   #f0f7ff;       /* 아이스 블루 배경 */
  --gray-m: #d8eaf8;
  --ink-50: #7090b0;
  --ink-20: #c8d8e8;
  --accent: #FF6B2B;
  /* 추가 토큰 */
  --navy:   #0e1827;
  --navy-m: #162236;
  --navy-l: #1e3250;
  --orange: #FF6B2B;
  --orange-d:#e05520;
  --orange-l:#fff0ea;
  --mint:   #00b46a;
  --ice:    #f0f7ff;
  --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-xl: 36px;
  --max: 480px;
}
*, *::before, *::after { box-sizing: border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust:100%; }
body {
 
  font-family: 'Noto Sans KR', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  padding-bottom: 72px;
}

/* ══════════════ SCROLL REVEAL ══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(.22,.68,0,1.2), transform 0.65s cubic-bezier(.22,.68,0,1.2);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.45s; }

/* ══════════════ SECTIONS ══════════════ */
section {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* ══════════════ §0 HERO ══════════════ */
.hero {
  background: var(--black);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}

.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Dual overlay: person visible right, text readable left */
.hero-img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(14,24,39,0.88) 0%, rgba(14,24,39,0.50) 52%, rgba(14,24,39,0.06) 100%),
    linear-gradient(to bottom, rgba(14,24,39,0.04) 0%, rgba(14,24,39,0.42) 68%, rgba(14,24,39,0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 36px;
}

/* Pill badge */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,43,0.18);
  color: #FF9060;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,107,43,0.35);
}

.hero h1 {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  color: var(--mint);
  position: relative;
  display: inline-block;
}

/* Brush underline on em */
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px; right: 0;
  height: 4px;
  background: var(--mint);
  border-radius: 2px;
  opacity: 0.5;
  transform: scaleX(0);
  transform-origin: left;
  animation: brushIn 0.6s 0.9s cubic-bezier(.22,.68,0,1) forwards;
}

@keyframes brushIn { to { transform: scaleX(1); } }

/* Big number display */
.hero-nums {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.num-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.num-main {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 68px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.num-main.yellow { color: var(--mint); }

.num-unit {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  opacity: 0.9;
  margin-left: 2px;
}

.num-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.btn-primary {
  flex: 1;
  background: linear-gradient(135deg, #FF6B2B 0%, #e85520 100%);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 900;
  font-family: 'Noto Sans KR', sans-serif;
  cursor: pointer;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.12s, background 0.12s;
  box-shadow: 0 4px 18px rgba(255,107,43,0.45);
  letter-spacing: -0.01em;
}
.btn-primary:active { transform: scale(0.97); background: linear-gradient(135deg,#e85520,#cc4410); }

.btn-kakao {
  width: 52px; height: 52px;
  background: #FEE500;
  border: none; border-radius: var(--r-md);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(-6px)}
}

/* ══════════════ §1 BEFORE/AFTER ══════════════ */
.ba-section {
  background: var(--ice);
  color: #12233a;
  padding: 48px 24px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.ba-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ba-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}

.ba-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.ba-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

.ba-tag.before {
  background: #333;
  color: #fff;
}

.ba-tag.after {
  background: var(--orange);
  color: #fff;
}

.ba-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
}

.ba-overlay strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}

.ba-overlay span {
  font-size: 11px;
  opacity: 0.75;
}

/* ══════════════ §2 NUMBERS ══════════════ */
.numbers-section {
  background: transparent;
  padding: 0;
  text-align: center;
  position: relative;
}

.numbers-section .section-eyebrow { color: var(--orange); }
.numbers-section .section-title { color: var(--white); }

.big-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 24px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}

.big-num-card {
  background: rgba(255,255,255,0.04);
  padding: 24px 16px;
  text-align: center;
}

.bnum {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}

.bnum.blue { color: #749DFB; }
.bnum.green { color: #00e48a; }

.bnum-sub {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  display: block;
}

.bnum-desc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* Free list */
.free-list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
}

.free-item {
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(0,180,106,0.2);
  border-radius: var(--r-md);
  padding: 16px 8px;
  text-align: center;
  border-top: 2px solid rgba(0,180,106,0.3);
}

.free-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin: 0 auto 8px;
}

.free-icon.blue { background: rgba(77,166,255,0.15); }
.free-icon.green { background: rgba(77,255,158,0.15); }
.free-icon.purple { background: rgba(180,100,255,0.15); }

.free-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.9); }
.free-sub { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ══════════════ §3 BENEFITS ══════════════ */
.benefits-section { background: transparent; color: var(--ink); padding: 0; position: relative; overflow: hidden; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.benefit-card {
  background: rgba(255,255,255,0.9);
  border-radius: var(--r-lg);
  padding: 20px 16px;
  border: 0.5px solid rgba(0,180,106,0.2);
  border-left: 3px solid var(--mint);
  transition: transform 0.15s;
  box-shadow: 0 2px 12px rgba(14,24,39,0.08);
}

.benefit-card:active { transform: scale(0.97); }

.benefit-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, #e0f7ed, #f0fff8);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,180,106,0.15);
}

.benefit-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.benefit-desc {
  font-size: 11px;
  color: var(--ink-50);
  line-height: 1.55;
}

/* ══════════════ §4 PROCESS ══════════════ */
.process-section {
  background: transparent;
  color: var(--ink);
  padding: 0;
  position: relative;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 28px;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 17px; top: 38px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-m), transparent);
}

.step-circle {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #00b46a, #008a50);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,180,106,0.35);
}

.step-body { padding-top: 7px; }
.step-body strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.step-body p { font-size: 12px; color: var(--ink-50); line-height: 1.6; }

/* ══════════════ §5 CTA BANNER ══════════════ */
.cta-banner { background: transparent; padding: 0; text-align: center; position: relative; overflow: hidden; }



.cta-banner .pill-badge {
  background: rgba(255,107,43,0.25);
  color: #FF9060;
  border: 1px solid rgba(255,107,43,0.4);
  margin: 0 auto 16px;
  display: table;
}

.cta-banner h2 {
  font-family: 'Noto Serif KR', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 6px;
}

.cta-banner p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 24px;
}

.btn-white {
  width: 100%;
  background: linear-gradient(135deg, #FF6B2B 0%, #e85520 100%);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  padding: 16px;
  font-size: 16px;
  font-weight: 900;
  font-family: 'Noto Sans KR', sans-serif;
  cursor: pointer;
  margin-bottom: 10px;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.12s;
  box-shadow: 0 4px 18px rgba(255,107,43,0.40);
  letter-spacing: -0.01em;
}
.btn-white:active { transform: scale(0.97); }

/* ══════════════ §6 REVIEWS ══════════════ */
.reviews-section {
  background: var(--black);
  padding: 52px 0;
}

.reviews-inner { padding: 0 24px; }

.reviews-section .section-title { color: var(--white); }

.reviews-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 24px 16px;
  margin: 0 -24px;
}
.reviews-scroll::-webkit-scrollbar { display: none; }

.review-card {
  min-width: 260px;
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(0,180,106,0.2);
  border-radius: var(--r-lg);
  padding: 20px;
  scroll-snap-align: start;
  flex-shrink: 0;
  border-top: 2px solid rgba(0,180,106,0.4);
}

.review-stars { color: var(--orange); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }

.review-quote {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-author { display: flex; align-items: center; gap: 10px; }

.review-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-d);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--white);
}

.review-name { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.9); }
.review-meta { font-size: 10px; color: rgba(255,255,255,0.4); }

/* ══════════════ §7 FAQ ══════════════ */
.faq-section {
  background: var(--ice);
  color: var(--navy);
  padding: 52px 24px;
}

.faq-list { display: flex; flex-direction: column; gap: 6px; }

.faq-item {
  background: #ffffff;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid #d0e4f4;
  border-left: 4px solid var(--mint);
  box-shadow: 0 2px 10px rgba(14,24,39,0.07);
}

.faq-q {
  padding: 15px 16px;
  font-size: 13px; font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  user-select: none; -webkit-tap-highlight-color: transparent;
}

.faq-icon { font-size: 18px; color: var(--mint); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open {
  background: #f4faff;
  border-left-color: var(--orange);
  box-shadow: 0 4px 16px rgba(14,24,39,0.10);
}

.faq-a {
  display: none;
  padding: 0 16px 14px;
  font-size: 12px; color: #446080;
  line-height: 1.75; border-top: 1px solid #d0e4f4; padding-top: 10px;
}
.faq-item.open .faq-a { display: block; }

/* ══════════════ §8 INLINE FORM ══════════════ */
.form-section {
  display: none !important;
}
.form-section .section-eyebrow { color: #7a5c00; }
.form-section .section-title { color: #1a1a0a; }

.form-card {
  background: #ffffff;
  border: 1.5px solid #e2d9c0;
  border-radius: var(--r-xl);
  padding: 24px 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.field-group { margin-bottom: 16px; }

.field-label {
  font-size: 12px; font-weight: 700;
  color: #2a2a1a;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}

.field-req {
  font-size: 10px; background: rgba(220,50,30,0.12);
  color: #c03010; padding: 2px 6px; border-radius: 4px;
}

.prog-grid { display: grid; grid-template-columns: 1fr; gap: 5px; }

.prog-opt {
  border: 1.5px solid #c8daea;
  border-radius: var(--r-sm);
  padding: 9px 10px;
  cursor: pointer;
  background: #f4faff;
  user-select: none; -webkit-tap-highlight-color: transparent;
  transition: all 0.12s;
}
.prog-opt:hover { border-color: #00b46a; background: #e8fff4; }
.prog-opt.active {
  border-color: #00b46a;
  background: linear-gradient(135deg, #e0fff2 0%, #f0fff8 100%);
  box-shadow: 0 0 0 2px rgba(0,180,106,0.2);
}
.prog-opt-name { font-size: 11px; font-weight: 700; display: block; color: #1a1a0a; }

/* Expand / etc panel */
.prog-opt-full { grid-column: 1/-1; }
.prog-opt-expand { display: flex; flex-direction: column; }
.prog-etc-name { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.etc-label { font-size: 11px; font-weight: 700; color: #1a1a0a; }
.etc-arrow { font-size: 11px; color: #a07800; transition: transform 0.2s; }
.etc-arrow.open { transform: rotate(180deg); }
.etc-selected { font-size: 10px; color: #a07800; margin-top: 3px; display: block; }
.etc-panel {
  display: none; grid-template-columns: 1fr 1fr;
  gap: 5px; margin-top: 6px;
  background: #fffbe8;
  border: 1px solid #e8d080;
  border-radius: var(--r-sm);
  padding: 8px;
  animation: fadeDown 0.18s ease;
}
.etc-panel.open { display: grid; }
.etc-panel .prog-opt { background: #fff; }
@keyframes fadeDown { from{opacity:0;transform:translateY(-4px)} to{opacity:1;transform:translateY(0)} }
.etc-panel .prog-opt { background: rgba(255,255,255,0.04); }

.region-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }

select, input[type=text], input[type=tel], textarea {
  width: 100%;
  border: 1.5px solid #c8daea;
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 16px;
  font-family: 'Noto Sans KR', sans-serif;
  color: #1a1a0a;
  background: #f4faff;
  appearance: none; -webkit-appearance: none; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
select:focus, input:focus, textarea:focus {
  border-color: #0098d0;
  box-shadow: 0 0 0 3px rgba(0,152,208,0.15);
  background: #fff;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a7000' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  background-color: #f4faff;
  padding-right: 32px;
}
select option { background: #fff; color: #1a1a0a; }
textarea { resize: none; min-height: 80px; line-height: 1.6; font-size: 14px; }
textarea::placeholder { color: #b0a888; font-size: 11px; line-height: 1.6; }
input::placeholder { color: #b0a888; }

.privacy-row {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 12px; background: #e8f4ff;
  border: 1px solid #c0d8ee;
  border-radius: var(--r-sm); margin-bottom: 14px;
}
.privacy-row input[type=checkbox] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px;
  accent-color: #00b46a; cursor: pointer;
}
.privacy-row label { font-size: 11px; color: #4a4030; line-height: 1.55; cursor: pointer; }
.privacy-row a { color: #9a7000; font-weight: 700; text-decoration: none; }

.submit-btn {
  width: 100%; 
  background: linear-gradient(135deg, #FF6B2B 0%, #e05520 100%);
  color: #fff;
  border: none; border-radius: var(--r-md);
  padding: 16px; font-size: 16px; font-weight: 900;
  font-family: 'Noto Sans KR', sans-serif; cursor: pointer;
  -webkit-tap-highlight-color: transparent; transition: transform 0.12s;
  box-shadow: 0 4px 14px rgba(255,107,43,0.4);
  letter-spacing: -0.01em;
}
.submit-btn:hover { background: linear-gradient(135deg, #ff8040 0%, #e06030 100%); }
.submit-btn:active { transform: scale(0.97); }

.form-or { text-align: center; font-size: 11px; color: #b0a060; margin: 10px 0; position: relative; }
.form-or::before, .form-or::after {
  content: ""; position: absolute; top: 50%; width: 44%; height: 0.5px; background: #ddd0a0;
}
.form-or::before { left: 0; } .form-or::after { right: 0; }

.kakao-btn-full {
  width: 100%; background: #FEE500; color: #191919;
  border: none; border-radius: var(--r-md);
  padding: 14px; font-size: 14px; font-weight: 700;
  font-family: 'Noto Sans KR', sans-serif; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  -webkit-tap-highlight-color: transparent;
}

.form-note { text-align: center; font-size: 11px; color: #8a7a50; margin-top: 10px; line-height: 1.6; }

/* SUCCESS */
.success-box {
  display: none; background: #e8f5ee;
  border: 1.5px solid #7fcc9f;
  border-radius: var(--r-lg); padding: 24px 20px; text-align: center; margin-top: 12px;
}
.success-box.show { display: block; animation: fadeUp 0.35s ease; }
@keyframes fadeUp { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.success-icon {
  width: 52px; height: 52px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; color: #fff; font-size: 22px;
}
.success-title { font-size: 15px; font-weight: 700; color: #1a7040; margin-bottom: 10px; }
.success-list { list-style: none; text-align: left; }
.success-list li {
  font-size: 12px; color: #2a5030;
  padding: 4px 0; display: flex; align-items: flex-start; gap: 7px; line-height: 1.55;
}
.success-list li::before {
  content: ""; width: 5px; height: 5px; background: var(--green);
  border-radius: 50%; flex-shrink: 0; margin-top: 6px;
}

/* ══════════════ FOOTER ══════════════ */
footer {
  background: #09121e;
  color: rgba(255,255,255,0.25);
  text-align: center; padding: 28px 20px;
  font-size: 10px; line-height: 2;
}
footer strong { color: rgba(255,255,255,0.5); }

/* ══════════════ MOBILE STICKY BAR ══════════════ */
.sticky-bar {
  position: fixed; bottom: 0; left: 50%; z-index: 300;
  width: 100%; max-width: var(--max);
  transform: translateX(-50%) translateY(100%);
  background: linear-gradient(120deg, #0a1628 0%, #0e2040 40%, #0a1628 100%);
  border-top: 1px solid rgba(255,107,43,0.3);
  padding: 11px 16px;
  padding-bottom: calc(11px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 32px rgba(10,22,40,0.65), 0 -1px 0 rgba(255,107,43,0.2);
  transition: transform 0.3s cubic-bezier(.22,.68,0,1);
}
.sticky-bar.show { transform: translateX(-50%) translateY(0); }

.sticky-inner { display: flex; align-items: center; gap: 12px; }
.sticky-text { flex: 1; min-width: 0; }

.sticky-title {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.sticky-sub { display: none; }

.sticky-amount {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-wrap: nowrap;
}

.sticky-amount-main {
  font-family: 'Noto Serif KR', serif;
  font-size: 22px;
  font-weight: 700;
  color: #00e48a;
  letter-spacing: -0.04em;
  line-height: 1;
}

.sticky-amount-unit-sm {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,210,0,0.8);
  margin-left: 1px;
  margin-right: 6px;
  line-height: 1.2;
  align-self: flex-end;
  margin-bottom: 2px;
}

.sticky-amount-sep {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin: 0 7px 2px;
  align-self: flex-end;
}

.sticky-amount-sub {
  font-family: 'Noto Serif KR', serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.02em;
  line-height: 1;
  align-self: flex-end;
  margin-bottom: 1px;
}

.sticky-amount-sub span {
  font-size: 20px;
  font-weight: 700;
  color: #FF9060;
}

.sticky-btn {
  background: linear-gradient(135deg, #FF6B2B 0%, #e85520 100%);
  color: #fff;
  border: none; border-radius: 10px;
  padding: 12px 18px; font-size: 14px; font-weight: 900;
  font-family: 'Noto Sans KR', sans-serif;
  white-space: nowrap; cursor: pointer; flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 3px 12px rgba(255,107,43,0.45);
  letter-spacing: -0.01em;
}

/* ══════════════ SHEET ══════════════ */
.sheet-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 400; align-items: flex-end;
}
.sheet-overlay.show { display: flex; animation: fadeOverlay 0.22s ease; }
@keyframes fadeOverlay { from{opacity:0} to{opacity:1} }

.sheet {
  width: 100%; max-width: var(--max); margin: 0 auto;
  max-height: 92vh; background: linear-gradient(180deg, #e8f4ff 0%, #f4f9ff 100%);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  display: flex; flex-direction: column;
  animation: slideUp 0.3s cubic-bezier(0.32,0.72,0,1);
}
@keyframes slideUp { from{transform:translateY(100%)} to{transform:translateY(0)} }

.sheet-handle {
  flex-shrink: 0; display: flex; flex-direction: column;
  align-items: center; padding: 12px 20px 0; gap: 12px;
}
.sheet-bar { width: 36px; height: 4px; background: #9ac8e8; border-radius: 2px; }
.sheet-header { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.sheet-title { font-size: 16px; font-weight: 700; color: #0e1827; }
.sheet-close {
  width: 30px; height: 30px; background: #c8e4f0;
  border: none; border-radius: 50%; font-size: 16px;
  color: #1a4060; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.sheet-body {
  flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 16px 20px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
}

/* desktop-right: 모바일 기본 숨김, 데스크탑에서만 표시 */
.desktop-right { display: none; }



/* ════════════════════════════════════
   RESPONSIVE CENTERED LAYOUT
   모바일 / 태블릿 / 데스크탑 가운데 정렬
════════════════════════════════════ */
:root { --page-w: 520px; }



.page-desktop {
  width: 100%;
  max-width: var(--page-w);
}

section {
  width: 100%;
  max-width: var(--page-w);
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

/* sticky bar & sheet 가운데 고정 */
.sticky-bar {
  left: 50% !important;
  transform: translateX(-50%) translateY(100%) !important;
  max-width: var(--page-w) !important;
  width: 100% !important;
}
.sticky-bar.show {
  transform: translateX(-50%) translateY(0) !important;
}
.sheet { max-width: var(--page-w); }

/* ── 태블릿 (≥ 600px) ── */
@media (min-width: 600px) and (max-width: 899px) {
  :root { --page-w: 560px; }
  .hero h1 { font-size: 36px; }
  .num-main { font-size: 72px; }
}

/* ════════════════════════════════════
   DESKTOP (≥ 900px): 2컬럼 레이아웃
════════════════════════════════════ */
@media (min-width: 900px) {
  :root { --page-w: 1200px; }
  body { padding-bottom: 0; }

  .sticky-bar { display: none !important; }
  .sheet-overlay { display: none !important; }

  .page-desktop {
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: start;
    max-width: 1200px;
  }

  .desktop-left { min-width: 0; }

  section { max-width: 100%; }

  .desktop-right {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background: #09121e;
    border-left: 0.5px solid rgba(255,255,255,0.08);
    scrollbar-width: thin;
  }
  .desktop-right::-webkit-scrollbar { width: 4px; }
  .desktop-right::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius:2px; }
  .desktop-form-inner { padding: 32px 28px 40px; }

  .hero { min-height: 80vh; }
  .hero h1 { font-size: 40px; }
  .num-main { font-size: 76px; }

  .ba-section, .numbers-section > div,
  .benefits-section > div,
  .process-section, .faq-section { padding-left: 48px; padding-right: 48px; }

  .cta-banner > div { padding-left: 48px; padding-right: 48px; }
  .reviews-section { padding: 56px 0; }
  .reviews-inner { padding: 0 48px; }
  .rv-wrap { max-width: 540px; margin: 0 auto; }

  .form-section { display: none; }
}

/* ════════════════════════════════════
   SECTION SPECIFIC
════════════════════════════════════ */
/* Numbers section text glow */
.numbers-section .section-eyebrow { color: var(--yellow) !important; }
.numbers-section .section-title { color: #fff !important; text-shadow: 0 2px 14px rgba(0,0,0,0.7); }
.bnum { text-shadow: 0 0 28px rgba(77,200,255,0.45), 0 4px 14px rgba(0,0,0,0.6); }
.bnum.green { text-shadow: 0 0 28px rgba(77,255,158,0.45), 0 4px 14px rgba(0,0,0,0.6); }
.free-item { backdrop-filter: blur(8px); background: rgba(255,255,255,0.08) !important; }

/* CTA banner */
.cta-banner h2 { text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.cta-banner .pill-badge { background: rgba(255,255,255,0.18); color: #fff; }

/* BA card */
.ba-card { box-shadow: 0 8px 32px rgba(0,0,0,0.18); }
.ba-overlay { padding: 18px 14px; }
.ba-overlay strong { font-size: 13px; font-weight: 900; }

/* Benefit cards */
.benefit-card {
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* ════════════════════════════════════
   ROLLING REVIEWS
════════════════════════════════════ */
.rv-wrap {
  overflow: hidden;
  padding-bottom: 28px;
  width: 100%;
}

.rv-track {
  display: flex;
  transition: transform 0.52s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.rv-card {
  min-width: 100%;
  padding: 12px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* 롤링카드 author 영역 */
.rv-card .rv-author {
  justify-content: center;
  text-align: left;
}
.rv-card .rv-photo-wrap {
  width: 60px;
  height: 60px;
  border: 2.5px solid var(--yellow);
}
.rv-card .rv-name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.rv-card .rv-meta { color: rgba(255,255,255,0.45); font-size: 11px; }

.rv-stars { color: var(--orange); font-size: 18px; letter-spacing: 3px; margin-bottom: 16px; }

.rv-quote {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 340px;
}

.rv-author {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.rv-face {
  width: 58px; height: 58px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  flex-shrink: 0;
  border: 2.5px solid var(--yellow);
  box-shadow: 0 4px 16px rgba(255,210,0,0.28);
  background: #d8d0c8;
  display: block;
  overflow: hidden;
}

.rv-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; text-align: left; }
.rv-meta { font-size: 11px; color: rgba(255,255,255,0.45); text-align: left; }

.rv-badge {
  display: inline-flex;
  font-size: 10px; font-weight: 700;
  padding: 2px 7px; border-radius: 4px;
  margin-left: 4px; vertical-align: middle;
}
.rv-green  { background: rgba(0,148,87,0.22);  color: #5dffa8; }
.rv-blue   { background: rgba(41,128,185,0.22); color: #7ab8ff; }
.rv-purple { background: rgba(165,105,189,0.22); color: #d2a8ff; }

.rv-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 4px;
}
.rv-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.25);
  cursor: pointer; transition: all 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.rv-dot.active { width: 22px; background: var(--orange); }

/* Slide up animation on card enter */
@keyframes rvSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rv-card.entering { animation: rvSlideUp 0.52s cubic-bezier(0.22,0.68,0,1.1); }


/* ══ REVIEW STACK (레퍼런스 스타일) ══ */
.rv-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px 28px;
}

.rv-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 18px 16px;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.rv-row:hover { background: rgba(255,255,255,0.09); }

.rv-photo-wrap {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--yellow);
  box-shadow: 0 4px 16px rgba(255,210,0,0.3);
  background: #2a2820;
}

.rv-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.rv-content {
  flex: 1;
  min-width: 0;
}

.rv-stars-sm {
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.rv-text {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 10px;
}

.rv-info {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.rv-nm {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.rv-branch {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

@media (min-width: 900px) {
  .rv-stack { padding: 0 48px 28px; }
  .rv-row { padding: 20px 22px; }
  .rv-photo-wrap { width: 80px; height: 80px; }
  .rv-text { font-size: 14px; }
}



.top-brand-logo {
  position: absolute;
  top: calc(18px + env(safe-area-inset-top));
  left: 24px;
  z-index: 5;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
}
.top-brand-logo img {
  display: block;
  width: 156px;
  max-width: 42vw;
  height: auto;
  object-fit: contain;
}
@media (min-width: 900px) {
  .top-brand-logo {
    top: 24px;
    left: 30px;
    max-width: none;
    padding: 0;
  }
  .top-brand-logo img { width: 176px; }
}

/* ══ ENHANCED AUTO-ROLLING REVIEWS + BRIGHT MOBILE NAV ══ */
.reviews-section .rv-wrap { overflow: hidden; position: relative; }
.reviews-section .rv-stack {
  display: flex;
  flex-direction: row;
  gap: 0;
  padding: 0;
  width: 100%;
  transition: transform .65s cubic-bezier(.22,.68,0,1);
  will-change: transform;
}
.reviews-section .rv-row {
  min-width: 100%;
  width: 100%;
  flex: 0 0 100%;
  margin: 0;
  padding: 0 20px 14px;
  box-sizing: border-box;
}
.reviews-section .rv-row.entering { animation: rvSlideUp .55s cubic-bezier(.22,.68,0,1.1); }
.reviews-section .rv-dots { padding-top: 10px; }
.reviews-section .rv-dot { border: 0; padding: 0; }




/* ══════════════ COMPACT CONSULTATION DB UX ══════════════ */
.db-main-title {
  font-family:'Noto Serif KR',serif;
  font-size:22px;
  font-weight:900;
  color:#1a1a0a;
  line-height:1.25;
  margin:0 0 4px;
  letter-spacing:-0.03em;
}
.sheet { max-height: 88vh; }
.sheet-handle { padding:8px 16px 0; gap:8px; }
.sheet-title { font-size:15px; font-weight:900; letter-spacing:-0.03em; }
.sheet-close { width:28px; height:28px; }
.sheet-body { padding:10px 16px calc(14px + env(safe-area-inset-bottom)); }
.sheet-body .field-group,
.desktop-form-inner .field-group { margin-bottom:10px; }
.sheet-body .field-label,
.desktop-form-inner .field-label { margin-bottom:4px; font-size:11px; }
.sheet-body .prog-opt,
.desktop-form-inner .prog-opt { padding:7px 9px; }
.sheet-body select,
.sheet-body input[type=text],
.sheet-body input[type=tel],
.sheet-body textarea,
.desktop-form-inner select,
.desktop-form-inner input[type=text],
.desktop-form-inner input[type=tel],
.desktop-form-inner textarea { padding:9px 10px; font-size:14px; }
.sheet-body textarea,
.desktop-form-inner textarea { min-height:54px; }
.identity-row {
  display:grid;
  grid-template-columns:1fr 1.28fr;
  gap:8px;
  margin-bottom:10px;
}
.compact-field {
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:6px;
  min-width:0;
  background:#fffdf7;
  border:1px solid #e0d8c8;
  border-radius:10px;
  padding:4px 6px 4px 9px;
}
.compact-field label {
  display:flex;
  align-items:center;
  gap:3px;
  white-space:nowrap;
  font-size:11px;
  font-weight:800;
  color:#2a2a1a;
}
.compact-field .field-req { font-size:8px; padding:1px 4px; }
.compact-field input {
  min-width:0;
  border:0 !important;
  box-shadow:none !important;
  background:transparent !important;
  padding:7px 4px !important;
}
.sheet-body .privacy-row,
.desktop-form-inner .privacy-row { padding:8px 9px; margin-bottom:9px; }
.sheet-body .privacy-row label,
.desktop-form-inner .privacy-row label { font-size:10px !important; line-height:1.35 !important; }
.sheet-body .submit-btn,
.desktop-form-inner .submit-btn { padding:13px; }
.sheet-body .form-note,
.desktop-form-inner .form-note { margin-top:6px; line-height:1.35; }
.sheet-body .form-or,
.desktop-form-inner .form-or { margin:7px 0; }
.sheet-body .kakao-btn-full,
.desktop-form-inner .kakao-btn-full { padding:11px; }
.desktop-form-inner { padding:20px 22px 26px !important; }
@media (max-width:360px) {
  .identity-row { grid-template-columns:1fr; gap:6px; }
}

/* ═════════ V7 REFRESH ═════════ */
:root { --line-ice: #dbe9f6; --muted: #5f7a94; }

/* — 타이포 유동 스케일 — */
.hero h1 { font-size: clamp(29px, 7.8vw, 38px); }
.num-main { font-size: clamp(56px, 15vw, 72px); }
.section-title { font-size: clamp(23px, 5.6vw, 29px); }
.bnum { font-size: clamp(42px, 11vw, 54px); }
.cta-banner h2 { font-size: clamp(24px, 6vw, 30px); }
.cta-banner p { color: #fff; text-shadow: 0 1px 10px rgba(4,8,13,0.85); }

/* — FAQ — */
.faq-section .section-eyebrow { color: var(--orange-d); }

/* — 히어로 여백: 로고/스크롤힌트 충돌 방지 — */
.hero-content { padding: 96px 24px 60px; }
.scroll-hint { bottom: 12px; }
@media (max-height: 680px) {
  .hero-content { padding-top: 84px; }
  .scroll-hint { display: none; }
}

/* — 아이콘 정렬 — */
.pill-badge svg, .sticky-title svg { vertical-align: -2px; }
.pill-badge { gap: 5px; }

/* — 혜택 카드 리프레시 — */
.benefit-card {
  border: 1px solid rgba(14,24,39,0.07) !important;
  border-radius: 20px;
  padding: 22px 16px;
  box-shadow: 0 6px 22px rgba(14,24,39,0.09);
}
.benefit-icon {
  width: 42px; height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, #e9f4ff, #f7fbff);
  border: 1px solid var(--line-ice);
  color: var(--orange-d);
  box-shadow: none;
}
.benefit-name { font-size: 13.5px; }

/* — 무료 지원 3종 — */
.free-item {
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-top: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 18px;
  padding: 18px 8px;
}
.free-icon {
  background: rgba(255,107,43,0.16);
  color: #FF9060;
  width: 34px; height: 34px;
}

/* — 후기 — */
.rv-photo-wrap, .rv-card .rv-photo-wrap {
  border-color: var(--orange) !important;
  box-shadow: 0 6px 20px rgba(255,107,43,0.26);
}
.rv-stars-sm, .review-stars { color: var(--orange); }

/* — 스티키바 리프레시 — */
.sticky-bar {
  border: 2px solid #ffe34f !important;
  border-bottom: 0 !important;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(120deg, #101f34 0%, #16294a 55%, #101f34 100%);
  box-shadow:
    0 -6px 30px rgba(255,226,79,0.38),
    0 0 0 1px rgba(255,255,255,0.12) inset,
    0 -12px 44px rgba(255,210,0,0.20) !important;
}
.sticky-bar::before {
  content: "";
  position: absolute; left: 14px; right: 14px; top: -2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff58a, #ffd200, #fff58a);
  filter: drop-shadow(0 0 7px rgba(255,226,79,0.9));
}
.sticky-title { display: flex; align-items: center; gap: 5px; }

/* — 상담 폼: 네이비·아이스 통일 — */
.desktop-form-inner, .sheet-body { color: var(--navy); }
.db-main-title { color: var(--navy); }
.form-note { color: var(--muted); }
.form-or { color: #9db4c8; }
.form-or::before, .form-or::after { background: var(--line-ice); }
.compact-field { background: #fff; border: 1px solid var(--ink-20); border-radius: 12px; }
.field-label { color: var(--navy); }
.field-req { background: rgba(255,107,43,0.14); color: var(--orange-d); }
input::placeholder, textarea::placeholder { color: #9db4c8; }
.privacy-row { background: #eaf4ff; border-color: var(--line-ice); }
.privacy-row label { color: #3d556e; }
.prog-opt:hover { border-color: var(--orange); background: var(--orange-l); }
.prog-opt.active {
  border-color: var(--orange);
  background: var(--orange-l);
  box-shadow: 0 0 0 2px rgba(255,107,43,0.18);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237090b0' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}
select:focus, input:focus, textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,43,0.16);
}
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
a { color: var(--orange-d); }
a:hover { color: var(--orange); }

/* — 반응형 정리: 데스크탑 단일 정의 — */
@media (min-width: 900px) {
  .page-desktop { grid-template-columns: minmax(0,1fr) clamp(330px, 31vw, 410px); }
  .desktop-right {
    display: block;
    background: linear-gradient(180deg, #ffffff 0%, var(--ice) 100%);
    border-left: 1px solid var(--gray-m);
    box-shadow: -14px 0 44px rgba(14,24,39,0.07);
  }
  .desktop-right::-webkit-scrollbar-thumb { background: var(--ink-20); }
  .hero h1 { font-size: 40px; }
}
@media (min-width: 1280px) {
  :root { --page-w: 1280px; }
  .page-desktop { max-width: 1280px; }
}

/* — 소형 단말 — */
@media (max-width: 360px) {
  .ba-section, .faq-section { padding-left: 18px; padding-right: 18px; }
  .numbers-section > div:last-child,
  .benefits-section > div:last-child,
  .process-section > div:last-child { padding-left: 18px !important; padding-right: 18px !important; }
  .free-list { gap: 6px; }
  .sticky-btn { padding: 12px 14px; font-size: 13px; }
}

/* — 접근성: 모션 최소화 — */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scroll-hint, .hero h1 em::after { animation: none; }
  .reviews-section .rv-stack, .rv-track { transition: none; }
}
