@charset "UTF-8";
/* ======================
      FAQ HERO
====================== */
.faq-hero {
  margin-bottom: -100px;
  width: 100%;
  height: 65vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 300px 0 100px;
  position: relative;
  animation-delay: 0.5s;
}

.hero-inner {
  max-width: 900px;
}

.faq-title {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-subtext {
  font-size: 20px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.hero-underline {
  width: 0px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
  animation: underlineGrow 1.5s ease forwards;
  animation-delay: 0.2s;
}

@keyframes underlineGrow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 350px;
    opacity: 1;
  }
}
/* ============================
   HERO ENTER ANIMATION
============================ */
.faq-hero {
  opacity: 0;
  animation: heroFadeUp 1.2s ease-out forwards;
  animation-delay: 0.2s; /* 등장 타이밍 */
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ======================
      FAQ PAGE
====================== */
.faq-section {
  width: 100%;
  padding: 120px 20px;
  background: #000;
  color: #fff;
  /* 왼쪽 질문 리스트 */
  /* 오른쪽 답변 영역 */
}
.faq-section .faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;
}
@media (max-width: 900px) {
  .faq-section .faq-inner {
    grid-template-columns: 1fr;
  }
}
.faq-section .faq-questions ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-section .faq-questions .faq-item {
  padding: 16px 18px;
  border-left: 3px solid #444;
  cursor: pointer;
  font-size: 18px;
  opacity: 0.7;
  transition: 0.25s ease;
}
.faq-section .faq-questions .faq-item:hover {
  opacity: 1;
  border-left-color: #999;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}
.faq-section .faq-questions .faq-item.active {
  opacity: 1;
  border-left-color: #fff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}
.faq-section .faq-answer-box .faq-answer {
  display: none;
  animation: fadeUp 0.8s ease forwards;
}
.faq-section .faq-answer-box .faq-answer h3 {
  font-size: 26px;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}
.faq-section .faq-answer-box .faq-answer p {
  line-height: 1.7;
  opacity: 0.85;
}
.faq-section .faq-answer-box .faq-answer.show {
  display: block;
}

/* Fade Up 애니메이션 */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-right p {
  color: rgba(255, 255, 255, 0.8); /* 옅은 크림화이트 */
  font-size: 16px;
  line-height: 1.6;
}