/* ===== FAQ Hero — Typography Centered ===== */
.faq-hero {
    padding: calc(var(--header-h) + 100px) 0 80px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.faq-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}
.faq-hero .eyebrow::after {
    content: '자주 묻는 질문';
    color: var(--text-mute);
    font-weight: 400;
    letter-spacing: 0.15em;
}
.faq-hero h1 {
    font-size: clamp(56px, 9vw, 144px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 48px;
}
.faq-hero h1 .line2 {
    display: block;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-hero p {
    font-size: 17px;
    color: var(--text-mute);
    max-width: 580px;
    line-height: 1.7;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 100px 0 140px;
    background: var(--bg);
}

.faq-filter {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}
.faq-tab {
    padding: 14px 28px;
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--text-mute);
    font-size: 14px;
    transition: all 0.3s var(--easing);
}
.faq-tab:hover { color: var(--text); border-color: var(--border-strong); }
.faq-tab.active {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(212,175,106,0.05);
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}
.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    transition: padding 0.4s var(--easing);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 36px 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    cursor: pointer;
    transition: padding 0.4s var(--easing);
}
.faq-question:hover { padding-left: 12px; }
.faq-question .cat {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    grid-column: 1 / -1;
    margin-bottom: -16px;
}
.faq-question .q {
    grid-column: 1;
    font-size: 19px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
}
.faq-question .toggle {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    transition: all 0.4s var(--easing);
    flex-shrink: 0;
}
.faq-item.open .faq-question .toggle {
    background: var(--gold);
    color: #1a1308;
    transform: rotate(45deg);
    border-color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--easing);
}
.faq-answer-inner {
    padding: 0 0 36px;
    color: var(--text-mute);
    font-size: 15px;
    line-height: 1.9;
    max-width: 800px;
}
.faq-answer-inner strong { color: var(--gold); font-weight: 500; }

/* ===== Still Questions ===== */
.still-questions {
    padding: 160px 0;
    background: var(--bg-elev);
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.still-questions::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(212,175,106,0.08), transparent 65%);
    pointer-events: none;
}
.still-questions .container { position: relative; }
.still-questions .eyebrow { margin-bottom: 36px; }
.still-questions h2 {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}
.still-questions h2 em {
    font-style: italic;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.still-questions p {
    color: var(--text-mute);
    max-width: 500px;
    margin: 0 auto 48px;
}

@media (max-width: 768px) {
    .faq-hero { padding: calc(var(--header-h) + 60px) 0 60px; }
    .faq-section, .still-questions { padding: 60px 0 80px; }
    .faq-question .q { font-size: 16px; }
    .faq-question { padding: 28px 0; }
}
