/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #B8975A;
  --gold-light: #D4C5A0;
  --dark: #2C2A25;
  --text: #2C2A25;
  --text-body: #6B6960;
  --text-muted: #8A8275;
  --bg-page: #FAFAF7;
  --bg-body: #E8E3D6;
  --bg-card: #F0EDE4;
  --divider: #E8E3D6;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  color: var(--text);
  background: var(--bg-page);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: normal; color: var(--gold); }

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

/* ===== NAV ===== */
/* ===== NAV (디바이스별 분기, PR 2) ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background-color 0.3s ease, transform 0.3s ease, backdrop-filter 0.3s ease;
}
.nav-transparent {
  background-color: transparent;
  backdrop-filter: none;
}
.nav-scrolled {
  background-color: rgba(44, 42, 37, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  min-height: 56px;
}
.nav-logo {
  font-family: Pretendard, sans-serif;
  font-size: 18px; font-weight: 700;
  color: #E8E2D5; text-decoration: none; letter-spacing: 0.04em;
}
.nav-cta-pc {
  display: inline-flex; align-items: center;
  background-color: #B8975A; color: #2C2A25;
  font-size: 14px; font-weight: 600;
  padding: 9px 18px; border-radius: 7px;
  text-decoration: none; transition: opacity 0.2s;
  min-height: 38px;
}
.nav-cta-pc:hover { opacity: 0.88; }
@media (max-width: 767px) {
  .nav-cta-pc { display: none; }
  .nav-inner { padding: 12px 20px; min-height: 52px; }
  .nav-hidden { transform: translateY(-100%); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
  padding: 80px 64px;
}

/* 궤도 배경 비주얼 */
.orbit-bg {
  position: relative;
  flex-shrink: 0;
  align-self: center;
  margin-left: calc(-55vw / 3); /* 궤도 너비의 1/3만큼 텍스트와 겹침 */
  width: 55vw;
  height: 55vw;
  pointer-events: none;
  z-index: 0;
}
.orbit-bg .ob-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-bg .ob-ring.r1 { width: 55vw; height: 55vw; border: 0.5px solid rgba(184,151,90,0.12); animation: orbit-spin 80s linear infinite; }
.orbit-bg .ob-ring.r2 { width: 41vw; height: 41vw; border: 0.5px dashed rgba(184,151,90,0.1); animation: orbit-spin 55s linear infinite reverse; }
.orbit-bg .ob-ring.r3 { width: 27vw; height: 27vw; border: 0.8px solid rgba(184,151,90,0.18); animation: orbit-spin 35s linear infinite; }
.orbit-bg .ob-ring.r4 { width: 13vw; height: 13vw; border: 0.8px solid rgba(184,151,90,0.22); animation: orbit-spin 20s linear infinite reverse; }
.orbit-bg .ob-ring.r5 { width: 5vw; height: 5vw; border: 0.5px solid rgba(184,151,90,0.15); animation: orbit-spin 12s linear infinite; }
/* 궤도 링 위 작은 원 (링과 함께 회전) */
.orbit-bg .ob-ring::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.orbit-bg .ob-ring.r1::before {
  width: 8px; height: 8px; top: -4px;
  background: rgba(184,151,90,0.75);
  box-shadow: 0 0 8px rgba(184,151,90,0.5);
}
.orbit-bg .ob-ring.r2::before {
  width: 5px; height: 5px; top: -2.5px;
  background: rgba(212,197,160,0.65);
  box-shadow: 0 0 5px rgba(212,197,160,0.4);
}
.orbit-bg .ob-ring.r3::before {
  width: 7px; height: 7px; top: -3.5px;
  background: rgba(184,151,90,0.8);
  box-shadow: 0 0 7px rgba(184,151,90,0.5);
}
.orbit-bg .ob-ring.r4::before {
  width: 4px; height: 4px; top: -2px;
  background: rgba(184,151,90,0.55);
  box-shadow: 0 0 4px rgba(184,151,90,0.3);
}
.orbit-bg .ob-ring.r5::before {
  width: 3px; height: 3px; top: -1.5px;
  background: rgba(212,197,160,0.7);
}

.orbit-bg .ob-label {
  position: absolute;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(212,197,160,0.45);
}
@keyframes orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* 텍스트 콘텐츠 */
.hero-content {
  position: relative;
  z-index: 1;
  width: fit-content;
  display: flex;
  flex-direction: column;
}
.hero-pretitle {
  font-size: 11px; letter-spacing: 0.25em; color: var(--gold-light);
  font-weight: 500; margin-bottom: 32px; display: block;
}
.hero-q1 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero-q2 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  color: rgba(255,255,255,0.28);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.hero-gold-bar {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
}
.hero-a1, .hero-a2 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
}
.hero-a3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.9;
  margin-bottom: 44px;
}
.hero-a3 em {
  font-style: normal;
  color: var(--gold);
}
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.hero-cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.hero .btn-primary {
  padding: 16px 28px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; padding: 14px 36px;
  background: var(--gold); color: var(--dark);
  font-size: 15px; font-weight: 600; border-radius: 50px;
  letter-spacing: 0.03em; transition: all 0.25s;
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: transparent; color: var(--gold); }

