/* ─────────────────────────────────
   네이버 AI 연결 부업 수익 시뮬레이터
   디자인: 노션 스타일 + Pretendard
   ───────────────────────────────── */

:root {
  --bg: #fafafa;
  --bg-card: #ffffff;
  --border: #ebebea;
  --border-strong: #d3d3d1;
  --text: #37352f;
  --text-sub: #787774;
  --text-light: #9b9a97;
  --accent: #2383e2;
  --accent-bg: #e7f3fb;
  --gold: #b58900;
  --gold-bg: #fef6e3;
  --green: #0f7b3a;
  --green-bg: #e3f3e7;
  --red: #d44c47;
  --red-bg: #fbeae9;
  --shadow-sm: 0 1px 2px rgba(15, 15, 15, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 15, 15, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 15, 15, 0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --max-w: 760px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── 진행 표시 바 ─── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 100;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2383e2 0%, #4ea7f0 100%);
  transition: width 0.4s ease;
}

/* ─── 슬라이드 컨테이너 ─── */
.slides {
  width: 100%;
  min-height: 100vh;
}
.slide {
  display: none;
  width: 100%;
  min-height: 100vh;
  padding: 64px 24px 48px;
  animation: fadeIn 0.4s ease;
}
.slide.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── 인트로 ─── */
.slide-intro.active {
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}
.intro-wrap {
  width: 100%;
  max-width: var(--max-w);
  text-align: center;
  padding: 32px 0;
}
.intro-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-bg);
  color: var(--accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.intro-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.intro-title .hl {
  color: var(--accent);
}
.intro-sub {
  font-size: 18px;
  color: var(--text-sub);
  margin-bottom: 40px;
  line-height: 1.7;
}
.intro-sub b {
  color: var(--text);
  font-weight: 600;
}
.intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.point {
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
  box-shadow: var(--shadow-sm);
}
.btn-primary.btn-start {
  font-size: 20px;
  font-weight: 700;
  padding: 22px 56px;
  background: linear-gradient(135deg, #2383e2 0%, #4ea7f0 100%);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(35, 131, 226, 0.35);
  letter-spacing: -0.01em;
  min-width: 320px;
  min-height: 64px;
  position: relative;
  animation: btnPulse 2.4s ease-in-out infinite;
  color: #ffffff;
}
.btn-primary.btn-start:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #1a73c9 0%, #3a96e0 100%);
  box-shadow: 0 14px 36px rgba(35, 131, 226, 0.5);
  animation: none;
}
.btn-primary.btn-start:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(35, 131, 226, 0.4);
}
@keyframes btnPulse {
  0%, 100% {
    box-shadow: 0 10px 28px rgba(35, 131, 226, 0.35);
  }
  50% {
    box-shadow: 0 14px 40px rgba(35, 131, 226, 0.55),
                0 0 0 10px rgba(35, 131, 226, 0.08);
  }
}
@media (max-width: 640px) {
  .btn-primary.btn-start {
    font-size: 18px;
    padding: 20px 32px;
    min-width: 88%;
    min-height: 60px;
    border-radius: 12px;
  }
}
.author {
  margin-top: 48px;
  font-size: 12px;
  color: var(--text-light);
}

/* ─── 질문 슬라이드 ─── */
.q-wrap {
  width: 100%;
  max-width: var(--max-w);
  padding: 16px 0;
}
.q-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.q-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.q-title small {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}
.q-sub {
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 32px;
}

