#faq {
    border-top: 1px solid var(--border);
}
.faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    margin-top: 64px;
}
.faq-sidebar {
    position: sticky;
    top: 120px;
}
.faq-sidebar h2 {
    font-size: 32px;
    margin-bottom: 16px;
}
.faq-sidebar p {
    color: var(--white-dim);
    font-size: 14px;
    line-height: 1.7;
}
.faq-list {
    display: flex;
    flex-direction: column;
}
.faq-item {
    border-top: 1px solid var(--border);
    overflow: hidden;
}
.faq-item:last-child {
    border-bottom: 1px solid var(--border);
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    cursor: none;
    text-align: left;
}
.faq-q-text {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}
.faq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
        background 0.2s,
        border-color 0.2s;
    color: var(--white);
}
.faq-item.open .faq-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
}
.faq-item.open .faq-a {
    max-height: 400px;
}
.faq-a-inner {
    padding-bottom: 28px;
    color: var(--white-dim);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 300;
}
.faq-a-inner strong {
    color: var(--white);
    font-weight: 500;
}
