.help-hero {
    padding: 160px 0 40px;
    position: relative;
}

.help-hero-bg {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(200, 24, 128, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.help-hero-content {
    position: relative;
    z-index: 1;
}

.help-badge-hero {
    margin-bottom: 24px;
}

.help-hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
}

.help-hero-subtitle {
    margin-bottom: 0;
}

.help-faq-section {
    padding: 0 0 120px;
    position: relative;
}

.help-faq-category {
    max-width: 800px;
    margin: 0 auto;
}

.help-faq-header {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    line-height: 1.5;
    margin: 60px 0 40px;
}

.lux-faq-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    .lux-faq-item:hover {
        border-color: rgba(200,24,128,0.3);
        background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
    }

    .lux-faq-item.active {
        border-color: var(--color-accent);
        box-shadow: 0 10px 40px -15px rgba(200,24,128,0.25);
        background: linear-gradient(180deg, rgba(200,24,128,0.06) 0%, transparent 100%);
        margin-top: 24px;
        margin-bottom: 24px;
    }

.lux-faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
    gap: 20px;
    line-height: 1.6em;
}

.lux-faq-item.active .lux-faq-question {
    color: var(--color-white);
}

.lux-faq-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--color-text-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-faq-item.active .lux-faq-icon {
    background: var(--color-accent);
    color: var(--color-white);
    transform: rotate(180deg);
}

.lux-faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-faq-item.active .lux-faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.lux-faq-answer-inner {
    overflow: hidden;
}

.lux-faq-answer-text {
    padding: 0 30px 30px 30px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;
}

.lux-faq-item.active .lux-faq-answer-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.help-q3-text {
    margin-top: 0;
    margin-bottom: 20px;
}

.help-q3-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.help-faq-email {
    color: var(--color-accent);
    text-decoration: none;
}

@media (max-width: 768px) {
    .lux-faq-question {
        font-size: 1.05rem;
        padding: 20px;
    }

    .lux-faq-answer-text {
        padding: 0 20px 20px 20px;
    }
}
