.faq-hero {
    background: radial-gradient(circle at bottom center, #1e293b 0%, #0f172a 100%);
    position: relative; padding-top: 140px; padding-bottom: 100px;
    text-align: center; color: white; overflow: hidden;
}

/* Arama Kutusu */
.search-wrapper {
    position: relative; max-width: 600px; margin: 0 auto;
}
.search-input {
    width: 100%; padding: 20px 25px 20px 60px;
    border-radius: 16px; border: 2px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    color: white; font-size: 1.1rem; transition: 0.3s;
    outline: none;
}
.search-input::placeholder { color: rgba(255,255,255,0.5); }
.search-input:focus {
    background: white; color: #0f172a; border-color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.search-icon {
    position: absolute; left: 25px; top: 50%; transform: translateY(-50%);
    color: rgba(255,255,255,0.5); font-size: 1.2rem; transition: 0.3s;
}
.search-input:focus ~ .search-icon { color: #3b82f6; }

/* Kategori Tabları */
.faq-tabs {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px;
}
.tab-btn {
    padding: 10px 24px; border-radius: 50px; border: 1px solid #e2e8f0;
    background: white; color: #64748b; font-weight: 600; font-size: 0.95rem;
    cursor: pointer; transition: 0.3s;
}
.tab-btn:hover { background: #f1f5f9; color: #0f172a; }
.tab-btn.active {
    background: #0f172a; color: white; border-color: #0f172a;
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
}

/* Akordiyon (Sorular) */
.faq-item {
    background: white; border: 1px solid #e2e8f0; border-radius: 16px;
    margin-bottom: 15px; overflow: hidden; transition: all 0.3s ease;
}
.faq-item:hover { border-color: #cbd5e1; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }

.faq-header {
    padding: 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-weight: 700; color: #1e293b; user-select: none;
}
.faq-header:hover { color: #3b82f6; }

.faq-icon {
    width: 32px; height: 32px; border-radius: 50%; background: #f1f5f9; color: #64748b;
    display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
    transition: 0.3s; flex-shrink: 0; margin-left: 15px;
}

/* Açık Durum */
.faq-item.active { border-color: #3b82f6; }
.faq-item.active .faq-header { color: #3b82f6; }
.faq-item.active .faq-icon { background: #3b82f6; color: white; transform: rotate(180deg); }

.faq-content {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out;
    background: #f8fafc;
}
.faq-body {
    padding: 0 24px 24px 24px; color: #64748b; line-height: 1.7; font-size: 0.95rem;
}