/* ==== FAQ SECTION ==== */
.faq {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, var(--yellow-glow) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, var(--yellow-glow) 0%, transparent 50%);
    opacity: 0.05;
    pointer-events: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* ==== PRICING CTA ==== */
.faq-pricing-cta {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-secondary) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-pricing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.faq-pricing-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--yellow-primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-pricing {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background: var(--yellow-primary);
    color: var(--dark-bg);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px var(--yellow-glow);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--yellow-glow);
    background: #ffed4e;
}

/* ==== FAQ HEADER ==== */
.faq-header {
    text-align: center;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: -3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.faq-support-link {
    color: var(--yellow-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.faq-support-link:hover {
    color: #ffed4e;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.faq-support-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--yellow-primary), #ffed4e);
    transition: width 0.3s ease;
}

.faq-support-link:hover::after {
    width: 100%;
}

/* ==== FAQ ITEMS ==== */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--dark-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--yellow-primary);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    color: var(--yellow-primary);
}

.faq-question:focus {
    outline: 2px solid var(--yellow-primary);
    outline-offset: -2px;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--yellow-primary);
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 2rem 2rem 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-answer-content p {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin: 1.5rem 0 0 0;
}

/* ==== ANIMATIONS ==== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-pricing-cta {
        margin-bottom: 3rem;
        padding: 2rem 1.5rem;
    }
    
    .faq-pricing-title {
        font-size: 1.8rem;
    }
    
    .btn-pricing {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1.5rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .faq-answer-content p {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 3rem 0;
    }
    
    .faq-pricing-cta {
        margin-bottom: 2.5rem;
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .faq-pricing-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .btn-pricing {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .faq-question {
        padding: 1.25rem 1rem;
        font-size: 0.95rem;
        gap: 0.75rem;
    }
    
    .faq-answer-content {
        padding: 0 1rem 1.25rem 1rem;
    }
    
    .faq-answer-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .faq-subtitle {
        font-size: 0.95rem;
    }
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {
    .faq-item {
        animation: none;
    }
    
    .faq-icon {
        transition: none;
    }
    
    .faq-answer {
        transition: none;
    }
}