/* ─── 카드 선택지 ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.cards-multi {
  grid-template-columns: repeat(2, 1fr);
}
.cards-conditions {
  grid-template-columns: 1fr;
}
.card {
  position: relative;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.18s ease;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card:hover {
  border-color: var(--accent);
  background: #fafcff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.card.selected {
  border-color: var(--accent);
  background: var(--accent-bg);
  color: var(--accent);
  font-weight: 600;
  box-shadow: 0 0 0 2px var(--accent-bg);
}
.card.selected::after {
  content: '✓';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--accent);
}
.card-input {
  padding: 0;
}
.card-input input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 18px 0 18px 20px;
  outline: none;
}
.card-input .unit {
  padding-right: 20px;
  color: var(--text-sub);
  font-size: 14px;
}
.card-input.selected {
  background: var(--accent-bg);
}
.card-input.selected input {
  color: var(--accent);
  font-weight: 600;
}

/* ─── 네비게이션 버튼 ─── */
.nav-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.btn-primary {
  padding: 14px 28px;
  background: var(--text);
  color: #ffffff;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.18s ease;
}
.btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary:disabled {
  background: var(--border-strong);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-ghost {
  padding: 14px 22px;
  background: transparent;
  color: var(--text-sub);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.18s ease;
}
.btn-ghost:hover {
  background: var(--border);
  color: var(--text);
}

/* ─── 결과 페이지 ─── */
.slide-result {
  background: var(--bg);
  padding: 56px 20px 32px;
}
.result-wrap {
  width: 100%;
  max-width: var(--max-w);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.result-hero {
  text-align: center;
  padding: 8px 0 16px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gold-bg);
  color: var(--gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.hero-title .hl-num {
  color: var(--accent);
}
.hero-sub {
  font-size: 16px;
  color: var(--text-sub);
}

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card-head {
  margin-bottom: 20px;
}
.card-head h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.card-desc {
  font-size: 13px;
  color: var(--text-sub);
}

/* ─── 그래프 ─── */
.chart-wrap {
  position: relative;
  height: 320px;
  margin-bottom: 16px;
}
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 13px;
  color: var(--text-sub);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.dot-ours-high { background: #2383e2; }
.dot-ours-low { background: #0f7b3a; }
.dot-others {
  background: #d44c47;
  background-image: linear-gradient(90deg, #d44c47 50%, transparent 50%);
  background-size: 8px 100%;
}
.dot-goal {
  background: var(--gold);
  background-image: linear-gradient(90deg, var(--gold) 33%, transparent 33%);
  background-size: 4px 100%;
}

/* ─── 사용자 상황 요약 ─── */
.user-summary {
  margin-top: 16px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #fafbff 0%, #f0f4fa 100%);
  border: 1px solid #d9e3f0;
  border-radius: 10px;
}
.us-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.us-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.us-tag {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 11px;
  background: white;
  border: 1px solid #d9e3f0;
  border-radius: 999px;
  color: var(--text);
  white-space: nowrap;
}
.us-hint {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  padding-top: 8px;
  border-top: 1px dashed #d9e3f0;
  margin-top: 6px;
}

/* ─── 단계별 수익 ─── */
.stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stage {
  padding: 20px 16px;
  background: var(--bg);
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
}
.stage-3 {
  background: var(--accent-bg);
  border-color: var(--accent);
}
.stage-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 4px;
}
.stage-3 .stage-tag { color: var(--accent); }
.stage-month {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.stage-amount-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}
.stage-prefix {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-sub);
  background: rgba(0,0,0,0.05);
  padding: 2px 8px;
  border-radius: 999px;
}
.stage-3 .stage-prefix {
  color: var(--accent);
  background: rgba(35, 131, 226, 0.15);
}
.stage-amount {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stage-3 .stage-amount { color: var(--accent); }
.stage-month-hl {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 6px;
  background: var(--gold);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
}
.stage-desc strong {
  color: var(--accent);
  font-weight: 700;
}
.stage-desc {
  font-size: 12px;
  color: var(--text-sub);
}

/* ─── 패시브 ─── */
.card-passive {
  background: linear-gradient(135deg, #fff8e7 0%, #fefae8 100%);
  border-color: #f5e6b3;
}
.passive-box {
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
}
.passive-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.passive-line-monthly .passive-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.passive-line-monthly .passive-value {
  font-size: 32px;
  color: var(--gold);
}
.passive-label {
  font-size: 14px;
  color: var(--text-sub);
}
.passive-label small {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}
.passive-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.passive-value-sub {
  font-size: 20px;
  color: #8a7c4f;
}
.passive-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 14px 0;
}
.passive-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-sub);
}

/* ─── 비교 표 ─── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th,
.compare-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-table th {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-sub);
  background: var(--bg);
}
.compare-table td:first-child {
  font-weight: 500;
  color: var(--text-sub);
  width: 32%;
}
.col-others {
  color: var(--text-light);
}
.col-ours {
  color: var(--accent);
  font-weight: 600;
}
.row-highlight td {
  background: var(--accent-bg);
  font-size: 15px;
  font-weight: 700;
}
.row-highlight .col-others { color: var(--text-sub); }
.row-highlight-strong td {
  background: linear-gradient(90deg, rgba(35, 131, 226, 0.12) 0%, rgba(35, 131, 226, 0.22) 100%);
  font-size: 16px;
  font-weight: 800;
  border-bottom: none;
}
.row-highlight-strong .col-ours {
  color: var(--accent);
  font-size: 17px;
}

/* 새 비교 표 (vs 구매대행) */
.compare-table-vs {
  border-collapse: separate;
  border-spacing: 0;
}
.compare-table-vs th {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 14px 10px;
}
.compare-table-vs th.col-others {
  background: #f5ebd1;
  color: #8a7c4f;
  border-bottom: 2px solid #e8d8a8;
}
.compare-table-vs th.col-ours {
  background: linear-gradient(135deg, #2383e2 0%, #4ea7f0 100%);
  color: white;
  font-size: 14.5px;
  font-weight: 800;
  border-bottom: none;
  position: relative;
  letter-spacing: -0.01em;
}
.compare-table-vs th.col-ours::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--accent);
}
.ours-badge {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 4px;
  letter-spacing: 0;
}
.compare-table-vs td {
  text-align: center;
  font-weight: 500;
  padding: 16px 10px;
}
.compare-table-vs td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  background: white;
}
.compare-table-vs td.col-others {
  background: #fcfaf2;
  color: var(--text-sub);
  font-size: 14px;
}
/* 우리 컬럼 — 진한 파랑 배경 + 좌측 두꺼운 보더 */
.compare-table-vs td.col-ours {
  background: linear-gradient(180deg, #e7f3fb 0%, #d4e9f8 100%);
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  border-left: 3px solid var(--accent);
  position: relative;
}
/* row-highlight 우리 컬럼은 더 강하게 */
.compare-table-vs tr.row-highlight td.col-ours,
.compare-table-vs tr.row-highlight-strong td.col-ours {
  background: linear-gradient(135deg, #2383e2 0%, #3a96e0 100%);
  color: white;
  font-size: 17px;
  font-weight: 800;
}
.compare-table-vs tr.row-highlight-strong td.col-ours {
  font-size: 18px;
}
.compare-table-vs tr.row-highlight td.col-others,
.compare-table-vs tr.row-highlight-strong td.col-others {
  background: #f5ebd1;
  color: #6b5d3a;
  font-weight: 700;
}
.compare-table-vs small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  display: block;
  margin-top: 3px;
}
.compare-table-vs td.col-ours small {
  color: rgba(35, 131, 226, 0.7);
}
.compare-table-vs tr.row-highlight td.col-ours small,
.compare-table-vs tr.row-highlight-strong td.col-ours small {
  color: rgba(255, 255, 255, 0.9);
}
.compare-table-vs strong {
  font-weight: 800;
}
/* 마지막 행 우리 컬럼 둥근 처리 */
.compare-table-vs tr:last-child td.col-ours {
  border-bottom-right-radius: 10px;
}
.compare-table-vs th.col-ours {
  border-top-right-radius: 10px;
}

/* 비교 요약 박스 */
.compare-summary {
  margin-top: 20px;
  padding: 22px;
  background: linear-gradient(135deg, var(--accent-bg) 0%, #d8eaf8 100%);
  border-radius: var(--radius);
  border: 1.5px solid #b9d8f3;
}
.cs-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(35, 131, 226, 0.15);
}
.cs-row:last-of-type {
  border-bottom: none;
}
.cs-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sub);
}
.cs-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.cs-row-mul .cs-value {
  font-size: 28px;
  color: #0f7b3a;
}
.cs-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(35, 131, 226, 0.3);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  text-align: center;
}
@media (max-width: 640px) {
  .cs-value { font-size: 18px; }
  .cs-row-mul .cs-value { font-size: 22px; }
}

