/* Beta Wizard Styles */
.wizard-step {
    text-align: center;
    padding: 40px 0;
}

.wizard-step h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--primary-600);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.option-card {
    display: block;
    padding: 24px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.option-card:hover {
    border-color: var(--primary-300);
    background: var(--primary-50);
}

.option-card input {
    display: none;
}

.option-card input:checked + span {
    color: var(--primary-600);
    font-weight: 600;
}

.option-card input:checked + span::before {
    content: '✓';
    margin-right: 8px;
    color: var(--success-500);
}

.form-input-large {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    text-align: center;
    color: var(--gray-900);
    font-weight: 500;
}

.form-input-large::placeholder {
    color: var(--gray-500);
    font-weight: 400;
}

.form-input-large:focus {
    outline: none;
    border-color: var(--primary-500);
}

.next-step-btn,
.submit-btn {
    width: 100%;
}

.thanks-message {
    text-align: center;
    padding: 80px 0;
}

.thanks-message h2 {
    color: var(--success-700);
}