.btn-secondary {
  display: inline-block; padding: 14px 36px;
  background: transparent; color: var(--gold);
  font-size: 15px; font-weight: 600; border-radius: 50px;
  letter-spacing: 0.03em; border: 1.5px solid var(--gold);
  transition: all 0.25s;
}
.btn-secondary:hover { background: var(--gold); color: var(--dark); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }

.section-tag {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 12px;
  text-align: center;
}
.section-title {
  font-size: clamp(24px, 4vw, 36px); font-weight: 800;
  text-align: center; line-height: 1.4; margin-bottom: 16px;
  color: var(--text);
}
.section-desc {
  font-size: 15px; color: var(--text-body); text-align: center;
  line-height: 1.8; margin-bottom: 48px;
}
.center-cta { text-align: center; margin-top: 48px; }

/* ===== ABOUT CARDS ===== */
.card-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  border: 1px solid var(--divider);
}
.card-icon { margin-bottom: 20px; }
.card h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 10px;
  color: var(--text);
}
.card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* ===== ENERGY GRID ===== */
.energies { background: var(--dark); }
.energies .section-tag { color: var(--gold-light); }
.energies .section-title { color: #fff; }
.energies .section-desc { color: rgba(255,255,255,0.5); }

.energy-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.energy-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  cursor: pointer;
}
.energy-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent, var(--gold));
}
.energy-card-img {
  aspect-ratio: 1; overflow: hidden;
  background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.energy-card-img img {
  width: 100%; height: 100%; object-fit: contain;
}
.energy-card-body { padding: 16px; text-align: center; }
.energy-family {
  display: inline-block; font-size: 11px;
  padding: 3px 10px; border-radius: 20px;
  background: var(--accent, var(--gold));
  color: var(--dark); font-weight: 600;
  margin-bottom: 8px; letter-spacing: 0.05em;
}
.energy-card h3 {
  font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px;
}
.energy-card h3 small {
  font-weight: 400; font-size: 12px; color: rgba(255,255,255,0.4);
  margin-left: 4px;
}
.energy-card p {
  font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5;
}

.energies .center-cta .btn-primary {
  border-color: var(--gold); color: var(--dark); background: var(--gold);
}
.energies .center-cta .btn-primary:hover {
  background: transparent; color: var(--gold);
}

/* ===== PREVIEW ===== */
.preview { background: var(--bg-body); }

.preview-pages {
  display: flex; gap: 24px; justify-content: center; align-items: center;
}
.preview-page {
  width: 220px; height: 310px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s;
}
.preview-page.featured { transform: scale(1.08); }
.preview-page:hover { transform: scale(1.05); }
.preview-page.featured:hover { transform: scale(1.12); }

.preview-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-card); border: 1px solid var(--divider);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 24px;
}
.preview-placeholder span {
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--gold); font-weight: 600; margin-bottom: 8px;
}
.preview-placeholder p {
  font-size: 14px; color: var(--text-body); font-weight: 500;
}

/* ===== STEPS ===== */
.steps {
  display: flex; align-items: flex-start; justify-content: center; gap: 16px;
  margin-top: 48px;
}
.step {
  text-align: center; flex: 1; max-width: 260px;
  position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  font-size: 14px; font-weight: 700; margin-bottom: 16px;
}
.step-icon { margin-bottom: 16px; }
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-body); line-height: 1.7; }

.step-arrow {
  display: flex; align-items: center; padding-top: 60px;
}

/* ===== PRICING ===== */
.pricing { background: var(--bg-page); }

.price-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px; align-items: start;
}
.price-card {
  background: var(--bg-card); border: 1px solid var(--divider);
  border-radius: var(--radius); padding: 36px 28px;
  text-align: center; position: relative;
  transition: transform 0.3s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(184, 151, 90, 0.15);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.06); }

.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--dark);
  font-size: 12px; font-weight: 700; padding: 4px 16px;
  border-radius: 20px; letter-spacing: 0.05em;
}
.price-label {
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  margin-bottom: 8px; letter-spacing: 0.05em;
}
.price-amount {
  font-size: 36px; font-weight: 800; color: var(--text);
  margin-bottom: 8px;
}
.price-card > p {
  font-size: 13px; color: var(--text-body); margin-bottom: 24px;
}
.price-card ul { margin-bottom: 28px; }
.price-card li {
  font-size: 14px; color: var(--text-body); padding: 6px 0;
  border-bottom: 1px solid var(--divider);
}
.price-card li:last-child { border-bottom: none; }

/* ===== START ===== */
.start { background: var(--dark); }
.start .section-tag { color: var(--gold-light); }
.start .section-title { color: #fff; }
.start .section-desc { color: rgba(255,255,255,0.5); }

.start-form { max-width: 560px; margin: 0 auto; }

.start-cal-type {
  display: flex; gap: 32px; justify-content: center; margin-bottom: 28px;
}
.start-radio {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  color: rgba(255,255,255,0.5); font-size: 15px; font-weight: 500;
  transition: color 0.2s;
}
.start-radio:has(input:checked) { color: var(--gold); }
.start-radio input[type="radio"] { accent-color: var(--gold); width: 16px; height: 16px; }

.start-date-row {
  display: flex; gap: 16px; align-items: center;
}
.start-date-input {
  flex: 1; padding: 14px 20px; border-radius: 50px;
  border: 1.5px solid rgba(184,151,90,0.35);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9); font-size: 15px; font-family: inherit;
  outline: none; transition: border-color 0.25s; color-scheme: dark;
}
.start-date-input:focus { border-color: var(--gold); }

