/* ============================================
   FAQ V8 (fq8) - Sıkça Sorulan Sorular
   V8 Design: dark, Plus Jakarta Sans, accordion
   ============================================ */

.fq8 {
    background: #0f172a;
    color: #f8fafc;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    padding: 4rem 0;
    box-sizing: border-box;
}

.fq8__wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* Header */
.fq8__head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.fq8__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #93c5fd;
    margin-bottom: 0.5rem;
}

.fq8__title {
    font-size: clamp(1.75rem, 4vw, 2rem);
    font-weight: 800;
    color: #f8fafc;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.fq8__sub {
    font-size: 0.9375rem;
    color: #94a3b8;
    margin: 0;
    font-weight: 500;
}

/* List */
.fq8__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Item */
.fq8__item {
    background: #1e293b;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.fq8__item:hover {
    border-color: rgba(147, 197, 253, 0.25);
}

.fq8__item.active {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2);
}

/* Question button */
.fq8__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    color: #f8fafc;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

.fq8__q:hover {
    background: rgba(255, 255, 255, 0.03);
}

.fq8__q span {
    flex: 1;
    line-height: 1.4;
}

.fq8__icon {
    flex-shrink: 0;
    width: 20px;
    font-size: 0.75rem;
    color: #64748b;
    transition: transform 0.25s ease, color 0.2s;
}

.fq8__item.active .fq8__icon {
    transform: rotate(180deg);
    color: #93c5fd;
}

/* Answer panel */
.fq8__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fq8__item.active .fq8__a {
    max-height: 500px;
}

.fq8__a-inner {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.7;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.fq8__a-inner strong {
    color: #e2e8f0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .fq8 {
        padding: 3rem 0;
    }

    .fq8__wrap {
        padding: 0 16px;
    }

    .fq8__head {
        margin-bottom: 2rem;
    }

    .fq8__q {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .fq8__a-inner {
        padding: 0 1rem 1rem;
        font-size: 0.8125rem;
    }
}
