:root {
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --primary-gradient: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    --accent: #FFA500;
}

.faq-premium-wrapper {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.faq-header-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.faq-header-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.faq-header-card h1 {
    font-size: 48px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.faq-header-card p {
    color: #64748b;
    font-size: 16px;
    margin-top: 10px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.faq-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

.faq-item-premium {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
    backdrop-filter: blur(15px);
}

.faq-item-premium:hover {
    border-color: rgba(255, 165, 0, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.faq-item-premium.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 165, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.faq-question-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.q-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.q-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent);
    transition: 0.3s;
}

.faq-item-premium.active .q-icon-box {
    background: var(--primary-gradient);
    color: #000;
}

.q-text {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.toggle-arrow {
    font-size: 14px;
    color: #444;
    transition: 0.3s;
}

.faq-item-premium.active .toggle-arrow {
    transform: rotate(90deg);
    color: var(--accent);
}

.faq-answer-box {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.1);
}

.faq-item-premium.active .faq-answer-box {
    max-height: 500px;
}

.answer-inner {
    padding: 0 30px 35px 30px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.8;
}

.answer-inner p {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.answer-inner p::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 12px;
}

.answer-inner strong {
    color: #fff;
    font-weight: 700;
}

.answer-inner .cmm {
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 165, 0, 0.2);
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.answer-inner a.text-primary {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px dashed var(--accent);
    transition: 0.3s;
}

.answer-inner a.text-primary:hover {
    border-bottom-style: solid;
    background: rgba(255, 165, 0, 0.05);
}

@media (max-width: 992px) {
    .faq-grid-premium {
        grid-template-columns: 1fr;
    }
    .faq-header-card h1 {
        font-size: 32px;
    }
    .answer-inner {
        padding: 0 25px 30px 25px;
    }
}