/* ─── 9가지 조건 ─── */
.card-conditions {
  background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
}
.user-picks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px;
  background: var(--bg);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.user-picks .pick-label {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 4px;
}
.user-picks .pick-item {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.conditions-divider {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-sub);
  padding: 16px 0;
}
.conditions-headline {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.conditions-headline strong {
  font-weight: 800;
}
.hl-gold {
  color: var(--gold);
}
.all-conditions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.all-conditions li {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.check {
  font-size: 16px;
}
.conditions-footer {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  padding: 8px 0;
}
.conditions-footer strong {
  color: var(--accent);
  font-weight: 800;
}

/* ─── 코멘트 ─── */
.comment-box {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  white-space: pre-line;
}
.comment-box .quote {
  padding: 16px 20px;
  background: var(--accent-bg);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  margin: 12px 0;
  font-weight: 500;
}

/* ─── 후기 ─── */
.card-reviews {
  background: linear-gradient(135deg, #fff5f5 0%, #fffaf5 100%);
  border-color: #ffd9d9;
}
/* 클릭 안내 박스 */
.review-click-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 18px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff8e7 0%, #ffeec2 100%);
  border: 2px dashed #d4a849;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #8a6510;
  text-align: center;
  letter-spacing: -0.01em;
}
.review-click-hint strong {
  font-weight: 800;
  color: #d44c47;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.review-item {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  transition: all 0.18s ease;
  aspect-ratio: 16 / 9;
}
.review-item:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-color: var(--accent);
  z-index: 2;
}
.review-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.review-item:hover img {
  transform: scale(1.05);
}
/* 호버 시 "크게 보기" 오버레이 */
.review-item::after {
  content: '🔍 크게 보기';
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.review-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.review-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff 0%, #fef0f0 100%);
  color: var(--text-light);
  font-size: 13px;
  text-align: center;
  padding: 16px;
  gap: 8px;
}
.review-placeholder .ph-icon {
  font-size: 28px;
}
.review-placeholder .ph-tag {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  background: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--red);
}
.review-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-sub);
}

