/* ========================================
   FAQ Section Styles - GEO Optimized
   ======================================== */

.faq-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: linear-gradient(180deg, #0A0D12 0%, #0F131C 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(110, 231, 183, 0.3), transparent);
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 56rem;
    margin: 0 auto;
}

.faq-item {
    background: #161D2B;
    border-radius: 12px;
    border: 1px solid rgba(110, 231, 183, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(110, 231, 183, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #6EE7B7;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #6EE7B7;
}

.faq-item[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer[aria-hidden="false"] {
    max-height: 100vh;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
}

.faq-answer-content p {
    margin: 0 0 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(110, 231, 183, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(110, 231, 183, 0.1);
}

.faq-cta p {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
}

.faq-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #6EE7B7, #38BDF8);
    color: #0A0D12;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(110, 231, 183, 0.4);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem;
        gap: 1rem;
    }

    .faq-answer-content {
        padding: 0 1.25rem 1.25rem;
    }
}
