        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Verb', Roboto, sans-serif;
            background: linear-gradient(45deg, rgba(0,33,105,1) 0%, rgba(35,139,250,1) 100%);
            min-height: 100vh;
            color: #111;
            letter-spacing: -0.4px;
            line-height: 1.618;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
            -moz-osx-font-smoothing: grayscale;
        }
        
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 1rem;
        }
        
        .logo-container {
            text-align: center;
            margin-bottom: 2rem;
            margin-left: -20px;
        }
        
        .logo-box {
            display: inline-block;
            background: transparent;
            border-radius: 1rem;
            padding: 1.5rem;
        }
        
        .quiz-content {
            width: 100%;
            max-width: 48rem;
        }
        
        .card {
            background: white;
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            margin-bottom: 5em;
        }
        
        @media (min-width: 768px) {
            .card {
                padding: 3rem;
            }
        }
        
        .text-center {
            text-align: center;
        }
        
        .icon-circle {
            display: inline-block;
            padding: 1rem;
            background: #EFF6FF;
            border-radius: 50%;
            margin-bottom: 1.5rem;
        }
        
        .icon {
            width: 3rem;
            height: 3rem;
            color: #3B82F6;
        }
        
        h1 {
            font-size: 2.25rem;
            line-height: 1;
            font-weight: bold;
            color: #111827;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }
        
        h2 {
            font-size: 1.5rem;
            line-height: 1;
            font-weight: bold;
            color: #111827;
            margin-bottom: 2rem;
            text-transform: uppercase;
        }
        h3 {
            line-height: 1;
        }
        
        @media (min-width: 768px) {
            h2 {
                font-size: 1.875rem;
            }
        }
        
        h3 {
            text-transform: uppercase;
        }
        
        .subtitle {
            font-size: 1.25rem;
            color: #4B5563;
            margin-bottom: 2rem;
        }
        
        .form-container {
            max-width: 28rem;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 1rem;
        }
        
        .form-group:last-of-type {
            margin-bottom: 2rem;
        }
        
        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 0.5rem;
            position: relative;
        }
        
        .form-input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid #D1D5DB;
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: border-color 0.2s;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #3B82F6;
        }

        .form-group .form-label.required:after {
            position: absolute;
            /*top: 16px;*/
            /*right: 16px;*/
            top: 44px;
            right: 14px;
            display: block;
            width: 4px;
            height: 4px;
            border-radius: 2px;
            background-color: #da160e;
            content: "";
        }
        
        .phone-group {
            display: flex;
            gap: 0.5rem;
        }
        
        .country-dropdown {
            position: relative;
            width: 140px;
        }
        
        .country-search {
            cursor: pointer;
        }
        
        .country-list {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 2px solid #3B82F6;
            border-top: none;
            border-radius: 0 0 0.5rem 0.5rem;
            max-height: 200px;
            overflow-y: auto;
            z-index: 1000;
            display: none;
        }
        
        .country-list.active {
            display: block;
        }
        
        .country-item {
            padding: 0.75rem 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .country-item:hover {
            background: #EFF6FF;
        }
        
        .country-flag {
            font-size: 1.25rem;
        }
        
        .text-gray {
            color: #6B7280;
        }
        
        .ml-auto {
            margin-left: auto;
        }
        
        .error-message {
            color: #111111;
            font-size: 0.875rem;
            font-weight: 500;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            padding: 0.75rem 1rem;
            background: #FFD454;
            border-radius: 0.375rem;
            display: none;
        }
        
        .error-message.show {
            display: block;
        }
        
        .form-input.error {
            border-color: #EF4444;
            background-color: #FEF2F2;
        }
        
        .form-input.error:focus {
            border-color: #DC2626;
        }
        
        .btn {
            padding: 16px 12px;
            border: none;
            border-radius: 9999px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            text-decoration: none;
            background: rgb(35, 250, 146);
            color: #111111;
            margin-top: 20px;
        }
        
        /*.btn:hover:not(:disabled) {
            box-shadow: rgba(35, 175, 217, 0.3) 0px 5px 30px 15px;
        }*/
        
        .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .btn-primary {
            width: 100%;
            background: rgb(35, 250, 146);
            color: #111;
            /*box-shadow: 0 5px 30px 5px rgba(35, 250, 146, 0.2);*/
            /*box-shadow: rgba(35, 175, 217, 0.3) 0px 5px 30px 15px;*/
            box-shadow: rgba(35, 250, 146, 0.2) 0px 5px 30px 15px;
            font-weight: 900;
            text-transform: uppercase;
        }
        .btn-primary:hover {
            box-shadow: 0 5px 30px 5px rgba(35, 250, 146, 0.5);
        }
        
        .btn-primary:hover:not(:disabled) {
            box-shadow: 0 5px 35px 18px rgba(35, 250, 146, 0.4);
        }
        
        .btn-secondary {
            background-color: #6B7280;
            color: #fff;
            outline: none;
            box-shadow: none;
            text-transform: uppercase;
            font-weight: 900;
        }
        
        .btn-secondary:hover {
            box-shadow: 0 5px 30px 15px rgba(107, 114, 128, 0.3);
        }
        
        .progress-container {
            margin-bottom: 1.5rem;
            cursor: pointer;
        }
        
        .progress-bar {
            background: #E5E7EB;
            border-radius: 9999px;
            height: 0.5rem;
            overflow: hidden;
            position: relative;
        }
        
        .progress-bar:hover {
            background: #D1D5DB;
        }
        
        .progress-segment {
            position: absolute;
            top: 0;
            height: 100%;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .progress-segment:hover {
            opacity: 0.8;
        }
        
        .progress-segment.completed {
            background: #3B82F6;
        }
        
        .progress-segment.current {
            background: #93C5FD;
        }
        
        .progress-fill {
            background: #3B82F6;
            height: 100%;
            transition: width 0.3s;
        }
        
        .progress-text {
            color: white;
            font-size: 0.875rem;
            margin-top: 0.5rem;
        }
        
        .question-content {
            transition: opacity 0.3s ease-out, transform 0.3s ease-out;
        }
        
        .question-fade-out {
            opacity: 0;
            transform: translateY(-10px);
        }
        
        .options-container {
            margin-bottom: 2rem;
        }
        
        .option-btn {
            width: 100%;
            text-align: left;
            padding: 1.5rem;
            border: 2px solid #D1D5DB;
            background: white;
            border-radius: 0.75rem;
            cursor: pointer;
            transition: all 0.2s;
            margin-bottom: 1rem;
            font-size: 1.125rem;
            color: #111827;
        }
        
        .option-btn:hover {
            border-color: #93C5FD;
            background: #F9FAFB;
        }
        
        .option-btn.selected {
            border-color: #3B82F6;
            background: #EFF6FF;
        }
        
        .nav-buttons {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
        }
        
        .nav-buttons .btn {
            width: auto;
        }
        
        .btn-next {
            margin-left: auto;
        }
        
        .result-header {
            padding: 2rem;
            text-align: center;
            color: white;
            border-radius: 1rem 1rem 0 0;
        }
        
        @media (min-width: 768px) {
            .result-header {
                padding: 3rem;
            }
        }
        
        .result-header.ads {
            background: #9333EA;
        }
        
        .result-header.web {
            background: rgb(35, 250, 146);
        }
        
        .result-header.keynote {
            background: #FFD454;
        }
        
        .result-header.strategy {
            background: #EF4444;
        }
        
        .result-title {
            font-size: 1.875rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        @media (min-width: 768px) {
            .result-title {
                font-size: 2.25rem;
            }
        }
        
        .result-subtitle {
            font-size: 1.25rem;
            opacity: 0.9;
        }
        
        @media (min-width: 768px) {
            .result-subtitle {
                font-size: 1.5rem;
            }
        }
        
        .result-body {
            padding: 2rem;
        }
        
        @media (min-width: 768px) {
            .result-body {
                padding: 3rem;
            }
        }
        
        .result-description {
            font-size: 1.125rem;
            color: #111827;
            margin-bottom: 2rem;
        }
        
        .benefits-title {
            font-size: 1.25rem;
            font-weight: bold;
            color: #111827;
            margin-bottom: 1rem;
        }
        
        .benefits-list {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }
        
        .check-icon {
            width: 1.5rem;
            height: 1.5rem;
            color: #10B981;
            flex-shrink: 0;
            margin-top: 0.125rem;
        }
        
        .benefit-text {
            /*color: #374151;*/
            color: #111;
        }
        
        .result-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        @media (min-width: 640px) {
            .result-actions {
                flex-direction: row;
            }
        }
        
        /*.result-actions .btn {
            flex: 1;
        }*/

        .result-actions .btn {
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        @media (max-width: 639px) {
            .result-actions .btn {
                white-space: normal;
                text-align: center;
                line-height: 1.3;
                /*padding: 12px 24px;*/
                padding: 20px 24px 14px;
                min-height: 48px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }
        
        .btn-ads {
            background: #9333EA;
            color: #fff;
            font-weight: 900;
            text-transform: uppercase;
            box-shadow: 0 5px 30px 15px rgba(147, 51, 234, 0.3);
        }
        
        .btn-ads:hover {
            box-shadow: 0 5px 35px 18px rgba(147, 51, 234, 0.4);
        }
        
        .btn-web {
            background: rgb(35, 250, 146);
            color: #111;
            font-weight: 900;
            text-transform: uppercase;
            box-shadow: 0 5px 30px 15px rgba(35, 250, 146, 0.3);
        }
        
        .btn-web:hover {
            box-shadow: 0 5px 35px 18px rgba(35, 250, 146, 0.4);
        }
        
        .btn-keynote {
            background: #FFD454;
            color: #111;
            font-weight: 900;
            text-transform: uppercase;
            box-shadow: 0 5px 30px 15px rgba(255, 212, 84, 0.3);
        }
        
        .btn-keynote:hover {
            box-shadow: 0 5px 35px 18px rgba(255, 212, 84, 0.4);
        }
        
        .btn-strategy {
            background: #EF4444;
            color: #fff;
            font-weight: 900;
            text-transform: uppercase;
            box-shadow: 0 5px 30px 15px rgba(239, 68, 68, 0.3);
        }
        
        .btn-strategy:hover {
            box-shadow: 0 5px 35px 18px rgba(239, 68, 68, 0.4);
        }
        
        .flex-1 {
            flex: 1;
        }
        
        .hidden {
            display: none;
        }