.faq-section {
    padding: var(--site-pad-y) 0;
    position: relative;
    background: transparent;
    color: #fff;
    overflow: hidden
}

.faq-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: #000
}

.faq-parallax-img {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    z-index: 1
}

.faq-parallax-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .6;
    /* Removed will-change for memory optimization */
}

.faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #000 0, rgba(0, 0, 0, 0.6) 50%, #000 100%);
    z-index: 2
}

.faq-section .container {
    position: relative;
    z-index: 3
}

.faq-section .section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 80px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -0.02em
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.faq-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all .3s ease;
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
}

.faq-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: var(--lava-gradient);
    background-size: var(--lava-size);
    animation: var(--lava-anim);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    will-change: background-position;
    pointer-events: none;
}

.faq-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: transparent;
    transform: translateY(-4px);
}

.faq-card:hover::before {
    opacity: 1;
}

.faq-card.active {
    background: #fff;
    border-color: #fff
}

.faq-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 32px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all .3s ease
}

.faq-title {
    font-family: var(--font-primary, sans-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    transition: color .3s ease
}

.faq-card.active .faq-title {
    color: #000
}

.faq-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.5);
    transition: all .3s ease
}

.faq-card:hover .faq-icon-wrapper {
    color: #fff
}

.faq-card.active .faq-icon-wrapper {
    color: #000;
    transform: rotate(45deg)
}

.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-text p {
    color: #000;
}

.faq-body {
    overflow: hidden
}

.faq-text {
    padding: 0 32px 32px 32px;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s ease, transform .3s ease
}

.faq-card.active .faq-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .1s;
}

.faq-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-mono, monospace);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

@media(max-width:768px) {
    .faq-section {
        padding: 20px 0
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-section .section-title {
        font-size: 2.25rem;
        margin-bottom: 40px
    }

    .faq-header {
        padding: 20px 24px
    }

    .faq-title {
        font-size: 1.1rem
    }

    .faq-text {
        padding: 0 24px 24px 24px;
        font-size: .95rem
    }
}