/* ═══════════════════════════════════════════════════════════════
   GEO FAQ Section - Styled to match MATA AI design system
   AI-extractable FAQ content for generative engine optimization
   ═══════════════════════════════════════════════════════════════ */

.geo-faq {
    padding: 80px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.geo-faq .section-head {
    text-align: center;
    margin-bottom: 48px;
}

.geo-faq .section-head h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.geo-faq .section-head .kicker {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0;
}

.faq-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.faq-item summary {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 20px 32px 20px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: color 0.2s ease;
    line-height: 1.5;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    transition: transform 0.3s ease, color 0.2s ease;
}

.faq-item[open] summary::after {
    content: '−';
    color: rgba(255,255,255,0.6);
}

.faq-item summary:hover {
    color: #fff;
}

.faq-item summary:hover::after {
    color: rgba(255,255,255,0.6);
}

.faq-answer {
    padding: 0 0 20px 0;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

.faq-answer strong {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .geo-faq {
        padding: 60px 20px;
    }

    .faq-item summary {
        font-size: 15px;
        padding: 18px 28px 18px 0;
    }

    .faq-answer p {
        font-size: 14px;
    }
}
