/* ── FAQ Hero ── */
.faq-hero {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
}

.faq-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(34, 211, 238, 0.12) 0%, transparent 60%);
    z-index: 0;
}

.faq-hero .container {
    position: relative;
    z-index: 1;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    color: #22d3ee;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.faq-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.faq-hero p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
}

/* ── FAQ Section ── */
.faq-section {
    padding: 60px 0 80px;
}

.faq-category {
    max-width: 850px;
    margin: 0 auto 50px;
}

.faq-category h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category h2 i {
    color: #22d3ee;
    font-size: 1.1rem;
}

/* ── FAQ Item ── */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(34, 211, 238, 0.2);
}

.faq-item.active {
    border-color: rgba(34, 211, 238, 0.3);
    background: rgba(34, 211, 238, 0.03);
}

/* ── Question Button ── */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-question span {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #e2e8f0;
    line-height: 1.5;
}

.faq-icon {
    color: #64748b;
    font-size: 0.8rem;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #22d3ee;
}

/* ── Answer ── */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: #22d3ee;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer strong {
    color: #cbd5e1;
}

/* ── CTA ── */
.faq-cta {
    padding: 60px 0 80px;
}

.faq-cta .cta-content {
    text-align: center;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(74, 222, 128, 0.05));
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-cta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.faq-cta p {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 28px;
}

.faq-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .faq-hero {
        padding: 120px 0 50px;
    }

    .faq-question {
        padding: 16px 18px;
    }

    .faq-question span {
        font-size: 0.93rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 16px;
    }

    .faq-cta .cta-content {
        padding: 40px 24px;
    }
}