.start-time-input {
  width: 130px; padding: 14px 16px; border-radius: 50px;
  border: 1.5px solid rgba(184,151,90,0.35);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9); font-size: 15px; font-family: inherit;
  outline: none; transition: border-color 0.25s, opacity 0.25s;
  color-scheme: dark; text-align: center;
}
.start-time-input:focus { border-color: var(--gold); }

.start-time-note {
  margin-top: 14px; text-align: center;
}
.start-time-note .start-radio { justify-content: center; }

.start-submit {
  display: block; margin: 24px auto 0; width: 100%; max-width: 320px;
}

.start-note {
  margin-top: 16px; text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.25);
}

/* 결과 박스 */
.start-result {
  max-width: 560px; margin: 32px auto 0;
  display: none;
}
.start-result.visible { display: block; }

.start-result-inner {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,151,90,0.3);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
}
.start-result-row {
  display: flex; align-items: center; justify-content: center; gap: 0;
  margin-bottom: 8px;
}
.start-result-block { flex: 1; }
.start-result-label {
  display: block; font-size: 12px; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4); margin-bottom: 8px;
}
.start-result-pillar {
  display: block; font-size: 28px; font-weight: 800;
  color: var(--gold); letter-spacing: 0.1em;
}
.start-result-energy {
  display: block; font-size: 18px; font-weight: 700;
  color: #fff;
}
.start-result-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.15);
  margin: 0 24px;
}
.start-result-notice {
  margin-top: 16px; font-size: 14px;
  color: rgba(255,255,255,0.5); line-height: 1.7;
}
.start-result-notice strong { color: var(--gold); }


/* ===== FAQ ===== */
.faq { background: var(--bg-body); }

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--divider);
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 0; font-size: 16px; font-weight: 600;
  color: var(--text); text-align: left;
  font-family: inherit; display: flex;
  justify-content: space-between; align-items: center;
}
.faq-q::after {
  content: '+'; font-size: 22px; font-weight: 300;
  color: var(--gold); transition: transform 0.3s;
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a { max-height: 800px; }
.faq-a p {
  padding: 0 0 20px; font-size: 14px; color: var(--text-body);
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark); padding: 60px 0 32px; color: rgba(255,255,255,0.5);
}
.footer-top {
  display: flex; justify-content: space-between; gap: 48px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-size: 24px; font-weight: 800; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 8px;
}
.footer-brand p { font-size: 14px; color: var(--gold-light); }
.footer-links { display: flex; gap: 48px; }
.footer-col h4 {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7);
  margin-bottom: 12px; letter-spacing: 0.05em;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.4);
  padding: 4px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 24px; text-align: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ===== RESPONSIVE UTILITIES ===== */
.br-mobile { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .br-mobile { display: block; }
  .br-desktop { display: none; }
  .hero { padding: 60px 24px; text-align: center; }
  .hero-content { width: 100%; align-items: center; }
  .orbit-bg {
    position: absolute;          /* 모바일은 절대 위치로 복귀 */
    width: 80vw; height: 80vw;
    margin-left: 0;
    right: calc(-80vw * 2 / 3); /* 궤도 너비의 1/3만 오른쪽에서 겹침 */
    top: 50%; transform: translateY(-50%);
    opacity: 0.5;
  }
  .orbit-bg .ob-ring.r1 { width: 80vw; height: 80vw; }
  .orbit-bg .ob-ring.r2 { width: 60vw; height: 60vw; }
  .orbit-bg .ob-ring.r3 { width: 39vw; height: 39vw; }
  .orbit-bg .ob-ring.r4 { width: 19vw; height: 19vw; }
  .orbit-bg .ob-ring.r5 { width: 7vw; height: 7vw; }
  .hero-q1, .hero-q2 { font-size: clamp(28px, 7vw, 40px); }
  .hero-cta-wrap { align-items: center; }
  .btn-primary { width: 100%; justify-content: center; }


  .card-row { grid-template-columns: 1fr; gap: 16px; }

  .energy-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .preview-pages { flex-direction: column; align-items: center; }
  .preview-page { width: 200px; height: 280px; }
  .preview-page.featured { transform: none; }

  .steps { flex-direction: column; align-items: center; gap: 24px; }
  .step-arrow { display: none; }

  .price-row { grid-template-columns: 1fr; gap: 16px; }
  .price-card.featured { transform: none; }

  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }

  .start-date-row { flex-direction: column; }
  .start-date-input { width: 100%; text-align: center; }
  .start-time-input { width: 100%; }
  .start-submit { max-width: 100%; }
}

