/* Start custom CSS for html, class: .elementor-element-52cdeed */<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .profession-test {
            max-width: min(90vw, 800px);
            margin: 20px auto;
            padding: clamp(16px, 4vw, 32px);
            background: linear-gradient(135deg, #f8f9fa 0%, #EEEEEE 50%, #e3f2fd 100%);
            border-radius: clamp(12px, 2vw, 20px);
            box-shadow: 0 10px 30px rgba(17, 81, 211, 0.15);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            position: relative;
            overflow: hidden;
        }
        
        .profession-test::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #1151D3, #FEB236);
            border-radius: 50%;
            opacity: 0.1;
            z-index: 0;
        }
        
        .profession-test::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #82B74B, #202F5B);
            border-radius: 50%;
            opacity: 0.1;
            z-index: 0;
        }
        
        .header {
            text-align: center;
            margin-bottom: clamp(24px, 5vw, 40px);
            position: relative;
            z-index: 1;
        }
        
        // .title {
            display: inline-flex;
            align-items: center;
            gap: clamp(8px, 2vw, 12px);
            background: linear-gradient(135deg, #1151D3, #202F5B);
            color: white;
            padding: clamp(12px, 3vw, 20px) clamp(20px, 5vw, 32px);
            border-radius: 50px;
            font-size: clamp(16px, 4vw, 22px);
            font-weight: bold;
            margin-bottom: clamp(12px, 3vw, 20px);
            box-shadow: 0 6px 20px rgba(17, 81, 211, 0.3);
        }
        
        .title-icon {
            font-size: clamp(20px, 5vw, 28px);
        }
        
        .description {
            color: #202F5B;
            font-size: clamp(14px, 3.5vw, 16px);
            font-weight: 500;
            max-width: 600px;
            margin: 0 auto clamp(16px, 4vw, 24px);
            line-height: 1.5;
        }
        
        .question-counter {
            color: #202F5B;
            font-weight: 600;
            font-size: clamp(14px, 3.5vw, 16px);
            margin-bottom: clamp(16px, 4vw, 24px);
        }
        
        .question-card {
            background: white;
            padding: clamp(20px, 5vw, 32px);
            border-radius: clamp(12px, 3vw, 16px);
            box-shadow: 0 6px 25px rgba(17, 81, 211, 0.1);
            margin-bottom: clamp(20px, 4vw, 32px);
            position: relative;
            z-index: 1;
            border: 1px solid #EEEEEE;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .question-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(17, 81, 211, 0.15);
        }
        
        .question {
            font-size: clamp(16px, 4vw, 20px);
            font-weight: 600;
            color: #202F5B;
            margin-bottom: clamp(20px, 4vw, 28px);
            line-height: 1.5;
        }
        
        .options {
            display: flex;
            flex-direction: column;
            gap: clamp(12px, 3vw, 16px);
        }
        
        .option {
            width: 100%;
            padding: clamp(14px, 3.5vw, 20px);
            text-align: left;
            border: 2px solid #EEEEEE;
            border-radius: clamp(8px, 2vw, 12px);
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: clamp(14px, 3.5vw, 16px);
            font-weight: 500;
            color: #202F5B;
            position: relative;
            overflow: hidden;
        }
        
        .option::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(17, 81, 211, 0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .option:hover {
            border-color: #1151D3;
            background: linear-gradient(135deg, #f8faff, #e3f2fd);
            transform: translateX(4px);
        }
        
        .option:hover::before {
            left: 100%;
        }
        
        .option.selected {
            border-color: #1151D3;
            background: linear-gradient(135deg, #f0f7ff, #e1f0ff);
            color: #1151D3;
            box-shadow: 0 0 0 3px rgba(17, 81, 211, 0.1);
        }
        
        .option.selected::after {
            content: '✓';
            position: absolute;
            right: clamp(16px, 4vw, 24px);
            top: 50%;
            transform: translateY(-50%);
            color: #1151D3;
            font-weight: bold;
            font-size: clamp(16px, 4vw, 20px);
        }
        
        .controls {
            display: flex;
            justify-content: flex-end;
            gap: clamp(12px, 3vw, 16px);
            position: relative;
            z-index: 1;
        }
        
        .btn {
            padding: clamp(12px, 3vw, 16px) clamp(20px, 5vw, 32px);
            border: none;
            border-radius: clamp(8px, 2vw, 12px);
            font-weight: 600;
            font-size: clamp(14px, 3.5vw, 16px);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: clamp(6px, 1.5vw, 10px);
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transition: width 0.6s ease, height 0.6s ease;
            transform: translate(-50%, -50%);
        }
        
        .btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #FEB236, #82B74B);
            color: white;
            box-shadow: 0 4px 15px rgba(254, 178, 54, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(254, 178, 54, 0.4);
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, #202F5B, #1151D3);
            color: white;
            box-shadow: 0 4px 15px rgba(32, 47, 91, 0.3);
        }
        
        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(32, 47, 91, 0.4);
        }
        
        .btn-disabled {
            background: #EEEEEE;
            color: #999;
            cursor: not-allowed;
            opacity: 0.6;
        }
        
        .btn-disabled:hover {
            transform: none;
            box-shadow: none;
        }
        
        .btn-disabled::before {
            display: none;
        }
        
        .result-card {
            text-align: center;
            padding: clamp(24px, 6vw, 48px);
            border-radius: clamp(12px, 3vw, 16px);
            border: 3px solid;
            position: relative;
            z-index: 1;
            background: white;
            margin-top: clamp(16px, 4vw, 24px);
        }
        
        .result-green {
            border-color: #82B74B;
            background: linear-gradient(135deg, #f8fff8, #e8f5e8);
        }
        
        .result-yellow {
            border-color: #FEB236;
            background: linear-gradient(135deg, #fffcf0, #fef7e0);
        }
        
        .result-blue {
            border-color: #1151D3;
            background: linear-gradient(135deg, #f8faff, #e3f2fd);
        }
        
        .result-icon {
            font-size: clamp(48px, 12vw, 72px);
            margin-bottom: clamp(16px, 4vw, 24px);
            display: block;
            animation: bounceIn 0.8s ease;
        }
        
        @keyframes bounceIn {
            0% { transform: scale(0.3); opacity: 0; }
            50% { transform: scale(1.05); }
            70% { transform: scale(0.9); }
            100% { transform: scale(1); opacity: 1; }
        }
        
        .result-title {
            font-size: clamp(20px, 5vw, 28px);
            font-weight: bold;
            color: #202F5B;
            margin-bottom: clamp(16px, 4vw, 24px);
            line-height: 1.2;
        }
        
        .result-text {
            font-size: clamp(16px, 4vw, 18px);
            color: #202F5B;
            line-height: 1.6;
            margin-bottom: clamp(24px, 6vw, 32px);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .result-score {
            background: rgba(255, 255, 255, 0.8);
            padding: clamp(16px, 4vw, 24px);
            border-radius: clamp(8px, 2vw, 12px);
            margin-bottom: clamp(24px, 6vw, 32px);
            border: 1px solid #EEEEEE;
        }
        
        .score-label {
            color: #202F5B;
            margin-bottom: 8px;
            font-size: clamp(12px, 3vw, 14px);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
        }
        
        .score-value {
            font-size: clamp(20px, 5vw, 24px);
            font-weight: 700;
            color: #202F5B;
        }
        
        .result-actions {
            display: flex;
            gap: clamp(12px, 3vw, 16px);
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-green {
            background: linear-gradient(135deg, #82B74B, #6a9b3d);
            color: white;
        }
        
        .btn-yellow {
            background: linear-gradient(135deg, #FEB236, #e09e2d);
            color: white;
        }
        
        .btn-blue {
            background: linear-gradient(135deg, #1151D3, #0d3aa0);
            color: white;
        }
        
        /* Адаптивность для мобильных устройств */
        @media (max-width: 640px) {
            .profession-test {
                margin: 10px;
                border-radius: 16px;
            }
            
            .title {
                flex-direction: column;
                gap: 8px;
                padding: 16px 24px;
            }
            
            .option {
                padding: 16px;
            }
            
            .result-actions {
                flex-direction: column;
                align-items: stretch;
            }
            
            .btn {
                justify-content: center;
                min-height: 48px;
            }
            
            .controls {
                justify-content: stretch;
            }
            
            .controls .btn {
                flex: 1;
                justify-content: center;
            }
        }
        
        /* Для очень маленьких экранов */
        @media (max-width: 380px) {
            .profession-test {
                margin: 5px;
                padding: 12px;
            }
            
            .question-card {
                padding: 16px;
            }
            
            .title {
                padding: 12px 20px;
                font-size: 14px;
            }
            
            .title-icon {
                font-size: 18px;
            }
        }
        
        /* Для планшетов */
        @media (min-width: 641px) and (max-width: 1024px) {
            .profession-test {
                max-width: 85vw;
                padding: 28px;
            }
            
            .question-card {
                padding: 28px;
            }
        }
        
        /* Для больших экранов */
        @media (min-width: 1200px) {
            .profession-test {
                max-width: 900px;
            }
            
            .question {
                font-size: 22px;
            }
            
            .option {
                font-size: 18px;
                padding: 22px;
            }
        }
        
        /* Анимации для появления элементов */
        .fade-in {
            animation: fadeIn 0.5s ease forwards;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Стили для фокуса (доступность) */
        .option:focus,
        .btn:focus {
            outline: 3px solid #1151D3;
            outline-offset: 2px;
        }
        
        /* Загрузка */
        .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
        }
        
        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #EEEEEE;
            border-top: 4px solid #1151D3;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
    </style>/* End custom CSS */