/* Search Bar */
.search-wrapper {
    position: relative;
    max-width: 650px;
    margin: 2rem auto 0;
}

.search-input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-strong);
    background: var(--bg-surface);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    outline: none;
}

.search-input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(63, 16, 133, 0.1);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    display: flex;
    align-items: center;
}

/* Accordion */
.faq-section {
    padding-bottom: 100px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.accordion-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(63, 16, 133, 0.15);
    transform: translateY(-2px);
}

.accordion-header {
    padding: 1.5rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
    user-select: none;
}

.toggle-icon {
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content {
    max-height: 0;
    padding: 0 1.75rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.accordion-item.active .accordion-content {
    padding-bottom: 1.5rem;
    max-height: 500px;
    border-top: 1px dashed var(--border-light);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.accordion-item.active .toggle-icon {
    transform: rotate(180deg);
}

.highlight {
    color: var(--brand-primary);
    font-weight: 700;
}

/* Empty State */
.no-result {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    background: var(--bg-surface);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-md);
    display: none;
}

/* Support CTA */
.support-cta {
    background: var(--brand-surface);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
    border: 1px solid rgba(63, 16, 133, 0.08);
}

.support-cta h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.support-cta p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .support-cta {
        padding: 2rem;
    }
}
