/* ==============================================================
   faq.css — частые вопросы
   ============================================================== */

.faq { padding: 80px 0; }
.faq-wrap {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 48px;
}
.faq-list {
    display: flex;
    flex-direction: column;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 40px 20px 0;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
    position: relative;
    letter-spacing: -0.01em;
    transition: color 0.15s ease;
}
.faq-question:hover { color: var(--accent); }
.faq-question::after {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid var(--muted);
    border-bottom: 1.5px solid var(--muted);
    transform: translateY(-75%) rotate(45deg);
    transition: transform 0.3s ease, border-color 0.2s ease;
}
.faq-item.active .faq-question::after {
    transform: translateY(-25%) rotate(-135deg);
    border-color: var(--accent);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding: 0 0 20px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}
.faq-item.active .faq-answer { max-height: 400px; }

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