/* ════════════════════════════════════════
   page.css — 하위 페이지 공통 스타일
   ════════════════════════════════════════ */

/* 페이지 히어로 */
.page-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero .hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* 페이지 본문 */
.page-content { padding: 56px 0 80px; }

/* 정보 박스 */
.info-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.info-box.highlight {
  background: rgba(255,107,43,0.06);
  border-color: rgba(255,107,43,0.4);
  border-left-color: var(--accent);
}
.info-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.info-box ul {
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 2;
}
.info-box ul li { margin-bottom: 4px; }
.info-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* 단계 목록 */
.step-list { margin: 32px 0; }
.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* 오류 해결 아코디언 */
.faq-list { margin: 32px 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: var(--bg3);
  border: none;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-align: left;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--bg2); }
.faq-q .chevron {
  transition: transform 0.3s ease;
  color: var(--accent);
  font-size: 1.1rem;
}
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 20px 24px;
  background: var(--bg);
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.9;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }

/* 인라인 CTA */
.inline-cta {
  background: linear-gradient(135deg, #1a0f08, #2a1508);
  border: 1px solid rgba(255,107,43,0.35);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  margin-top: 48px;
}
.inline-cta h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.inline-cta p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* 활성 메뉴 */
.site-header nav a.active { color: var(--accent); }

/* 프로즈 텍스트 */
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin: 48px 0 16px;
}
.prose p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .page-hero { padding: 48px 0 32px; }
  .page-content { padding: 40px 0 56px; }
  .inline-cta { padding: 28px 20px; }
}
