* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #2a3f5f 100%);
            min-height: 100vh;
            padding: 0;
        }

        /* Compact Header */
        .compact-header {
            background: linear-gradient(135deg, rgba(10, 22, 40, 0.98) 0%, rgba(26, 35, 50, 0.95) 100%);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(74, 144, 226, 0.2);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo-img {
            height: 40px;
            width: auto;
        }

        .header-title {
            display: flex;
            flex-direction: column;
        }

        .title-main {
            color: white;
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .title-sub {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.85rem;
            font-weight: 500;
        }

        .value-prop {
            display: inline-block;
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(53, 122, 189, 0.2));
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-top: 4px;
            border: 1px solid rgba(74, 144, 226, 0.3);
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .btn-book {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            color: white;
            padding: 10px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-book:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
        }

        /* Main Container */
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        /* Progress Bar */
        .progress-container {
            background: linear-gradient(135deg, rgba(15, 32, 39, 0.6) 0%, rgba(26, 35, 50, 0.6) 100%);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 25px 30px;
            margin-bottom: 25px;
            border: 1px solid rgba(74, 144, 226, 0.15);
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            margin-bottom: 15px;
        }

        .progress-line {
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 0;
        }

        .progress-line-fill {
            height: 100%;
            background: linear-gradient(90deg, #4a90e2 0%, #357abd 100%);
            transition: width 0.5s ease;
            box-shadow: 0 0 15px rgba(74, 144, 226, 0.6);
        }

        .progress-step {
            text-align: center;
            position: relative;
            z-index: 1;
            flex: 1;
        }

        .step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 255, 255, 0.15);
            margin: 0 auto 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
        }

        .progress-step.active .step-circle {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            border-color: #4a90e2;
            color: white;
            box-shadow: 0 0 20px rgba(74, 144, 226, 0.6);
        }

        .progress-step.completed .step-circle {
            background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
            border-color: #2ecc71;
            color: white;
        }

        .step-label {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.8rem;
            font-weight: 500;
        }

        .progress-step.active .step-label {
            color: white;
            font-weight: 600;
        }

        /* Alert Messages */
        .alert-message {
            background: rgba(255, 107, 107, 0.15);
            border: 2px solid rgba(255, 107, 107, 0.5);
            border-radius: 12px;
            padding: 15px 20px;
            margin-bottom: 20px;
            color: #ff6b6b;
            font-weight: 500;
            display: none;
            align-items: center;
            gap: 10px;
        }

        .alert-message.show {
            display: flex;
        }

        /* Form Container */
        .form-container {
            background: linear-gradient(135deg, rgba(15, 32, 39, 0.7) 0%, rgba(26, 35, 50, 0.7) 100%);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 35px;
            border: 1px solid rgba(74, 144, 226, 0.15);
            margin-bottom: 25px;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .section-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
        }

        .section-title-group {
            flex: 1;
        }

        .section-title {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .section-subtitle {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .section-divider {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.95rem;
            font-weight: 600;
            margin: 30px 0 20px 0;
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            border-left: 4px solid #4a90e2;
        }

        /* Form Grid */
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .form-group {
            position: relative;
        }

        .form-label {
            display: block;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .required {
            color: #ff6b6b;
            margin-left: 3px;
        }

        .optional-badge {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.75rem;
            font-weight: 400;
            margin-left: 6px;
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: white;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.08);
            border-color: #4a90e2;
            box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        select.form-control {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 18px;
            padding-right: 45px;
        }

        select.form-control option {
            background: #0a1628;
            color: white;
            padding: 10px;
        }

        /* Technology Selection */
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .tech-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .tech-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(74, 144, 226, 0.5);
            transform: translateY(-2px);
        }

        .tech-card.selected {
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(53, 122, 189, 0.2) 100%);
            border-color: #4a90e2;
            box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
        }

        .tech-card input[type="checkbox"] {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .tech-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 0;
        }

        .tech-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            background: rgba(255, 255, 255, 0.1);
        }

        .tech-info {
            flex: 1;
        }

        .tech-name {
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .tech-desc {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
        }

        .check-indicator {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: transparent;
        }

        .tech-card.selected .check-indicator {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            border-color: #4a90e2;
            color: white;
        }

        /* Assessment Question Deck */
        .questions-loader {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 12px;
            min-height: 180px;
            border: 1px dashed rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            margin-bottom: 25px;
            padding: 30px 20px;
            color: rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.03);
        }

        .questions-loader.hidden {
            display: none;
        }

        .questions-loader p {
            margin: 0;
            font-size: 0.95rem;
            text-align: center;
        }

        .loader-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #4a90e2;
            animation: pulseGlow 1.5s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0% {
                transform: scale(0.85);
                opacity: 0.6;
            }
            50% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(0.85);
                opacity: 0.6;
            }
        }

        .question-groups {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .question-group {
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 24px;
            background: rgba(255, 255, 255, 0.03);
        }

        .question-group-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 18px;
        }

        .question-group-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: rgba(74, 144, 226, 0.15);
            color: #4a90e2;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .question-group-text {
            flex: 1;
        }

        .question-group-title {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .question-group-description {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            margin-top: 4px;
        }

        .question-count-badge {
            background: rgba(74, 144, 226, 0.15);
            color: #4a90e2;
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: 999px;
            border: 1px solid rgba(74, 144, 226, 0.3);
        }

        .question-item {
            margin-bottom: 20px;
        }

        .question-label {
            color: white;
            font-size: 0.95rem;
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
        }

        .question-field .form-control {
            min-height: 48px;
        }

        .question-field textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .question-helper {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.8rem;
            margin-top: 6px;
        }

        .question-meta-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(74, 144, 226, 0.1);
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.8rem;
            margin-top: 6px;
        }

        .question-empty-state {
            text-align: center;
            color: rgba(255, 255, 255, 0.65);
            padding: 40px 20px;
            border: 1px dashed rgba(255, 255, 255, 0.2);
            border-radius: 12px;
        }

        /* Buttons */
        .button-group {
            display: flex;
            gap: 15px;
            justify-content: space-between;
            margin-top: 30px;
        }

        .btn {
            padding: 14px 35px;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            color: white;
            box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.08);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }

            .form-grid, .tech-grid {
                grid-template-columns: 1fr;
            }

            .button-group {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .title-main {
                font-size: 1rem;
            }
        }