/* ═══ FAQ Section ═══ */
.faq {
    background: var(--bg-light);
    padding: 110px 0 110px;
}

.faq-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 2-column grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 60px;
}

/* Individual FAQ items */
.faq-item {
    border-bottom: 1px solid #e8e8e8;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Question button */
.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 28px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Manrope', sans-serif;
    transition: opacity 0.2s ease;
}

.faq-question:hover {
    opacity: 0.7;
}

/* Circle + / - icon */
.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
}

/* Rotate icon when expanded */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-hover);
}

/* Question text */
.faq-question-text {
    font-size: 17px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.5;
    letter-spacing: -0.01em;
}

/* Answer panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 0 0 48px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--black);
    line-height: 1.7;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-subtext {
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 22px 0;
    }
}