/* FAQ */
:root {
    --faq-bg: rgba(0, 0, 0, 0.25);
    --faq-fg: #f2f2f2;
    --faq-muted: #a8acb3;
    --faq-accent: #feec02;
    --faq-border: #1f2126;
}

.faq {
    background: var(--faq-bg);
    color: var(--faq-fg);
    padding: 24px clamp(16px, 3vw, 40px);
    border-radius: 14px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--faq-border);
}

.faq-q {
    margin: 0;
}

.faq-q > button {
    width: 100%;
    text-align: left;
    background: transparent;
    color: var(--faq-fg);
    border: 0;
    padding: 18px 0;
    font: 600 1.1rem/1.3 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 400;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q > button:hover,
.faq-q > button:focus-visible {
    outline: none;
    color: #fff;
}

.faq-toggle {
    margin-left: auto;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1px solid var(--faq-border);
    position: relative;
    flex: 0 0 22px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--faq-accent);
    transform: translate(-50%, -50%);
}

.faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-toggle::after {
    display: none;
}

.faq-a {
    overflow: hidden;
    transition: height 280ms ease;
}

@media (prefers-reduced-motion: reduce) {
    .faq-a {
        transition: none;
    }
}

.faq-a__inner {
    padding: 0 0 16px 0;
    color: var(--faq-muted);
    font-weight: 400;
}

.faq-a__inner p {
    margin: 0;
    font-size: 1.2rem;
    width: 98%;
}

.faq-a__inner strong {
    color: #fff;
    font-weight: 700;
}

#faq {
    margin-top: 120px;
}

#faq h1 {
    color: #FFF;
    text-align: center;
    margin-bottom: 50px;
}
