/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: linear-gradient(180deg, rgba(32, 10, 56, 0.8) 0%, rgba(13, 0, 26, 0.8) 100%);
    border-color: rgba(140, 82, 255, 0.4);
    box-shadow: 0 0 20px rgba(140, 82, 255, 0.15);
}

.faq-item:hover:not(.active) {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
}

.faq-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 20px;
    min-width: 20px;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    flex: 1;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--primary-purple);
}

.faq-item.active .faq-icon path {
    stroke: var(--primary-purple);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content {
    padding: 0 25px 25px 50px;
    /* Aligned with question text */
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Support Card */
.support-card {
    background: linear-gradient(145deg, #120324 0%, #05010a 100%);
    border: 1px solid rgba(140, 82, 255, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(140, 82, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.support-icon {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(157, 124, 255, 0.5));
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 1;
}

.support-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.support-card .btn {
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .support-card {
        margin-top: 40px;
        min-height: 300px;
    }

    .btn--wide-mobile {
        width: 100%;
    }
}