.support-hero {
        padding: 100px 0 80px 0;
        text-align: center;
        background: radial-gradient(circle at top center, rgba(0, 255, 163, 0.05) 0%, transparent 60%);
        position: relative;
    }

    .support-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1.5rem; color: #fff; }

    .search-container {
        max-width: 600px;
        margin: 0 auto;
        position: relative;
    }
    .search-input {
        width: 100%;
        padding: 1.2rem 1.5rem 1.2rem 3.5rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        color: #fff;
        font-size: 1rem;
        font-family: inherit;
        transition: 0.3s;
        backdrop-filter: blur(5px);
    }
    .search-input:focus {
        outline: none;
        border-color: var(--brand-primary);
        box-shadow: 0 0 20px rgba(0, 255, 163, 0.1);
        background: rgba(0, 0, 0, 0.5);
    }
    .search-icon {
        position: absolute;
        left: 1.2rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        pointer-events: none;
    }

    .support-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 5rem;
    }

    .support-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 2.5rem;
        border-radius: 12px;
        text-align: center;
        transition: 0.3s;
        cursor: pointer;
    }
    .support-card:hover {
        transform: translateY(-5px);
        border-color: var(--brand-primary);
        background: rgba(18, 22, 31, 0.9);
    }
    .card-icon {
        width: 60px; height: 60px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto 1.5rem auto;
        color: var(--brand-primary);
    }
    .support-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: #fff; }
    .support-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.6; }
    .support-card a { color: var(--brand-primary); font-weight: 600; font-size: 0.9rem; text-decoration: none; }

    .status-widget {
        background: #0b0f15;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 1.5rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 4rem;
    }
    .status-info { display: flex; align-items: center; gap: 15px; }
    .status-dot {
        width: 12px; height: 12px; background: var(--brand-primary); border-radius: 50%;
        box-shadow: 0 0 10px var(--brand-primary);
        animation: pulse 2s infinite;
    }
    @keyframes pulse { 0% { opacity: 0.5; transform: scale(0.9); } 50% { opacity: 1; transform: scale(1.1); } 100% { opacity: 0.5; transform: scale(0.9); } }
    
    .status-text h4 { font-size: 1.1rem; margin-bottom: 0; line-height: 1; color: #fff; }
    .status-text span { font-size: 0.85rem; color: var(--text-muted); }

    .faq-section { max-width: 800px; margin: 0 auto; }
    .section-title { text-align: center; margin-bottom: 3rem; font-size: 2rem; color: #fff; }
    
    details {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        margin-bottom: 1rem;
        overflow: hidden;
        transition: 0.3s;
    }
    details[open] { border-color: var(--brand-primary); }
    
    summary {
        padding: 1.2rem;
        cursor: pointer;
        font-weight: 600;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #fff;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
        content: '+';
        font-size: 1.2rem;
        color: var(--brand-primary);
        transition: 0.3s;
    }
    details[open] summary::after { transform: rotate(45deg); }
    
    .faq-content {
        padding: 0 1.2rem 1.2rem 1.2rem;
        color: var(--text-muted);
        font-size: 0.95rem;
        border-top: 1px solid rgba(255,255,255,0.05);
        padding-top: 1rem;
        line-height: 1.6;
    }

    .contact-bar {
        margin-top: 5rem;
        text-align: center;
        padding: 3rem;
        background: linear-gradient(180deg, var(--bg-card) 0%, transparent 100%);
        border-top: 1px solid var(--border-color);
    }
    
    .btn-outline {
        border: 1px solid var(--border-color);
        color: #fff;
        background: transparent;
        padding: 0.7rem 1.5rem;
        border-radius: 6px;
        text-decoration: none;
    }
    .btn-outline:hover { border-color: #fff; }

    @media (max-width: 768px) {
        .support-hero h1 { font-size: 2rem; }
        .status-widget { flex-direction: column; text-align: center; gap: 1rem; }
        .status-info { flex-direction: column; }
    }