@media (max-width: 480px) {
  .energy-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .energy-card-img { padding: 10px; }
  .energy-card-body { padding: 10px; }
  .energy-card h3 { font-size: 14px; }
}

/* ===== SCROLL ANIMATION ===== */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1; transform: translateY(0);
}

/* ===== NAV ACTIVE ===== */
.nav-active {
  color: var(--gold) !important;
}

/* ===== GUIDE: 인덱스 페이지 ===== */
.guide-hero-section {
  background: var(--dark);
  padding: 140px 0 80px;
  text-align: center;
}
.guide-hero-title {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin: 12px 0 16px;
  letter-spacing: -0.01em;
}
.guide-hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 40px;
}
.guide-grid-section {
  background: var(--dark);
  padding-top: 0;
}

/* 패밀리 필터 */
.family-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.family-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Pretendard', sans-serif;
}
.family-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.family-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 600;
}

/* 에너지 카드 — 링크 버전 */
.guide-energy-card {
  display: block;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.guide-energy-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.energy-card-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: rgba(255,255,255,0.3);
  font-size: 16px;
  transition: all 0.2s;
}
.guide-energy-card:hover .energy-card-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

/* ===== GUIDE: 상세 페이지 ===== */

/* 뒤로가기 */
.guide-back {
  padding: 80px 0 0;
  background: var(--bg-page);
}
.guide-back-link {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.guide-back-link:hover {
  color: var(--gold);
}

/* 히어로 */
.guide-detail-hero {
  background: var(--bg-page);
  padding: 40px 0 80px;
  border-bottom: 1px solid var(--divider);
}
.guide-detail-hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.guide-detail-char {
  flex-shrink: 0;
}
.guide-detail-char-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 20px;
}
.guide-family-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.guide-detail-name {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.guide-detail-name span {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 8px;
}
.guide-detail-tagline {
  font-size: 18px;
  color: var(--text-body);
  font-weight: 500;
}

/* 섹션 공통 */
.guide-section {
  padding: 80px 0;
}
.guide-content-wrap {
  max-width: 720px;
}
.guide-section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin: 12px 0 24px;
  letter-spacing: -0.01em;
}

/* 에너지 본질 */
.guide-desc-section {
  background: var(--bg-page);
}
.guide-desc-text {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 28px;
}
.guide-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.keyword-chip {
  padding: 6px 18px;
  background: rgba(184,151,90,0.1);
  border: 1px solid rgba(184,151,90,0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
}

/* 강점 & 주의 패턴 */
.guide-patterns-section {
  background: var(--bg-body);
}
.guide-patterns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.guide-pattern-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--divider);
}
.guide-strength-title { border-color: var(--gold); }
.guide-watchout-title { border-color: #C0B8A8; }

.guide-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guide-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}
.guide-list-icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 12px;
}
.guide-strength-item .guide-list-icon { color: var(--gold); }
.guide-watchout-item .guide-list-icon { color: var(--text-muted); }

/* 관련 에너지 */
.guide-related-section {
  background: var(--bg-page);
}
.guide-related-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.related-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  flex: 1;
  min-width: 240px;
  transition: all 0.25s;
  text-decoration: none;
}
.related-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.related-card-img img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.related-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.related-card-body strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.related-card-body strong small {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 6px;
}
.related-card-body p {
  font-size: 13px;
  color: var(--text-muted);
}

