/* Questions Section */
.questions-section {
    margin-top: 9rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.questions-wrapper {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.question-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.question-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.question-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.question-btn {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.question-btn:hover {
    background: var(--accent-primary);
    color: #ffffff;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.question-btn:active {
    transform: translateY(0);
}

/* Loading Section */
.loading-section {
    margin-top: 9rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid var(--border-color);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.loading-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Results Section */
.results-section {
    margin-top: 3rem;
    padding: 3rem 0;
}

.results-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

/* MFO Grid - reuse from main styles */
.mfo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.mfo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.mfo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--accent-primary);
}

.mfo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mfo-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.mfo-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.mfo-info {
    flex: 1;
}

.mfo-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.mfo-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.mfo-amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.mfo-params {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.mfo-param {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.param-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.param-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mfo-actions {
    display: flex;
    gap: 0.5rem;
}

.mfo-get-btn {
    flex: 1;
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mfo-get-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Responsive */
@media (max-width: 768px) {
    .questions-section {
        margin-top: 7rem;
        padding: 2rem 0;
    }
    
    .question-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .question-btn {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .loading-section {
        margin-top: 7rem;
    }
    
    .loading-spinner {
        width: 60px;
        height: 60px;
    }
    
    .loading-title {
        font-size: 1.5rem;
    }
    
    .mfo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .results-section {
        margin-top: 2rem;
        padding: 2rem 0;
    }
}
