        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #e0e7ff 100%);
            min-height: 100vh;
            color: #1f2937;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .wizard-header {
            padding: 40px 0 20px;
            text-align: center;
        }

        .wizard-title {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #2563eb, #9333ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .wizard-subtitle {
            font-size: 1.125rem;
            color: #6b7280;
            font-weight: 400;
        }

        .progress-container {
            margin: 32px 0;
            background: white;
            padding: 24px;
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
        }

        .progress-bar-wrapper {
            position: relative;
            height: 8px;
            background: #e5e7eb;
            border-radius: 999px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(135deg, #2563eb, #9333ea);
            border-radius: 999px;
            transition: width 0.4s ease;
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
        }

        .progress-step {
            flex: 1;
            min-width: 120px;
            text-align: center;
            font-size: 0.875rem;
            font-weight: 500;
            color: #9ca3af;
            transition: color 0.3s;
        }

        .progress-step.active {
            color: #2563eb;
        }

        .progress-step.completed {
            color: #10b981;
        }

        .wizard-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
            padding: 40px;
            margin-bottom: 24px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .wizard-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .step-content {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .step-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title {
            font-size: 1.875rem;
            font-weight: 700;
            background: linear-gradient(135deg, #2563eb, #9333ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            font-weight: 600;
            color: #374151;
            margin-bottom: 8px;
            font-size: 0.9375rem;
        }

        .form-label .required {
            color: #ef4444;
            margin-left: 4px;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s, box-shadow 0.2s;
            background: white;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .form-input.error,
        .form-select.error,
        .form-textarea.error {
            border-color: #ef4444;
        }

        .form-textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-helper {
            font-size: 0.875rem;
            color: #6b7280;
            margin-top: 6px;
        }

        .form-error {
            font-size: 0.875rem;
            color: #ef4444;
            margin-top: 6px;
            display: none;
        }

        .form-error.show {
            display: block;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #2563eb, #9333ea);
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
            font-family: inherit;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-secondary {
            background: white;
            color: #2563eb;
            padding: 14px 32px;
            border: 2px solid #2563eb;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
        }

        .btn-secondary:hover {
            background: #eff6ff;
            transform: translateY(-2px);
        }

        .btn-ghost {
            background: transparent;
            color: #6b7280;
            padding: 14px 32px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
        }

        .btn-ghost:hover {
            background: #f3f4f6;
            color: #374151;
        }

        .wizard-footer {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            padding-top: 32px;
            border-top: 2px solid #f3f4f6;
            position: sticky;
            bottom: 0;
            background: white;
            margin: 0 -40px -40px;
            padding: 24px 40px;
            border-radius: 0 0 16px 16px;
        }

        .wizard-footer-actions {
            display: flex;
            gap: 12px;
        }

        .repeater-item {
            background: #f9fafb;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 16px;
            border: 2px solid #e5e7eb;
            position: relative;
        }

        .repeater-remove {
            position: absolute;
            top: 16px;
            right: 16px;
            background: #fee2e2;
            color: #dc2626;
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.25rem;
            font-weight: bold;
            transition: all 0.2s;
        }

        .repeater-remove:hover {
            background: #fecaca;
            transform: scale(1.1);
        }

        .btn-add {
            background: #eff6ff;
            color: #2563eb;
            padding: 12px 24px;
            border: 2px dashed #2563eb;
            border-radius: 8px;
            font-size: 0.9375rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            width: 100%;
            font-family: inherit;
        }

        .btn-add:hover {
            background: #dbeafe;
            border-style: solid;
        }

        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .checkbox-item input[type="checkbox"] {
            width: 20px;
            height: 20px;
            border-radius: 4px;
            border: 2px solid #d1d5db;
            cursor: pointer;
        }

        .checkbox-item label {
            cursor: pointer;
            font-size: 0.9375rem;
            color: #374151;
        }

        .file-upload-zone {
            border: 3px dashed #cbd5e1;
            border-radius: 12px;
            padding: 48px 24px;
            text-align: center;
            background: #f8fafc;
            transition: all 0.3s;
            cursor: pointer;
        }

        .file-upload-zone:hover,
        .file-upload-zone.drag-over {
            border-color: #2563eb;
            background: #eff6ff;
        }

        .file-upload-icon {
            font-size: 3rem;
            margin-bottom: 16px;
        }

        .file-upload-text {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 8px;
        }

        .file-upload-subtext {
            font-size: 0.875rem;
            color: #6b7280;
        }

        .file-input-hidden {
            display: none;
        }

        .file-preview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 16px;
            margin-top: 24px;
        }

        .file-preview-item {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            padding: 12px;
            position: relative;
            text-align: center;
        }

        .file-preview-img {
            width: 100%;
            height: 100px;
            object-fit: cover;
            border-radius: 6px;
            margin-bottom: 8px;
        }

        .file-preview-name {
            font-size: 0.75rem;
            color: #374151;
            word-break: break-word;
            margin-bottom: 4px;
        }

        .file-preview-size {
            font-size: 0.6875rem;
            color: #9ca3af;
        }

        .file-preview-remove {
            position: absolute;
            top: 8px;
            right: 8px;
            background: #ef4444;
            color: white;
            border: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 0.875rem;
            font-weight: bold;
        }

        .color-picker-group {
            display: flex;
            gap: 16px;
            align-items: flex-end;
        }

        .color-picker-item {
            flex: 1;
        }

        .color-picker-input {
            width: 100%;
            height: 56px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            cursor: pointer;
        }

        .tag-input-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 8px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            min-height: 48px;
            cursor: text;
        }

        .tag-input-wrapper:focus-within {
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .tag {
            background: linear-gradient(135deg, #2563eb, #9333ea);
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .tag-remove {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            line-height: 1;
            padding: 0;
        }

        .tag-input {
            border: none;
            outline: none;
            flex: 1;
            min-width: 120px;
            font-size: 1rem;
            padding: 4px;
            font-family: inherit;
        }

        .review-section {
            margin-bottom: 32px;
        }

        .review-section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .review-edit-btn {
            background: transparent;
            color: #2563eb;
            border: none;
            font-size: 0.9375rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: underline;
        }

        .review-content {
            background: #f9fafb;
            padding: 20px;
            border-radius: 12px;
            border: 2px solid #e5e7eb;
        }

        .review-item {
            margin-bottom: 16px;
        }

        .review-item:last-child {
            margin-bottom: 0;
        }

        .review-label {
            font-weight: 600;
            color: #6b7280;
            font-size: 0.875rem;
            margin-bottom: 4px;
        }

        .review-value {
            color: #1f2937;
            font-size: 1rem;
        }

        .success-screen {
            display: none;
            text-align: center;
            padding: 60px 20px;
        }

        .success-screen.show {
            display: block;
        }

        .success-icon {
            font-size: 5rem;
            margin-bottom: 24px;
        }

        .success-title {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #2563eb, #9333ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }

        .success-message {
            font-size: 1.125rem;
            color: #6b7280;
            margin-bottom: 32px;
        }

        .alert {
            padding: 16px 20px;
            border-radius: 8px;
            margin-bottom: 24px;
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .alert-info {
            background: #eff6ff;
            border: 2px solid #bfdbfe;
            color: #1e40af;
        }

        .alert-success {
            background: #f0fdf4;
            border: 2px solid #bbf7d0;
            color: #166534;
        }

        .honeypot {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
        }

        @media (max-width: 768px) {
            .wizard-title {
                font-size: 2rem;
            }

            .wizard-card {
                padding: 24px;
            }

            .wizard-footer {
                flex-direction: column;
                margin: 0 -24px -24px;
                padding: 20px 24px;
            }

            .wizard-footer-actions {
                width: 100%;
            }

            .wizard-footer-actions button {
                flex: 1;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .checkbox-group {
                grid-template-columns: 1fr;
            }

            .progress-steps {
                font-size: 0.75rem;
            }

            .progress-step {
                min-width: 80px;
            }
        }