/* ════════════════════════════════════════════
   FAQ Accordion
   ════════════════════════════════════════════ */

.faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.faq-item.is-open {
    box-shadow: 0 6px 28px rgba(246, 104, 54, 0.13);
    border-color: rgba(246, 104, 54, 0.30);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.94rem;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.2s;
}

.faq-trigger:hover { color: #f66836; }

.faq-question { flex: 1; line-height: 1.45; padding-right: 4px; }

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: background 0.3s, color 0.3s, transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-icon {
    background: rgba(246, 104, 54, 0.12);
    color: #f66836;
    transform: rotate(45deg);
}

.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-panel { grid-template-rows: 1fr; }

.faq-panel-inner { overflow: hidden; }

.faq-panel-content {
    padding: 16px 24px 22px;
    border-top: 1px solid #f1f5f9;
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.75;
}