/* ─── 라이트박스 ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ─── 마지막 후킹 카드 ─── */
.card-final-hook {
  background: linear-gradient(135deg, #0f1116 0%, #1a1f2e 100%);
  border: 1px solid #2c3142;
  color: #f5f5f5;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.card-final-hook::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(35, 131, 226, 0.15), transparent 60%);
  pointer-events: none;
}
.final-hook-inner {
  position: relative;
  z-index: 1;
}
.final-hook-headline {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.final-hook-headline .strike {
  text-decoration: line-through;
  text-decoration-color: #d44c47;
  text-decoration-thickness: 3px;
  color: #b0b0b0;
}
.final-hook-sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: #d8dde6;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.final-hook-sub .hl-blue {
  color: #4ea7f0;
  font-weight: 700;
}
.final-hook-sub strong {
  color: #ffffff;
  font-weight: 700;
}
.final-hook-keypoints {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.final-hook-keypoints .kp {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #d8dde6;
}
@media (max-width: 640px) {
  .card-final-hook { padding: 32px 22px; }
  .final-hook-headline { font-size: 18px; }
  .final-hook-sub { font-size: 15px; }
  .final-hook-keypoints .kp { font-size: 12px; padding: 6px 12px; }
}

/* ─── 결과 페이지 액션 ─── */
.result-actions {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}
.result-footer {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  padding: 24px 0 12px;
}

/* ─── 반응형 ─── */
@media (max-width: 640px) {
  .slide {
    padding: 48px 18px 36px;
  }
  .intro-title {
    font-size: 36px;
  }
  .intro-sub {
    font-size: 16px;
  }
  .q-title {
    font-size: 22px;
  }
  .q-sub {
    font-size: 14px;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cards-multi {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards-conditions {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 16px 18px;
    font-size: 15px;
  }
  .hero-title {
    font-size: 24px;
  }
  .result-card {
    padding: 22px 18px;
  }
  .stages {
    grid-template-columns: 1fr;
  }
  .stage-amount {
    font-size: 20px;
  }
  .conditions-headline {
    font-size: 18px;
  }
  .compare-table {
    font-size: 13px;
  }
  .compare-table th, .compare-table td {
    padding: 10px 8px;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .chart-wrap {
    height: 260px;
  }
  .passive-value {
    font-size: 22px;
  }
}

@media (max-width: 380px) {
  .intro-title {
    font-size: 30px;
  }
  .cards-multi {
    grid-template-columns: 1fr;
  }
}