/* CTA */
.guide-cta-section {
  background: var(--dark);
}
.guide-cta-label {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

/* 반응형 */
@media (max-width: 768px) {
  .guide-hero-title { font-size: 28px; }
  .guide-detail-hero-inner { flex-direction: column; gap: 28px; text-align: center; }
  .guide-detail-char-img { width: 130px; height: 130px; }
  .guide-detail-name { font-size: 34px; }
  .guide-detail-tagline { font-size: 15px; }
  .guide-patterns-grid { grid-template-columns: 1fr; gap: 32px; }
  .guide-related-grid { flex-direction: column; }
  .guide-section { padding: 60px 0; }
  .guide-family-badge { display: block; width: fit-content; margin: 0 auto 14px; }
}

/* ========================================
   FREE vs FULL 비교표 스타일
   ======================================== */

/* ── PC: subgrid로 행 높이 자동 동기화 ── */
.compare-table {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(14, auto);
  max-width: 900px;
  margin: 48px auto 0;
  border: 1px solid rgba(184, 151, 90, 0.2);
  border-radius: 12px;
  overflow: hidden;
}

.compare-col {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / 15;
}

.compare-col--header { grid-column: 1; background: rgba(184, 151, 90, 0.05); }
.compare-col--free   { grid-column: 2; background: rgba(255, 255, 255, 0.02); }
.compare-col--full   {
  grid-column: 3;
  background: rgba(184, 151, 90, 0.08);
  border-left: 2px solid #B8975A;
}

.compare-cell {
  padding: 16px 12px;
  border-bottom: 1px solid rgba(184, 151, 90, 0.1);
  font-size: 14px;
  color: #2C2A25;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.compare-cell:last-child { border-bottom: none; }

.compare-cell--label {
  font-weight: 700;
  font-size: 16px;
  color: #B8975A;
  background: rgba(184, 151, 90, 0.1);
  border-bottom: 2px solid rgba(184, 151, 90, 0.3);
  line-height: 1.3;
}

.compare-cell--summary {
  font-weight: 600;
  background: rgba(184, 151, 90, 0.05);
}

.compare-cell--locked { opacity: 0.4; }

.compare-cell--price {
  font-size: 24px;
  font-weight: 700;
  color: #B8975A;
}

.compare-cell--free-price {
  color: #7A6030;
  font-size: 20px;
}

.compare-note {
  display: inline-block;
  font-size: 11px;
  color: #B8975A;
  font-weight: 600;
  margin-top: 4px;
}

.compare-note-sm {
  font-size: 11px;
  color: #7A7060;
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

/* CTA 버튼 영역 */
.compare-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.compare-cta .btn-primary,
.compare-cta .btn-secondary { min-width: 200px; text-align: center; }

/* 추가 안내 */
.pricing-notes {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.pricing-notes p {
  font-size: 13px;
  color: #6B6459;
  margin: 0;
}

/* ── 모바일: FREE 카드 + FULL 카드 세로 스택 ── */
@media (max-width: 768px) {
  .compare-table {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: none;
    border-radius: 0;
    overflow: visible;
    margin-top: 36px;
  }

  /* 헤더 컬럼 숨김 — 항목명은 ::before로 표시 */
  .compare-col--header { display: none; }

  /* FREE / FULL 컬럼을 독립 카드로 */
  .compare-col--free,
  .compare-col--full {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(184, 151, 90, 0.25);
    border-radius: 12px;
    overflow: hidden;
    grid-column: auto;
    grid-row: auto;
  }

  .compare-col--full {
    border-top: 3px solid #B8975A;
    border-left: none;
  }

  /* 카드 내 각 행: 항목명(좌) + 값(우) */
  .compare-cell {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    text-align: left;
    font-size: 14px;
    min-height: auto;
  }

  /* 항목명: data-label 속성에서 가져옴 */
  .compare-cell::before {
    content: attr(data-label);
    font-size: 14px;
    font-weight: 500;
    color: #5A5347;
    flex: 1;
  }

  /* 카드 헤더 행 (무료 리포트 / 풀 리포트) */
  .compare-cell--label {
    justify-content: center;
    padding: 18px 20px;
    font-size: 17px;
  }

  .compare-cell--label::before { content: none; }

  /* 분량·가격 행 */
  .compare-cell--summary {
    background: rgba(184, 151, 90, 0.06);
    font-weight: 600;
  }

  .compare-cell--price { font-size: 20px; }
  .compare-cell--free-price { font-size: 16px; }

  .compare-note {
    display: inline;
    font-size: 11px;
    margin-top: 0;
    margin-left: 4px;
  }

  .compare-cta {
    flex-direction: column;
    align-items: center;
  }

  .compare-cta .btn-primary,
  .compare-cta .btn-secondary {
    width: 100%;
    max-width: 320px;
    min-width: unset;
  }

  .pricing-notes {
    flex-direction: column;
    gap: 10px;
  }

  .pricing-notes p { text-align: center; }
}

/* ========================================
   WHAT IS DYU 섹션 — 자기 진단형 리뉴얼
   ======================================== */

.about-headline {
  margin-bottom: 32px;
}

.about-headline em {
  color: #B8975A;
  font-style: normal;
  font-weight: 700;
}

.about-scenarios {
  max-width: 640px;
  margin: 0 auto 32px;
  padding: 24px 32px;
  background: rgba(184, 151, 90, 0.04);
  border-left: 2px solid rgba(184, 151, 90, 0.3);
  border-radius: 0 8px 8px 0;
}

.about-scenario {
  font-size: 16px;
  line-height: 1.8;
  color: #4A433A;
  margin: 0 0 12px 0;
  font-style: italic;
}

.about-scenario:last-child {
  margin-bottom: 0;
}

.about-scenario::before {
  content: '"';
  color: #B8975A;
  font-size: 20px;
  margin-right: 6px;
}

.about-scenario::after {
  content: '"';
  color: #B8975A;
  font-size: 20px;
  margin-left: 6px;
}

.about-message {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 640px;
}

.about-message p {
  font-size: 17px;
  line-height: 1.7;
  color: #3A3430;
  margin: 0 0 8px 0;
}

.about-message-emphasis {
  font-size: 19px !important;
  font-weight: 700 !important;
  color: #1A1512 !important;
}

.about-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #B8975A, transparent);
  margin: 0 auto 32px;
}

.about-bridge {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #B8975A;
  letter-spacing: 0.5px;
  margin: 0 auto 56px;
}

@media (max-width: 768px) {
  .about-scenarios {
    padding: 20px;
    margin-bottom: 24px;
    border-left: none;
    border-radius: 8px;
    text-align: center;
  }

  .about-scenario {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-message {
    margin-bottom: 36px;
  }

  .about-message p {
    font-size: 15px;
  }

  .about-message-emphasis {
    font-size: 17px !important;
  }

  .about-bridge {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .about-divider {
    margin-bottom: 24px;
  }
}

/* ========================================
   SECTION 4: REPORT PREVIEW — 6 카드 그리드
   ======================================== */

/* 안내 라벨 */
.preview-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}

.preview-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #8A8070;
}

.preview-legend-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.preview-legend-item .dot-free {
  background: #B8975A;
}

.preview-legend-item .dot-lock {
  background: #4A453D;
  border: 1px solid #8A8070;
}

/* 카드 그리드 */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* 공통 카드 스타일 */
.preview-card {
  position: relative;
  background: #3A3831;
  border: 1px solid rgba(184, 151, 90, 0.15);
  border-radius: 12px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 151, 90, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* FREE 카드 */
.preview-card--free {
  background: #3A3831;
}

/* LOCK 카드 */
.preview-card--lock {
  background: #2E2C28;
  border-color: rgba(184, 151, 90, 0.1);
}

/* 카드 헤더 */
.preview-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.preview-card-tag {
  font-size: 11px;
  font-weight: 600;
  color: #8A8070;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.preview-card-status {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  background: rgba(184, 151, 90, 0.15);
  color: #B8975A;
}

.preview-card-status--lock {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(138, 128, 112, 0.1);
  color: #8A8070;
}

/* 카드 제목 */
.preview-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #E8E2D5;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

/* 카드 본문 */
.preview-card-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: #B8B0A0;
  margin: 0 0 16px 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 블러 처리 */
.preview-card-excerpt--blurred {
  filter: blur(3.5px);
  user-select: none;
  pointer-events: none;
}

/* LOCK 오버레이 */
.preview-card-lock-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 24px;
  background: linear-gradient(
    to top,
    rgba(46, 44, 40, 0.98) 0%,
    rgba(46, 44, 40, 0.85) 60%,
    rgba(46, 44, 40, 0) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.preview-card-lock-overlay p {
  font-size: 13px;
  font-weight: 600;
  color: #B8975A;
  margin: 0;
  letter-spacing: 0.5px;
}

/* 카드 푸터 */
.preview-card-footer {
  margin-top: auto;
}

.preview-card-cta {
  font-size: 12px;
  font-weight: 600;
  color: #B8975A;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.preview-card:hover .preview-card-cta {
  color: #D4C5A0;
}

/* 안내 문구 */
.preview-note {
  text-align: center;
  font-size: 12px;
  color: #6A6358;
  margin: 32px auto 0;
  font-style: italic;
}

/* ========================================
   MODAL: REPORT PREVIEW
   ======================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 14, 12, 0.92);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modalFadeIn 0.25s ease;
}

.modal-overlay.is-open {
  display: flex;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-container {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  background: #3A3831;
  border: 1px solid rgba(184, 151, 90, 0.2);
  border-radius: 16px;
  padding: 48px;
  overflow-y: auto;
  animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 모달 닫기 버튼 */
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #8A8070;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(184, 151, 90, 0.1);
  color: #E8E2D5;
}

/* 모달 네비 버튼 */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(58, 56, 49, 0.9);
  border: 1px solid rgba(184, 151, 90, 0.3);
  border-radius: 50%;
  color: #B8975A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}

.modal-nav:hover {
  background: rgba(184, 151, 90, 0.2);
  border-color: #B8975A;
}

.modal-nav--prev { left: -24px; }
.modal-nav--next { right: -24px; }

.modal-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* 모달 콘텐츠 */
.modal-content {
  color: #E8E2D5;
}

.modal-content-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #8A8070;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modal-content-title {
  font-size: 28px;
  font-weight: 700;
  color: #FAFAF7;
  margin: 0 0 24px 0;
  line-height: 1.3;
}

.modal-content-body {
  font-size: 15px;
  line-height: 1.9;
  color: #D4C5A0;
}

.modal-content-body p { margin: 0 0 16px 0; }

.modal-content-body strong {
  color: #FAFAF7;
  font-weight: 600;
}

/* LOCK 모달 CTA */
.modal-lock-cta {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(184, 151, 90, 0.12), rgba(184, 151, 90, 0.04));
  border: 1px solid rgba(184, 151, 90, 0.3);
  border-radius: 12px;
  text-align: center;
}

.modal-lock-cta-title {
  font-size: 16px;
  font-weight: 700;
  color: #FAFAF7;
  margin: 0 0 8px 0;
}

.modal-lock-cta-desc {
  font-size: 13px;
  color: #B8B0A0;
  margin: 0 0 16px 0;
}

.modal-lock-cta-button {
  display: inline-block;
  padding: 12px 32px;
  background: #B8975A;
  color: #2C2A25;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.modal-lock-cta-button:hover {
  background: #D4C5A0;
  transform: translateY(-1px);
}

/* 모달 인디케이터 */
.modal-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #6A6358;
  font-weight: 500;
}

.modal-current {
  color: #B8975A;
  font-weight: 700;
}

/* ========================================
   모바일 대응 (768px 이하)
   ======================================== */

@media (max-width: 768px) {
  .preview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .preview-card {
    min-height: 200px;
    padding: 20px;
  }

  .preview-card-title { font-size: 16px; }

  .preview-card-excerpt {
    font-size: 13px;
    -webkit-line-clamp: 4;
  }

  .preview-legend {
    gap: 16px;
    margin-bottom: 32px;
  }

  /* 모달 모바일 */
  .modal-overlay { padding: 0; }

  .modal-container {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    padding: 56px 24px 32px;
  }

  .modal-nav--prev { left: 8px; }
  .modal-nav--next { right: 8px; }
  .modal-nav { width: 40px; height: 40px; }
  .modal-content-title { font-size: 22px; }
  .modal-content-body { font-size: 14px; }
}

/* ========================================
   태블릿 대응 (768~1024px)
   ======================================== */

@media (min-width: 769px) and (max-width: 1024px) {
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 기존 .preview-pages 충돌 방지 */
.preview-pages { display: none; }

/* ========================================
   SECTION 7: GET STARTED — 폼 정비 v2
   ======================================== */

.start-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 auto 40px;
  max-width: 600px;
  padding: 0 20px;
}

.start-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.start-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(184, 151, 90, 0.15);
  border: 1px solid rgba(184, 151, 90, 0.3);
  color: #8A8070;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.start-step.is-active .start-step-num {
  background: #B8975A;
  border-color: #B8975A;
  color: #2C2A25;
}

