/* Demo Wizard Styles */
.wizard-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.wizard-step.active {
    display: block;
}

.wizard-header {
    text-align: center;
    margin-bottom: 30px;
}

.wizard-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.wizard-header p {
    color: var(--text-secondary);
}

/* Progress Bar */
.wizard-progress {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

/* Selection Cards */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.option-card:hover {
    background: rgba(0, 174, 239, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--accent-cyan);
}

.option-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.option-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Selected State */
.option-card.selected {
    background: rgba(0, 174, 239, 0.2);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 174, 239, 0.2);
}

/* Final Form Context */
.context-message {
    background: rgba(29, 233, 182, 0.1);
    border-left: 4px solid var(--accent-green);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.context-message strong {
    color: var(--accent-green);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
}