/* ── FAQ PAGE ── */

.page-faq-full { background: var(--bg); }

/* ── HERO ── */
.faqp-hero {
    background: var(--dark);
    padding: 140px 0 80px;
    position: relative; overflow: hidden;
}
.faqp-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        repeating-linear-gradient(45deg, transparent 0, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px),
        repeating-linear-gradient(-45deg, transparent 0, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
    pointer-events: none;
}
.faqp-hero-content {
    position: relative; z-index: 1;
    max-width: 1080px; margin: 0 auto;
    padding: 0 24px; text-align: center;
}
.faqp-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 48px; font-weight: 500;
    letter-spacing: -1.92px; line-height: 56px;
    color: var(--white); margin-bottom: 16px;
}
.faqp-hero .subtitle {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px; color: rgba(255,255,255,0.6);
    line-height: 26px; letter-spacing: -0.01em;
    max-width: 600px; margin: 0 auto;
}

/* ── SPLIT LAYOUT ── */
.faqp-body {
    max-width: 1080px; margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 80px;
    align-items: start;
}

/* Sidebar */
.faqp-sidebar {
    position: sticky; top: 100px;
}
.faqp-sidebar-list {
    display: flex; flex-direction: column; gap: 4px;
    list-style: none;
}
.faqp-sidebar-link {
    display: block;
    padding: 10px 16px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 15px; color: var(--dark-50);
    letter-spacing: -0.01em;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.faqp-sidebar-link:hover {
    color: var(--dark);
    background: rgba(17,17,17,0.03);
}
.faqp-sidebar-link.active {
    color: var(--dark);
    font-weight: 500;
    background: var(--white);
}

/* Accordion content */
.faqp-content {}
.faqp-category {
    margin-bottom: 48px;
}
.faqp-category:last-child { margin-bottom: 0; }
.faqp-category-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px; font-weight: 500;
    letter-spacing: -0.4px; line-height: 26px;
    color: var(--dark); margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(17,17,17,0.08);
}
.faqp-item {
    border-bottom: 1px solid rgba(17,17,17,0.06);
    cursor: pointer;
}
.faqp-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px; font-weight: 500;
    letter-spacing: -0.2px; color: var(--dark);
    line-height: 24px;
    gap: 16px;
}
.faqp-question .accordion-icon {
    width: 20px; height: 20px;
    color: var(--dark-30);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.faqp-item.active .accordion-icon {
    transform: rotate(45deg);
}
.faqp-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1);
}
.faqp-answer p {
    padding: 0 0 20px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px; color: var(--dark-70);
    line-height: 26px; letter-spacing: -0.01em;
}
.faqp-item.active .faqp-answer { max-height: 300px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .faqp-hero h1 { font-size: 36px; line-height: 44px; }
    .faqp-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faqp-sidebar { position: static; }
    .faqp-sidebar-list {
        flex-direction: row;
        flex-wrap: wrap; gap: 8px;
    }
    .faqp-sidebar-link { font-size: 14px; padding: 8px 14px; }
}
