/* 10 — FAQ */

.faq-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

.faq-side h2 {
    margin: 18px 0 16px;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 600;
    color: var(--ink);
}

.faq-side p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0 0 24px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: 16px;
    overflow: hidden;
    transition:
        border-color 240ms ease,
        box-shadow 240ms ease;
}

.faq-item[open] {
    border-color: var(--brand);
    box-shadow: 0 14px 28px -20px rgba(93, 46, 222, 0.3);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-size: 16.5px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
}

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

.faq-item .toggle {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
    display: grid;
    place-items: center;
    transition:
        transform 260ms ease,
        background 240ms ease,
        color 240ms ease;
}

.faq-item[open] .toggle {
    background: var(--brand);
    color: #fff;
    transform: rotate(45deg);
}

.faq-item .answer {
    padding: 0 26px 24px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 720px;
}

@media (max-width: 1100px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
