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

        html, body, #root {
            height: 100%;
            width: 100%;
        }

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
            background-color: #f8fafc;
            color: #1e293b;
            line-height: 1.6;
        }

        .assessment-container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .assessment-header {
            background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .assessment-header h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .assessment-header p {
            font-size: 1.1rem;
            opacity: 0.95;
        }

        .assessment-main {
            flex: 1;
            padding: 3rem 2rem;
            max-width: 900px;
            margin: 0 auto;
            width: 100%;
        }

        /* Start Screen */
        .start-screen {
            text-align: center;
            animation: fadeIn 0.5s ease-in;
        }

        .start-screen h2 {
            font-size: 1.8rem;
            color: #1e3a5f;
            margin-bottom: 1rem;
        }

        .start-screen p {
            font-size: 1.1rem;
            color: #475569;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .trust-signals {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
            padding: 2rem;
            background: white;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
        }

        .trust-signal {
            text-align: center;
        }

        .trust-signal-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .trust-signal p {
            font-size: 0.95rem;
            color: #64748b;
        }

        .start-button {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
            transition: all 0.3s ease;
            margin-top: 2rem;
        }

        .start-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 12px rgba(59, 130, 246, 0.4);
        }

        /* Question Screen */
        .question-screen {
            animation: fadeIn 0.5s ease-in;
        }

        .progress-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .category-label {
            font-weight: 600;
            color: #3b82f6;
            font-size: 0.95rem;
        }

        .progress-bar-container {
            flex: 1;
            min-width: 200px;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: #e2e8f0;
            border-radius: 4px;
            overflow: hidden;
            margin-top: 0.5rem;
        }

        .progress-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, #3b82f6, #2563eb);
            transition: width 0.3s ease;
        }

        .question-content {
            background: white;
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            margin: 2rem 0;
        }

        .question-text {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1e3a5f;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .answers-grid {
            display: grid;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .answer-option {
            padding: 1.5rem;
            border: 2px solid #e2e8f0;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: left;
            background: white;
        }

        .answer-option:hover {
            border-color: #3b82f6;
            background: #f0f9ff;
            transform: translateX(4px);
        }

        .answer-option.selected {
            border-color: #3b82f6;
            background: #eff6ff;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .answer-letter {
            display: inline-block;
            width: 24px;
            height: 24px;
            background: #3b82f6;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 24px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-right: 0.75rem;
        }

        .answer-option.selected .answer-letter {
            background: #2563eb;
        }

        .answer-text {
            display: inline-block;
            vertical-align: middle;
        }

        .button-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .btn-secondary {
            background: #e2e8f0;
            color: #1e3a5f;
        }

        .btn-secondary:hover {
            background: #cbd5e1;
        }

        .btn-secondary:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .btn-primary {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
        }

        /* Results Screen */
        .results-screen {
            animation: fadeIn 0.5s ease-in;
        }

        .score-circle {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin: 2rem auto;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            animation: scaleIn 0.6s ease-out;
        }

        .score-circle.explorer {
            background: linear-gradient(135deg, #f59e0b, #f97316);
        }

        .score-circle.planner {
            background: linear-gradient(135deg, #f59e0b, #eab308);
        }

        .score-circle.builder {
            background: linear-gradient(135deg, #3b82f6, #06b6d4);
        }

        .score-circle.leader {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .score-percentage {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
        }

        .score-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            margin-top: 0.5rem;
        }

        .maturity-badge {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 20px;
            font-weight: 700;
            margin: 1rem auto 0;
            text-align: center;
            color: white;
        }

        .maturity-badge.explorer {
            background: #f59e0b;
        }

        .maturity-badge.planner {
            background: #f59e0b;
        }

        .maturity-badge.builder {
            background: #3b82f6;
        }

        .maturity-badge.leader {
            background: #10b981;
        }

        .results-section {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .results-section h3 {
            color: #1e3a5f;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }

        .radar-chart-container {
            width: 100%;
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 2rem 0;
        }

        .category-breakdown {
            display: grid;
            gap: 1.5rem;
        }

        .category-item {
            padding: 1.5rem;
            background: #f8fafc;
            border-radius: 6px;
            border-left: 4px solid #3b82f6;
        }

        .category-item-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
        }

        .category-name {
            font-weight: 600;
            color: #1e3a5f;
        }

        .category-score {
            font-weight: 700;
            font-size: 1.1rem;
            color: #3b82f6;
        }

        .mini-progress-bar {
            width: 100%;
            height: 6px;
            background: #e2e8f0;
            border-radius: 3px;
            overflow: hidden;
        }

        .mini-progress-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, #3b82f6, #2563eb);
            transition: width 0.3s ease;
        }

        .recommendations {
            margin-top: 2rem;
        }

        .recommendation-item {
            padding: 1.5rem;
            background: #eff6ff;
            border-left: 4px solid #3b82f6;
            border-radius: 6px;
            margin-bottom: 1rem;
        }

        .recommendation-title {
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 0.5rem;
        }

        .recommendation-text {
            color: #475569;
            line-height: 1.7;
        }

        .email-section {
            background: #f0f9ff;
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
            border: 2px solid #bfdbfe;
        }

        .email-section h3 {
            color: #1e3a5f;
            margin-bottom: 1rem;
        }

        .email-form {
            display: grid;
            gap: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-weight: 600;
            color: #1e3a5f;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .form-group input {
            padding: 0.75rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
        }

        .form-group input:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .submit-button {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 0.875rem 1.5rem;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 0.5rem;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
        }

        .cta-section {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            margin: 2rem 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .cta-section h3 {
            color: #1e3a5f;
            margin-bottom: 1rem;
        }

        .cta-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .cta-button {
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button-primary {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
        }

        .cta-button-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
        }

        /* FAQ Section */
        .faq-section {
            background: white;
            padding: 3rem 2rem;
            margin-top: 4rem;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-section h2 {
            color: #1e3a5f;
            margin-bottom: 2rem;
            font-size: 1.8rem;
            text-align: center;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: #f8fafc;
            border-radius: 6px;
            border-left: 4px solid #3b82f6;
        }

        .faq-question {
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }

        .faq-answer {
            color: #475569;
            line-height: 1.7;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes scaleIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .assessment-header {
                padding: 2rem 1rem;
            }

            .assessment-header h1 {
                font-size: 1.8rem;
            }

            .assessment-main {
                padding: 2rem 1rem;
            }

            .question-content {
                padding: 1.5rem;
            }

            .score-circle {
                width: 160px;
                height: 160px;
            }

            .score-percentage {
                font-size: 2.5rem;
            }

            .results-section {
                padding: 1.5rem;
            }

            .trust-signals {
                gap: 1rem;
                padding: 1rem;
            }

            .cta-buttons {
                grid-template-columns: 1fr;
            }

            .progress-info {
                flex-direction: column;
                align-items: flex-start;
            }

            .progress-bar-container {
                width: 100%;
            }

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

            .btn {
                width: 100%;
            }
        }

        /* Print styles */
        @media print {
            .assessment-header {
                background: #1e3a5f;
            }

            .button-group, .cta-buttons, .email-section {
                display: none;
            }

            .results-screen {
                page-break-inside: avoid;
            }
        }
    