/* ============================================
   M500 FAQ Block
   ============================================ */

.scg-faq {
    background-color: #171927;
    background-image:
        linear-gradient(#19313A 1px, transparent 1px),
        linear-gradient(90deg, #19313A 1px, transparent 1px);
    background-size: 72px 72px;
    padding: 6rem 0;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.scg-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.scg-faq__title {
    font-size: 2.5rem;
    text-align: center;
    color: #F1F2F2;
    margin-bottom: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.scg-faq__list {
    max-width: 800px;
    margin: 0 auto;
    background: #1D1D2B;
    border: 1px solid #668289;
    border-radius: 1.25rem;
    box-shadow: 0 20px 50px #090B10;
    overflow: hidden;
}

.scg-faq__item {
    border-bottom: 1px solid #668289;
}

.scg-faq__question {
    width: 100%;
    padding: 2rem;
    background: #1D1D2B;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #F1F2F2;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s, background 0.3s;
    line-height: 1.4;
}

.scg-faq__question:hover {
    color: #43D5CC;
    background: #19313A;
}

.scg-faq__question:focus-visible {
    outline: 3px solid #43D5CC;
    outline-offset: -3px;
}

.scg-faq__icon {
    font-size: 1.5rem;
    color: #43D5CC;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.scg-faq__item--active .scg-faq__icon {
    transform: rotate(45deg);
}

.scg-faq__item--active .scg-faq__question {
    color: #43D5CC;
    background: #19313A;
}

.scg-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #171927;
}

.scg-faq__item--active .scg-faq__answer {
    max-height: 600px;
}

.scg-faq__answer p {
    padding: 0 2rem 2rem;
    color: #C5C9CC;
    line-height: 1.7;
    margin: 0;
}

.scg-faq__answer p + p {
    padding-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .scg-faq {
        padding: 4rem 0;
    }

    .scg-faq__title {
        font-size: 2rem;
    }

    .scg-faq__question {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .scg-faq__answer p {
        padding: 0 1.5rem 1.5rem;
    }
}
