
        .assessment-container {
            max-width: 800px;
            margin: 0 auto;
            margin-top: 1em;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: white;
            border-radius: 5px
        }
        .assessment-header {
            text-align: center;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeIn 0.6s ease forwards;
        }
        .assessment-title {
            font-size: 32px;
            font-weight: 300;
            letter-spacing: -0.5px;
            margin-bottom: 6px;
            color: #1a1a1a;
        }
        .assessment-subtitle {
            font-size: 16px;
            color: #6b7280;
            font-weight: 400;
        }
        .assessment-subtitle p {
            margin-bottom: 1em !important;
        }

        .start-cta-hero {
            text-align: center;
            padding: 20px 0 10px 0;
        }
        .cta-accent-line {
            width: 48px;
            height: 3px;
            background: #1a1a1a;
            margin: 0 auto 28px auto;
        }
        .cta-subtext {
            margin-top: 16px;
            font-size: 13px;
            color: #9ca3af;
            letter-spacing: 0.5px;
        }
        .question-container {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            opacity: 0;
            animation: fadeIn 0.6s ease 0.2s forwards;
            position: relative;
        }
        .category-label {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #0066cc;
            margin-bottom: 20px;
        }
        .question-header {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
        }
        .question-text {
            font-size: 20px;
            font-weight: 400;
            line-height: 1.5;
            color: #1a1a1a;
            flex: 1;
        }
        .info-tooltip-trigger {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #f0f7ff;
            border: 1.5px solid #0066cc;
            color: #0066cc;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: help;
            transition: all 0.2s ease;
            flex-shrink: 0;
            margin-top: 2px;
            position: relative;
        }
        .info-tooltip-trigger:hover {
            background: #0066cc;
            color: white;
            /* transform: scale(1.1); */
        }
        .info-tooltip {
            position: absolute;
            top: 30px;
            right: -20px;
            width: 320px;
            padding: 16px;
            background: #1a1a1a;
            color: white;
            border-radius: 8px;
            font-size: 14px;
            line-height: 1.6;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }
        .info-tooltip.visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }
        .info-tooltip::before {
            content: '';
            position: absolute;
            top: -8px;
            right: 24px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid #1a1a1a;
        }
        .answer-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .answer-option {
            padding: 20px 24px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            background: #ffffff;
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        .answer-option:hover {
            border-color: #0066cc;
            background: #f7f9fb;
            transform: translateX(1px);
        }
        .answer-option.selected {
            border-color: #0066cc;
            background: #f0f7ff;
        }
        .answer-radio {
            width: 20px;
            height: 20px;
            border: 2px solid #d1d5db;
            border-radius: 50%;
            position: relative;
            flex-shrink: 0;
            transition: border-color 0.2s ease;
            margin-top: 2px;
        }
        .answer-option:hover .answer-radio {
            border-color: #0066cc;
        }
        .answer-option.selected .answer-radio {
            border-color: #0066cc;
        }
        .answer-option.selected .answer-radio::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: #0066cc;
            border-radius: 50%;
        }
        .answer-content {
            flex: 1;
        }
        .answer-label {
            font-size: 16px;
            color: #374151;
            font-weight: 500;
            margin-bottom: 4px;
        }
        .answer-description {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.5;
        }
        .answer-option.selected .answer-label {
            color: #1a1a1a;
        }
        .answer-option.selected .answer-description {
            color: #4b5563;
        }
        .navigation-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 40px;
            opacity: 0;
            animation: fadeIn 0.6s ease 0.4s forwards;
        }
        .nav-button {
            padding: 14px 36px !important;
            font-size: 15px !important;
            font-weight: 600 !important;
            border: 2px solid #0066cc !important;
            border-radius: 6px !important;
            cursor: pointer !important;
            transition: all 0.2s ease !important;
            background: white !important;
            color: #0066cc !important;
            text-transform: none !important;
            letter-spacing: 0 !important;
            line-height: 1.2 !important;
            position: relative !important;
        }
        .nav-button:hover:not(:disabled) {
            background: #0066cc !important;
            color: white !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
        }
        .nav-button:disabled {
            opacity: 0.4 !important;
            cursor: not-allowed !important;
            transform: none !important;
            border-color: #d1d5db !important;
            color: #9ca3af !important;
            background: #f9fafb !important;
        }
        .nav-button-wrapper {
            position: relative;
            display: inline-block;
        }
        .nav-button-tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            padding: 8px 16px;
            background: #1f2937;
            color: white;
            font-size: 13px;
            font-weight: 500;
            border-radius: 6px;
            white-space: nowrap;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s ease;
            margin-bottom: 8px;
        }
        .nav-button-tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: #1f2937;
        }
        .nav-button-wrapper:hover .nav-button-tooltip.show {
            opacity: 1;
        }
        .progress-bar-container {
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeIn 0.6s ease 0.1s forwards;
        }
        .progress-bar {
            width: 100%;
            height: 6px;
            background: transparent;
            border-radius: 6px;
            position: relative;
            display: flex;
            gap: 2px;
        }
        .progress-segment {
            flex: 1;
            height: 100%;
            background: #e5e7eb;
            position: relative;
            overflow: hidden;
            transition: background 0.3s ease;
        }
        .progress-segment:first-child {
            border-radius: 6px 0 0 6px;
        }
        .progress-segment:last-child {
            border-radius: 0 6px 6px 0;
        }
        .progress-segment-fill {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            background: linear-gradient(90deg, #0066cc, #0052a3);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: 0;
        }
        .progress-segment.completed {
            background: #0066cc;
        }
        .progress-segment.current .progress-segment-fill {
            animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }
        .progress-sections {
            display: flex;
            justify-content: space-between;
            margin-top: 12px;
            gap: 2px;
        }
        .progress-section-label {
            flex: 1;
            font-size: 11px;
            color: #6b7280;
            font-weight: 500;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: color 0.3s ease;
        }
        .progress-section-label.completed {
            color: #0066cc;
            font-weight: 600;
        }
        .progress-section-label.current {
            color: #1a1a1a;
            font-weight: 600;
        }
        .progress-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 8px;
        }
        .progress-text {
            font-size: 13px;
            color: #6b7280;
            font-weight: 500;
        }
        .progress-indicator {
            font-size: 14px;
            color: #374151;
            font-weight: 600;
        }
        .results-container {
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
        }
        .results-header {
            text-align: center;
        }
        .score-display {
            font-size: 64px;
            font-weight: 200;
            color: #0066cc;
            margin: 20px 0;
        }
        .score-label {
            font-size: 18px;
            color: #6b7280;
        }
        .maturity-level {
            margin: 20px auto;
            padding: 20px;
            background: linear-gradient(135deg, #f0f7ff, #e6f2ff);
            border-radius: 12px;
            max-width: 500px;
        }
        .maturity-level-title {
            font-size: 24px;
            font-weight: 500;
            color: #0066cc;
            margin-bottom: 8px;
        }
        .maturity-level-description {
            font-size: 16px;
            color: #4b5563;
            line-height: 1.6;
        }
        .chart-container {
            width: 100%;
            max-width: 500px;
            height: 400px;
            margin: 30px auto;
            position: relative;
        }
        .category-scores {
            margin-top: 40px;
        }
        .category-scores-title {
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 20px;
            color: #1a1a1a;
        }
        .category-score-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #e5e7eb;
        }
        .category-score-item:last-child {
            border-bottom: none;
        }
        .category-name {
            font-size: 16px;
            font-weight: 500;
            color: #1a1a1a;
            min-width: 200px;
        }
        .category-score-value {
            font-size: 24px;
            font-weight: 300;
            color: #0066cc;
            min-width: 60px;
            text-align: right;
        }
        .category-score-bar {
            flex: 1;
            height: 4px;
            background: #e5e7eb;
            margin: 0 20px;
            border-radius: 2px;
            position: relative;
            overflow: hidden;
        }
        .category-score-fill {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            background: linear-gradient(90deg, #0066cc, #0052a3);
            border-radius: 2px;
            transition: width 1s ease;
        }
        .start-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 500px;
            opacity: 0;
            animation: fadeIn 0.6s ease 0.2s forwards;
        }
        .start-content {
            max-width: 720px;
            width: 100%;
            padding: 60px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 2px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
        }
        .start-metric-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 48px;
        }
        .metric-item {
            text-align: center;
        }
        .metric-number {
            font-size: 48px;
            font-weight: 200;
            color: #0066cc;
            line-height: 1;
            margin-bottom: 8px;
        }
        .metric-label {
            font-size: 13px;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
        }
        .start-divider {
            height: 1px;
            background: #e5e7eb;
            margin: 48px 0;
        }
        .start-heading {
            font-size: 28px;
            font-weight: 300;
            color: #1a1a1a;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
            line-height: 1.3;
        }
        .start-description {
            font-size: 17px;
            color: #4b5563;
            line-height: 1.6;
            margin-bottom: 36px;
        }
        .start-outcomes {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 48px;
        }
        .outcome-item {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 16px;
            color: #374151;
            line-height: 1.5;
        }
        .outcome-bullet {
            width: 6px;
            height: 6px;
            background: #0066cc;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .start-button-minimal {
            width: auto;
            padding: 20px 64px;
            font-size: 15px;
            font-weight: 500;
            background: #3d3cb4 !important;
            color: white !important;
            border: none;
            border-radius: 3px !important;
            cursor: pointer;
            transition: all 0.25s ease;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            line-height: 1.2;
        }
        .start-button-minimal:hover {
            background: #3d3cb4 !important;
            filter: brightness(1.05);
            /* letter-spacing: 3.5px; */
            box-shadow: none !important;
            transform: translateY(-1px);
        }
        
        /* Two-column start layout */
        .start-two-col {
            display: flex;
            gap: 48px;
            align-items: flex-start;
        }
        .start-text-col {
            flex: 1;
        }
        .start-preview-col {
            flex: 0 0 220px;
        }
        
        /* Report preview card */
        .report-preview {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transform: rotate(0deg);
            transition: transform 0.3s ease;
        }
        /* .report-preview:hover {
            transform: rotate(0deg) scale(1.02);
        } */
        .report-preview-header {
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .report-preview-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            width: 0;
            background: linear-gradient(90deg, #3d3cb4 0%, #3d3cb4 75%, #FA1E29 100%);
            transition: width 0.4s ease;
        }
        .report-preview:hover .report-preview-header::after {
            width: 100%;
        }
        
        .report-preview:hover .preview-badge {
            background: #FA1E29;
            opacity: 85%;
        }
        .preview-title {
            font-size: 8px;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .report-preview-body {
            padding: 20px 16px;
            background: #fafafa;
        }
        .preview-chart {
            width: 100%;
            height: auto;
            margin-bottom: 16px;
        }
        .preview-score {
            text-align: center;
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid #e5e7eb;
        }
        .preview-score-number {
            display: block;
            font-size: 28px;
            font-weight: 200;
            color: #0066cc;
            line-height: 1;
        }
        .preview-score-label {
            font-size: 9px;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .preview-bars {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .preview-bar {
            height: 4px;
            background: #e5e7eb;
            border-radius: 2px;
            overflow: hidden;
        }
        .preview-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, #0066cc, #0052a3);
            border-radius: 2px;
        }
        .report-preview-footer {
            padding: 8px 16px;
            background: #f3f4f6;
            text-align: center;
        }
        .report-preview-footer span {
            font-size: 9px;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .preview-logo {
            height: 20px;
        }
        .preview-logo img {
            height: 100%;
            width: auto;
            display: block;
            object-fit: contain;
        }

        /* PDF Badge in preview */
        .preview-badge {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(255,255,255,0.15);
            padding: 3px 8px;
            border-radius: 4px;
        }
        .pdf-icon {
            width: 12px;
            height: 12px;
            color: #ffffff;
        }
        .preview-badge span {
            font-size: 9px;
            font-weight: 600;
            color: #ffffff;
            letter-spacing: 0.5px;
        }
        
        /* Content wall - recommendations teaser */
        .recommendations-teaser {
            margin-top: 40px;
            margin-bottom: 0;
            position: relative;
            overflow: hidden;
            max-height: 140px;
        }
        .recommendations-teaser-title {
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 12px;
            color: #1a1a1a;
        }
        .recommendations-teaser-content {
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding: 20px;
            background: #f9fafb;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
        }
        .teaser-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .teaser-category {
            width: 120px;
            height: 12px;
            /* background: linear-gradient(90deg, #0066cc 0%, #0066cc 100%); */
            border-radius: 2px;
            opacity: 0.6;
        }

        .teaser-text {
            font-weight: 800;
            
        }
        .teaser-lines {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .teaser-line {
            height: 10px;
            background: #e5e7eb;
            border-radius: 2px;
            width: 100%;
        }
        .teaser-line.short {
            width: 70%;
        }
        .recommendations-teaser-overlay {
            position: absolute;
            top: 50px;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, 
                rgba(255,255,255,0) 0%, 
                rgba(255,255,255,0.9) 50%,
                rgba(255,255,255,1) 75%
            );
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 8px;
        }
        .overlay-content {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #374151;
            font-size: 16px;
            font-weight: 500;
        }
        .lock-icon {
            width: 20px;
            height: 20px;
            color: #6b7280;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .hidden {
            display: none !important;
        }
        
        /* Report CTA Section */
        .report-cta-section {
            margin-top: 24px;
            padding: 32px 48px;
            background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
            border: 1px solid #e2e8f0;
            border-radius: 12px;
        }
        .cta-content {
            display: flex;
            gap: 32px;
            align-items: flex-start;
        }
        .cta-text {
            flex: 1;
        }
        .cta-text h3 {
            font-size: 22px;
            font-weight: 500;
            color: #1a1a1a;
            margin: 0 0 4px 0;
        }
        .cta-subtitle {
            font-size: 15px;
            color: #6b7280;
            margin: 0 0 16px 0;
        }
        .cta-includes {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .cta-include-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #374151;
        }
        .cta-check {
            width: 18px;
            height: 18px;
            color: #0066cc;
            flex-shrink: 0;
        }
        .cta-form {
            flex: 0 0 340px;
        }
        
        /* Results footer */
        .results-footer {
            margin-top: 48px;
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid #e5e7eb;
        }
        .restart-button-subtle {
            padding: 12px 24px !important;
            font-size: 14px !important;
            font-weight: 500 !important;
            background: transparent !important;
            color: #6b7280 !important;
            border: 1px solid #d1d5db !important;
            border-radius: 6px !important;
            cursor: pointer !important;
            transition: all 0.2s ease !important;
        }
        .restart-button-subtle:hover {
            color: #374151 !important;
            border-color: #9ca3af !important;
            background: #f9fafb !important;
        }
        
        /* HubSpot Form Container */
        .hubspot-form-wrapper {
            max-width: 500px;
            margin: 0 auto;
            text-align: left;
        }
        .hubspot-form-wrapper .hs-form {
            font-family: inherit !important;
        }
        .hubspot-form-wrapper .hs-form-field {
            margin-bottom: 16px !important;
        }
        .hubspot-form-wrapper .hs-form-field label {
            font-size: 14px !important;
            font-weight: 500 !important;
            color: #374151 !important;
            margin-bottom: 6px !important;
            display: block !important;
        }
        .hubspot-form-wrapper .hs-input {
            width: 100% !important;
            padding: 12px 16px !important;
            font-size: 16px !important;
            border: 2px solid #e5e7eb !important;
            border-radius: 6px !important;
            background: white !important;
            transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
            box-sizing: border-box !important;
        }
        .hubspot-form-wrapper .hs-input:focus {
            outline: none !important;
            border-color: #0066cc !important;
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1) !important;
        }
        .hubspot-form-wrapper .hs-button {
            width: 100% !important;
            padding: 16px 32px !important;
            font-size: 16px !important;
            font-weight: 600 !important;
            background: #3d3cb4 !important;
            color: white !important;
            border: none !important;
            border-radius: 6px !important;
            cursor: pointer !important;
            transition: all 0.2s ease !important;
            margin-top: 8px !important;
        }
        .hubspot-form-wrapper .hs-button:hover {
            background: #2d2c8a !important;
            transform: translateY(-1px) !important;
            box-shadow: 0 4px 12px rgba(61, 60, 180, 0.3) !important;
        }
        .hubspot-form-wrapper .hs-error-msgs {
            list-style: none !important;
            padding: 0 !important;
            margin: 6px 0 0 0 !important;
        }
        .hubspot-form-wrapper .hs-error-msgs li {
            color: #dc2626 !important;
            font-size: 13px !important;
        }
        .hubspot-form-wrapper .hs-form-required {
            color: #dc2626 !important;
        }
        .hubspot-form-wrapper .hs_firstname,
        .hubspot-form-wrapper .hs_lastname {
            display: inline-block !important;
            width: calc(50% - 8px) !important;
            vertical-align: top !important;
        }
        .hubspot-form-wrapper .hs_firstname {
            margin-right: 16px !important;
        }
        .submission-success {
            padding: 24px;
            background: #d1fae5;
            border: 1px solid #6ee7b7;
            border-radius: 8px;
            text-align: center;
        }
        .submission-success h4 {
            color: #065f46;
            font-size: 18px;
            margin: 0 0 8px 0;
        }
        .submission-success p {
            color: #047857;
            margin: 0;
        }
        
        /* Mobile */
        @media (max-width: 768px) {
            .assessment-container {
                padding: 20px 16px;
            }
            .question-container {
                padding: 24px 20px;
            }
            .assessment-title {
                font-size: 24px;
            }
            .question-text {
                font-size: 18px;
            }
            .info-tooltip {
                width: 280px;
                right: -10px;
            }
            .chart-container {
                height: 350px;
            }
            .progress-section-label {
                font-size: 9px;
            }
            .nav-button {
                padding: 12px 24px !important;
                font-size: 14px !important;
            }
            .start-content {
                padding: 40px 24px;
            }
            .start-metric-grid {
                gap: 24px;
            }
            .metric-number {
                font-size: 36px;
            }
            .metric-label {
                font-size: 11px;
            }
            .start-heading {
                font-size: 24px;
            }
            .start-description {
                font-size: 16px;
            }
            .start-button-minimal {
                padding: 16px 32px;
                font-size: 15px;
            }
            .answer-description {
                font-size: 13px;
            }
            .category-name {
                min-width: 140px;
                font-size: 14px;
            }
            
            /* Start screen mobile */
            .start-two-col {
                flex-direction: column;
                gap: 32px;
            }
            .start-preview-col {
                flex: none;
                width: 100%;
                display: flex;
                justify-content: center;
                order: -1;
            }
            .report-preview {
                max-width: 200px;
                transform: none;
            }
            .report-preview:hover {
                transform: scale(1.02);
            }
            
            /* CTA section mobile */
            .report-cta-section {
                padding: 24px 20px;
            }
            .cta-content {
                flex-direction: column;
                gap: 24px;
            }
            .cta-form {
                flex: none;
                width: 100%;
            }
            .cta-text h3 {
                font-size: 18px;
            }
            .cta-includes {
                gap: 6px;
            }
            .cta-include-item {
                font-size: 13px;
            }
            
            /* Form mobile */
            .hubspot-form-wrapper .hs_firstname,
            .hubspot-form-wrapper .hs_lastname {
                display: block !important;
                width: 100% !important;
                margin-right: 0 !important;
            }
        }

        #dataPolygon {
            transition: all 0.4s ease;
        }

        /* Settings Cog */
        .settings-cog {
            width: 36px !important;
            height: 36px !important;
            border: none !important;
            background: transparent !important;
            cursor: pointer !important;
            padding: 6px !important;
            border-radius: 6px !important;
            transition: all 0.2s ease !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            flex-shrink: 0 !important;
        }
        .settings-cog:hover {
            background: #f3f4f6 !important;
        }
        .settings-cog svg {
            width: 20px;
            height: 20px;
            color: #9ca3af;
            transition: all 0.2s ease;
        }
        .settings-cog:hover svg {
            color: #6b7280;
            transform: rotate(45deg);
        }

        /* Settings Modal */
        .settings-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 2000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease;
        }
        .settings-modal-overlay.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .settings-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.95);
            background: white;
            border-radius: 12px;
            padding: 24px;
            width: 320px;
            max-width: 90vw;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            z-index: 2001;
            opacity: 0;
            pointer-events: none;
            transition: all 0.2s ease;
        }
        .settings-modal-overlay.visible .settings-modal {
            opacity: 1;
            pointer-events: auto;
            transform: translate(-50%, -50%) scale(1);
        }
        .settings-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        .settings-modal-title {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
            margin: 0;
        }
        .settings-modal-close {
            width: 28px !important;
            height: 28px !important;
            border: none !important;
            background: transparent !important;
            cursor: pointer !important;
            border-radius: 6px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: #9ca3af !important;
            transition: all 0.2s ease !important;
            padding: 0 !important;
        }
        .settings-modal-close:hover {
            background: #f3f4f6 !important;
            color: #6b7280 !important;
        }
        .settings-option {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 16px;
        }
        .settings-option-text {
            flex: 1;
        }
        .settings-option-label {
            font-size: 14px;
            font-weight: 500;
            color: #374151;
            margin-bottom: 4px;
        }
        .settings-option-hint {
            font-size: 13px;
            color: #6b7280;
            line-height: 1.4;
        }

        /* Toggle Switch */
        .toggle-switch {
            position: relative;
            width: 44px;
            height: 24px;
            flex-shrink: 0;
        }
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #d1d5db;
            transition: 0.2s;
            border-radius: 24px;
        }
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.2s;
            border-radius: 50%;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        .toggle-switch input:checked + .toggle-slider {
            background-color: #0066cc;
        }
        .toggle-switch input:checked + .toggle-slider:before {
            transform: translateX(20px);
        }

    