/* ============================================================
   Forward34 — FAQ section
   ============================================================ */

.faq-section { background: var(--chalk, #FAFAF7); }

.faq-list {
    max-width: 820px;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-top: 1px solid var(--line-strong, rgba(11,11,15,0.12));
    padding: 1.25rem 0;
}

.faq-item:last-of-type {
    border-bottom: 1px solid var(--line-strong, rgba(11,11,15,0.12));
}

.faq-item > summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--ink, #0B0B0F);
    letter-spacing: -0.01em;
    transition: opacity 0.2s ease;
}

.faq-item > summary::-webkit-details-marker { display: none; }

.faq-item > summary::after {
    content: "+";
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 99px;
    background: rgba(11,11,15,0.06);
    color: var(--ink, #0B0B0F);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item[open] > summary::after {
    content: "−";
    background: var(--lime, #D7FF3A);
    transform: rotate(180deg);
}

.faq-item > summary:hover { opacity: 0.7; }

.faq-item > p {
    margin: 1rem 0 0.25rem;
    padding-right: 56px;
    color: rgba(11,11,15,0.75);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item > p strong { color: var(--ink, #0B0B0F); font-weight: 600; }

@media (max-width: 640px) {
    .faq-item > summary { font-size: 1rem; gap: 1rem; }
    .faq-item > summary::after { width: 28px; height: 28px; font-size: 1.25rem; }
    .faq-item > p { padding-right: 0; font-size: 0.95rem; }
}