.start-step-label {
  font-size: 12px;
  color: #8A8070;
  font-weight: 500;
}

.start-step.is-active .start-step-label {
  color: #E8E2D5;
  font-weight: 600;
}

.start-step-line {
  flex: 1;
  height: 1px;
  background: rgba(184, 151, 90, 0.2);
  max-width: 60px;
}

.start-field {
  margin-bottom: 20px;
  text-align: left;
}

.start-field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #B8B0A0;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.start-field-optional {
  font-size: 11px;
  font-weight: 400;
  color: #6A6358;
  margin-left: 4px;
}

.start-text-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(184, 151, 90, 0.3);
  border-radius: 8px;
  color: #FAFAF7;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.start-text-input:focus { border-color: #B8975A; background: rgba(255, 255, 255, 0.05); }
.start-text-input::placeholder { color: #6A6358; }

.start-submit {
  position: relative;
  width: 100%;
  margin-top: 8px;
}

.start-submit-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.start-submit.is-loading .start-submit-text { display: none; }
.start-submit.is-loading .start-submit-loading { display: inline-flex; }
.start-submit.is-loading { pointer-events: none; opacity: 0.85; }

.start-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(44, 42, 37, 0.2);
  border-top-color: #2C2A25;
  border-radius: 50%;
  animation: startSpin 0.8s linear infinite;
}

