/* ========================================================================
 ! WARRANTEED COMPONENT: TECHNICAL FAQ DEPLOYMENT MATRIX
 ! Developed/Tested: June 2026 // Target Viewport: Unified Cross-Device
 ======================================================================== */

/* --- 1. CORE SECTION LAYOUT CONTAINER --- */
.faq-section {
    padding: 120px 0; 
    background: #0f172a; 
    color: #f8fafc;
    text-align: center; 
    width: 100vw; 
    position: relative; 
    border-top: 1px solid #1e293b;
    box-sizing: border-box;
}

.faq-container {
    width: 100%; 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 50px; 
    box-sizing: border-box; 
    text-align: left;
}

.faq-header-group {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    margin-bottom: 80px;
    text-align: center;
}

.faq-badge {
    background: rgba(99, 102, 241, 0.1); 
    color: #818cf8; 
    border: 1px solid #312e81; 
    padding: 4px 12px; 
    border-radius: 4px; 
    font-family: 'JetBrains Mono', monospace; 
    font-size: 0.65rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

.faq-main-title {
    font-family: 'JetBrains Mono', monospace; 
    font-size: 3.5rem; 
    margin: 0; 
    color: #fff; 
    letter-spacing: -2px; 
    line-height: 1.1;
}

.faq-main-title .accent-indigo { color: #6366f1; }

/* --- 2. TECHNICAL DATA GRID (DESKTOP MODE) --- */
.faq-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px 80px;
    box-sizing: border-box;
}

.faq-item {
    border-top: 1px solid #1e293b; 
    padding-top: 25px; 
    position: relative;
    box-sizing: border-box;
}

/* Fixes the floating alignment issue found in node 03 */
.faq-accent-line {
    position: absolute; 
    top: -1px; 
    left: 0; 
    width: 40px; 
    height: 1px; 
    background: #6366f1;
}

.faq-question {
    font-family: 'JetBrains Mono', monospace; 
    font-size: 1.1rem; 
    color: #fff; 
    margin: 0 0 15px 0; 
    letter-spacing: -0.5px; 
    display: flex; 
    align-items: center; 
    gap: 10px;
}

.faq-number {
    font-family: 'JetBrains Mono', monospace; 
    font-size: 0.75rem; 
    color: #6366f1;
}

.faq-answer {
    color: #94a3b8; 
    font-size: 0.95rem; 
    line-height: 1.7; 
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
}

.faq-answer .text-white { color: #fff; }


/* ========================================================================
 ! --- 3. MOBILE BREAKPOINT RESPONSIVENESS (Screens under 768px wide) ---
 ======================================================================== */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0 !important;
    }

    .faq-container {
        padding: 0 20px !important;
    }

    .faq-header-group {
        margin-bottom: 40px !important;
    }

    .faq-badge {
        font-size: 0.6rem !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 12px !important;
    }

    .faq-main-title {
        font-size: 2rem !important;
        letter-spacing: -1px !important;
    }

    /* Collapse the 2-column deployment grid down to a linear layout lane */
    .faq-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 35px !important;
    }

    .faq-item {
        padding-top: 18px !important;
    }

    .faq-question {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
        line-height: 1.3 !important;
    }

    .faq-number {
        font-size: 0.7rem !important;
    }

    .faq-answer {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
    }
}