/* ABM Pro — 홈 화면에 추가 안내 */

.page-guide {
  background: var(--color-bg-alt);
  min-height: 100vh;
}

.page-guide #header,
.page-guide #header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 var(--color-border);
  backdrop-filter: blur(12px);
}

.page-guide #header .sitelogo a,
.page-guide #header .gnb a,
.page-guide #header .btn-m-menu {
  color: var(--color-text);
}

.guide-page {
  padding: 104px 16px 72px;
  display: flex;
  justify-content: center;
}

.guide-shell {
  width: 100%;
  max-width: 760px;
  animation: guideFadeIn 0.45s ease;
}

@keyframes guideFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.guide-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.guide-back:hover {
  color: var(--color-accent);
}

.guide-back .material-symbols-rounded {
  font-size: 1.1rem;
}

.guide-hero {
  margin-bottom: 28px;
  text-align: center;
}

.guide-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: var(--color-accent);
}

.guide-hero__icon .material-symbols-rounded {
  font-size: 2.25rem;
}

.guide-hero__title {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--color-text);
}

.guide-hero__desc {
  margin: 0 auto;
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.guide-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  margin-bottom: 16px;
  text-align: center;
}

.guide-card__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.guide-card__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.guide-card__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

.guide-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.guide-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 14px;
  border-radius: 10px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
}

.guide-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.guide-step__icon {
  color: var(--color-accent);
}

.guide-step__icon .material-symbols-rounded {
  font-size: 1.75rem;
}

.guide-step__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text);
}

.guide-step__text strong {
  font-weight: 600;
  color: var(--color-accent);
}

.guide-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  text-align: center;
}

.guide-note p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #1e40af;
}

.guide-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.guide-actions .btn {
  width: 100%;
  justify-content: center;
}

.guide-actions .btn-secondary {
  background: #fff;
  color: var(--color-accent);
  border: 1.5px solid var(--color-border);
  box-shadow: none;
}

.guide-actions .btn-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

@media (max-width: 480px) {
  .guide-page {
    padding-top: 88px;
  }

  .guide-card {
    padding: 22px 16px;
  }
}