@keyframes startSpin { to { transform: rotate(360deg); } }

.start-trust {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.start-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #8A8070;
  margin: 0;
}

.start-result-header {
  text-align: center;
  margin-bottom: 32px;
}

.start-result-greeting {
  font-size: 13px;
  color: #B8975A;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}

.start-result-title {
  font-size: 22px;
  font-weight: 700;
  color: #FAFAF7;
  margin: 0;
}

.start-result-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(184, 151, 90, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(184, 151, 90, 0.15);
}

.start-result-character {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(184, 151, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid rgba(184, 151, 90, 0.3);
}

.start-character-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.start-result-essence {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.start-result-label {
  font-size: 11px;
  font-weight: 600;
  color: #8A8070;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.start-result-name {
  font-size: 28px;
  font-weight: 700;
  color: #B8975A;
  line-height: 1.2;
}

.start-result-tagline {
  font-size: 14px;
  color: #D4C5A0;
  margin: 4px 0 0 0;
  font-style: italic;
}

.start-result-details {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.start-result-detail-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  padding: 16px 32px;
  background: rgba(184, 151, 90, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(184, 151, 90, 0.15);
  max-width: 280px;
}

.start-result-detail {
  font-size: 18px;
  font-weight: 700;
  color: #E8E2D5;
}

.start-email-step {
  display: none;
  margin-top: 32px;
  padding: 24px;
  background: rgba(184, 151, 90, 0.04);
  border: 1px solid rgba(184, 151, 90, 0.15);
  border-radius: 12px;
}

.start-email-step.is-visible { display: block; }

.start-email-title {
  font-size: 16px;
  font-weight: 700;
  color: #FAFAF7;
  margin: 0 0 6px 0;
  text-align: center;
}

.start-email-desc {
  font-size: 13px;
  color: #B8B0A0;
  margin: 0 0 20px 0;
  text-align: center;
}

.start-email-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.start-email-input {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 151, 90, 0.4);
  border-radius: 50px;
  color: #FAFAF7;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.start-email-input:focus { border-color: #B8975A; }

.start-email-btn {
  padding: 12px 28px;
  background: #B8975A;
  color: #2C2A25;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all 0.2s;
}

.start-email-btn:hover:not(:disabled) { background: #D4C5A0; }
.start-email-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.start-email-msg {
  font-size: 12px;
  color: #B8975A;
  margin: 12px 0 0 0;
  text-align: center;
  min-height: 18px;
}

.start-email-privacy {
  font-size: 11px;
  color: #6A6358;
  text-align: center;
  margin: 16px 0 0 0;
}

@media (max-width: 768px) {
  .start-steps { gap: 8px; margin-bottom: 32px; }
  .start-step-num { width: 28px; height: 28px; font-size: 12px; }
  .start-step-label { font-size: 11px; }
  .start-step-line { max-width: 30px; }
  .start-result-hero { flex-direction: column; gap: 20px; padding: 20px; text-align: center; }
  .start-result-character { width: 100px; height: 100px; }
  .start-result-essence { align-items: center; }
  .start-result-name { font-size: 24px; }
  .start-result-detail-block { width: 100%; max-width: 100%; }
  .start-email-row { flex-direction: column; }
  .start-email-input { max-width: 100%; }
  .start-email-btn { width: 100%; }
}

/* ===== 모바일 Sticky CTA (PR 2) ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 90;
  background-color: #B8975A;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  animation: dyuStickyCtaSlideUp 0.3s ease-out;
}
.mobile-sticky-cta.visible {
  display: flex;
}
@keyframes dyuStickyCtaSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.mobile-sticky-cta-btn {
  flex: 1;
  color: #2C2A25;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  padding: 8px 0;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-sticky-cta-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(44, 42, 37, 0.15);
  border: none;
  border-radius: 50%;
  color: #2C2A25;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.mobile-sticky-cta-close:hover {
  background: rgba(44, 42, 37, 0.25);
}
@media (min-width: 768px) {
  .mobile-sticky-cta,
  .mobile-sticky-cta.visible {
    display: none !important;
  }
}

/* ===== 10 CORE ENERGIES 축약형 (PR 3) ===== */
.section-energies-compact {
  padding: 64px 24px;
  text-align: center;
}
.section-energies-compact .section-title {
  font-size: 24px;
  font-weight: 600;
  color: #2C2A25;
  margin-bottom: 12px;
}
.section-energies-compact .section-sub {
  font-size: 14px;
  color: #6A6058;
  margin-bottom: 0;
}
.energies-compact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 32px auto 24px;
  max-width: 640px;
}
.energy-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.energy-dot::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--char-color);
}
.energy-dot span {
  font-size: 12px;
  color: #6A6058;
  letter-spacing: 0.02em;
}
.energies-detail-link {
  display: inline-block;
  margin-top: 16px;
  color: #B8975A;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 151, 90, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.energies-detail-link:hover {
  border-color: #B8975A;
}
@media (max-width: 480px) {
  .section-energies-compact { padding: 48px 20px; }
  .section-energies-compact .section-title { font-size: 20px; }
  .energies-compact-grid { gap: 12px; }
  .energy-dot::before { width: 12px; height: 12px; }
}

/* ===== Beta 배지 + 만세력 근거 (PR 3) ===== */
.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 151, 90, 0.12);
  border: 1px solid rgba(184, 151, 90, 0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  color: #B8975A;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.beta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #B8975A;
  animation: dyuBetaPulse 2s ease-in-out infinite;
}
@keyframes dyuBetaPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.trust-cue {
  font-size: 12px;
  color: #8A8070;
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.01em;
}

/* ===== Footer 컴팩트 (PR 3) ===== */
.footer {
  background-color: #1E1C18;
  padding: 40px 24px 32px;
  color: #8A8070;
}
.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand {
  font-size: 14px;
  font-weight: 600;
  color: #B8975A;
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
}
.footer-links a {
  color: #8A8070;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #B8975A; }
.footer-divider { color: #4A4640; }
.footer-business {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-size: 11px;
  line-height: 1.6;
}
.footer-cpo { font-size: 11px; }
.footer-cpo a { color: #8A8070; text-decoration: underline; }
.footer-copyright {
  font-size: 11px;
  color: #6A6058;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .footer { padding: 32px 20px 24px; }
  .footer-business { flex-direction: column; gap: 4px; }
}

/* ===== 생년월일 분리 입력 (PR 4) ===== */
.birth-inputs {
  display: flex;
  gap: 8px;
  align-items: center;
}
.birth-field {
  padding: 12px 14px;
  background: #3A3831;
  border: 1px solid rgba(184, 151, 90, 0.2);
  border-radius: 8px;
  color: #E8E2D5;
  font-size: 16px;
  font-family: Pretendard, sans-serif;
  text-align: center;
  min-height: 48px;
  -moz-appearance: textfield;
}
.birth-field::-webkit-inner-spin-button,
.birth-field::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.birth-field:focus {
  outline: none;
  border-color: rgba(184, 151, 90, 0.5);
}
.birth-year { flex: 2; }
.birth-month, .birth-day { flex: 1; }
.birth-sep { color: #8A8070; font-size: 16px; }

/* ===== 섹션 맥락 연동 CTA (PR 4) ===== */
.section-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 48px 0 8px;
}
.section-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 9px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity 0.2s;
  min-height: 48px;
}
.section-cta-btn:hover { opacity: 0.88; }
.section-cta-sub {
  font-size: 12px;
  color: #8A8070;
  margin: 0;
}
.cta-price-badge {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  padding: 2px 8px;
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 480px) {
  .section-cta-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 14px 20px;
  }
}
