/* FAQ Page Specific Styles */
.faq-page {
    background: linear-gradient(135deg, #07101a 0%, #0a1a2a 100%);
    color: var(--vault-text);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    margin-top: 40px;
}

.faq-card {
    background: rgba(10, 26, 42, 0.7);
    border: 1px solid var(--vault-border);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: var(--vault-accent);
}

.faq-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question {
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-icon {
    color: var(--vault-accent);
    width: 24px;
    text-align: center;
}

.faq-toggle {
    color: var(--vault-silver);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-top: 1px solid transparent;
}

.faq-card.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
    border-top-color: var(--vault-border);
}

/* Comparison Graph */
.comparison-graph {
    width: 100%;
    height: 200px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
}

.graph-bar {
    height: 40px;
    width: var(--value);
    background: var(--color);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    box-shadow: 0 0 10px var(--color);
    transition: width 1s ease;
}

.graph-axis {
    display: flex;
    justify-content: space-between;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.8rem;
    color: var(--vault-silver);
    margin-top: 10px;
}

#graph1 {
    --value: 20%; --color: #ff5555;
}

#graph2 {
    --value: 90%; --color: var(--vault-accent);
}


/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
    }
    
    .seo-block {
        grid-template-columns: 1fr;
    }
    
    .seo-visual {
        margin-top: 30px;
    }
}