        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background:
                radial-gradient(circle at top left, rgba(255, 255, 255, 0.10), transparent 55%),
                radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.25), transparent 60%),
                #0f172a;
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.98);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(15,23,42,0.4);
            overflow: hidden;
        }

        .wl-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 24px 10px 24px;
            background: linear-gradient(135deg, #0ea5e9 0%, #f97316 100%);
            color: white;
        }

        .wl-logo {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255,255,255,0.12);
            padding: 4px;
            object-fit: contain;
        }

        .wl-app-name {
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-size: 13px;
        }

        .wl-app-tagline {
            font-size: 11px;
            opacity: 0.9;
        }

        .header {
            background: #0f172a;
            color: white;
            padding: 24px;
            text-align: center;
        }

            .header h1 {
                font-size: 28px;
                margin-bottom: 10px;
            }

            .header p {
                opacity: 0.9;
                font-size: 16px;
            }

        .form-container {
            position: relative;
            padding: 30px;
            z-index: 0;
        }

        .form-watermark {
            position: absolute;
            inset: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            opacity: 0.20;
            z-index: 0;
        }

        .form-watermark img {
            max-width: 80%;
            opacity: 0.35;
            filter: grayscale(1);
        }

        .form-container > *:not(.form-watermark) {
            position: relative;
            z-index: 1;
        }

        .progress-bar {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
            position: relative;
        }

            .progress-bar::before {
                content: '';
                position: absolute;
                top: 20px;
                left: 0;
                right: 0;
                height: 2px;
                background: #e5e7eb;
                z-index: -1;
            }

        .progress-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #9ca3af;
            transition: all 0.3s;
        }

            .step-circle.active {
                background: #f59e0b;
                color: white;
            }

            .step-circle.completed {
                background: #10b981;
                color: white;
            }

        .step-label {
            margin-top: 8px;
            font-size: 12px;
            color: #6b7280;
        }

        .form-section {
            display: none;
        }

            .form-section.active {
                display: block;
                animation: fadeIn 0.3s;
            }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateX(20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #374151;
        }

        input, select, textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

            input:focus, select:focus, textarea:focus {
                outline: none;
                border-color: #f59e0b;
            }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .photo-upload {
            border: 2px dashed #e5e7eb;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }

            .photo-upload:hover,
            .photo-upload:focus-visible {
                border-color: #f59e0b;
                background: #fef3c7;
                outline: none;
            }

            .photo-upload input[type="file"] {
                display: none;
            }

        .photo-preview {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 15px;
        }

        .photo-thumbnail {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
            border: 2px solid #e5e7eb;
        }

        .signature-pad {
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            background: #f9fafb;
            position: relative;
            height: 200px;
            cursor: crosshair;
        }

        .signature-clear {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 8px 16px;
            background: #ef4444;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
        }

        .btn-group {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .btn {
            flex: 1;
            padding: 15px 30px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-secondary {
            background: #e5e7eb;
            color: #374151;
        }

            .btn-secondary:hover {
                background: #d1d5db;
            }

        .btn-primary {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
        }

            .btn-primary:hover {
                transform: translateY(-2px);
                box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
            }

            .btn-primary:disabled {
                opacity: 0.5;
                cursor: not-allowed;
            }

        .urgency-selector {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .urgency-option {
            padding: 15px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }

            .urgency-option:hover {
                border-color: #f59e0b;
            }

            .urgency-option.selected {
                border-color: #f59e0b;
                background: #fef3c7;
            }

            .urgency-option .icon {
                font-size: 24px;
                margin-bottom: 5px;
            }

        .success-message {
            text-align: center;
            padding: 40px;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 40px;
            color: white;
        }

        .error-message {
            background: #fee2e2;
            color: #dc2626;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: none;
        }

        /* Responsive layout tweaks */
        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            .container {
                max-width: 100%;
                border-radius: 16px;
            }

            .wl-brand {
                padding: 14px 16px 8px 16px;
            }

            .header {
                padding: 18px;
            }

            .header h1 {
                font-size: 22px;
            }

            .form-container {
                padding: 20px;
            }

            .progress-bar {
                flex-wrap: wrap;
                gap: 12px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .btn-group {
                flex-direction: column;
            }

            .urgency-selector {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .wl-brand {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }

            .wl-logo {
                width: 32px;
                height: 32px;
            }

            .header h1 {
                font-size: 20px;
            }

            .header p {
                font-size: 14px;
            }

            .step-circle {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
        }
    
