/* FAQ page */
.faq-page {
    max-width: 860px;
    margin: 0 auto;
}

.faq-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #5c6478;
}

.faq-intro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.25rem;
}

.faq-list {
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    border: 1px solid #e4e6ee;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(30, 36, 82, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.is-open {
    border-color: rgba(181, 154, 87, 0.55);
    box-shadow: 0 12px 32px rgba(30, 36, 82, 0.08);
}

.faq-item__q {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    text-align: start;
    border: 0;
    background: transparent;
    padding: 1.15rem 1.25rem;
    cursor: pointer;
}

.faq-item__index {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: #1e2452;
    background: linear-gradient(145deg, #f4efe2, #efe6d0);
}

.faq-item__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.faq-item__cat {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #b59a57;
}

.faq-item__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e2452;
    line-height: 1.4;
}

.faq-item__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #d8dbe6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1e2452;
    transition: transform 0.25s, background 0.25s, border-color 0.25s;
}

.faq-item.is-open .faq-item__icon {
    background: #1e2452;
    border-color: #1e2452;
    color: #fff;
    transform: rotate(45deg);
}

.faq-item__a {
    border-top: 1px solid #eef0f5;
}

.faq-item__a-inner {
    padding: 0 1.25rem 1.25rem 4.55rem;
    color: #5c6478;
    line-height: 1.7;
}

@media (max-width: 576px) {
    .faq-item__a-inner {
        padding-inline-start: 1.25rem;
    }
}
