.support-main {
    padding-top: 80px;
    background: #050505;
}

.support-hero {
    padding: 2.5rem 0 2rem;
    background: linear-gradient(180deg, #DC2626 0%, #991b1b 35%, #171717 70%, #050505 100%);
}

.support-hero-inner {
    max-width: 720px;
}

.support-kicker {
    color: #fecaca;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.support-title {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.support-lead {
    color: #e5e7eb;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 560px;
}

.support-faq {
    padding: 3rem 0;
    background: #050505;
}

.support-faq .container {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.support-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.support-section-lead {
    color: #9ca3af;
    margin-bottom: 2rem;
}

.faq-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: transparent;
    border: none;
    color: #f9fafb;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.faq-question:hover {
    color: #fca5a5;
}

.faq-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    color: #DC2626;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::before {
    width: 12px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-item.is-open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
    color: #d1d5db;
    line-height: 1.65;
    font-size: 0.98rem;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-answer a {
    color: #f87171;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer a:hover {
    color: #fca5a5;
}

.support-contact {
    padding: 3rem 0 5rem;
    background: #111111;
}

.support-contact .contact-title {
    margin-bottom: 0.75rem;
}

.support-contact-lead {
    text-align: center;
    color: #9ca3af;
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .support-title {
        font-size: 1.85rem;
    }
}
