        /* ========================================
           CSS RESET & BASE STYLES
           ======================================== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            /* Primary Colors */
            --primary: #00B1EB;
            --primary-hover: #0095c8;
            --primary-light: rgba(0, 177, 235, 0.1);

            /* Background Colors */
            --bg-dark: #0a0f14;
            --bg-dark-secondary: #1a2530;
            --bg-light: #ffffff;
            --bg-light-alt: #f8f9fa;

            /* Text Colors */
            --text-dark: #0a0f14;
            --text-gray: #5f6368;
            --text-light: rgba(255, 255, 255, 0.9);
            --text-muted: rgba(255, 255, 255, 0.6);

            /* Ampel Colors */
            --ampel-red: #dc3545;
            --ampel-red-bg: rgba(220, 53, 69, 0.1);
            --ampel-yellow: #ffc107;
            --ampel-yellow-bg: rgba(255, 193, 7, 0.1);
            --ampel-green: #28a745;
            --ampel-green-bg: rgba(40, 167, 69, 0.1);

            /* Borders */
            --border-light: #e8eaed;
            --border-dark: rgba(255, 255, 255, 0.1);

            /* Shadows */
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.15);

            /* Spacing */
            --section-padding: 80px 56px;
            --section-padding-mobile: 48px 24px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-dark);
            background: var(--bg-light);
        }

        /* ========================================
           TYPOGRAPHY
           ======================================== */
        h1 {
            font-size: 48px;
            font-weight: 700;
            letter-spacing: -1.5px;
            line-height: 1.2;
        }

        h2 {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.3;
        }

        h3 {
            font-size: 24px;
            font-weight: 600;
            line-height: 1.4;
        }

        p {
            margin-bottom: 1rem;
        }

        /* ========================================
           LAYOUT UTILITIES
           ======================================== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .section-label::before {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--primary);
        }

        /* ========================================
           HERO SECTION
           ======================================== */
        .hero {
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 50%, var(--bg-dark) 100%);
            color: var(--text-light);
            padding: var(--section-padding);
            position: relative;
            overflow: hidden;
            min-height: 70vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 177, 235, 0.15) 0%, transparent 70%);
            top: -40%;
            right: -20%;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 177, 235, 0.08) 0%, transparent 70%);
            bottom: -30%;
            left: -10%;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(0, 177, 235, 0.15);
            border: 1px solid rgba(0, 177, 235, 0.3);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 32px;
        }

        .hero-badge svg {
            width: 18px;
            height: 18px;
        }

        .hero h1 {
            margin-bottom: 24px;
        }

        .hero-subtitle {
            font-size: 20px;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* CTA Button */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 177, 235, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }

        .btn-lg {
            padding: 18px 40px;
            font-size: 18px;
        }

        .btn svg {
            width: 20px;
            height: 20px;
        }

        /* Trust Indicators */
        .trust-bar {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid var(--border-dark);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-muted);
        }

        .trust-item svg {
            width: 20px;
            height: 20px;
            color: var(--primary);
        }

        /* ========================================
           TEST SECTION
           ======================================== */
        .test-section {
            background: var(--bg-light);
            padding: var(--section-padding);
        }

        .test-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .test-header h2 {
            margin-bottom: 16px;
        }

        .test-header p {
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Progress Bar */
        .progress-container {
            max-width: 800px;
            margin: 0 auto 48px;
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            position: relative;
        }

        .progress-steps::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--border-light);
            transform: translateY(-50%);
            z-index: 0;
        }

        .progress-step {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--bg-light);
            border: 2px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-gray);
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .progress-step.active {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }

        .progress-step.completed {
            border-color: var(--ampel-green);
            background: var(--ampel-green);
            color: white;
        }

        .progress-step.completed::after {
            content: '✓';
            font-size: 14px;
        }

        .progress-step.completed span {
            display: none;
        }

        .progress-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            font-size: 14px;
            font-weight: 500;
        }

        .progress-info span:first-child {
            color: var(--text-gray);
        }

        .progress-info span:last-child {
            color: var(--primary);
            font-weight: 700;
            font-size: 15px;
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background: var(--border-light);
            border-radius: 3px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--primary-hover));
            border-radius: 3px;
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: 0%;
        }

        /* Question Card */
        .question-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .question-card {
            background: var(--bg-light);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 48px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            display: none;
            animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .question-card.active {
            display: block;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .question-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 32px;
        }

        .question-number {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--primary), var(--primary-hover));
            color: white;
            font-weight: 700;
            font-size: 18px;
            border-radius: 14px;
            box-shadow: 0 4px 12px rgba(0, 177, 235, 0.3);
        }

        .question-content {
            flex: 1;
        }

        .question-text {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .question-info {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.6;
            padding: 12px 16px;
            background: var(--bg-light-alt);
            border-left: 3px solid var(--primary);
            border-radius: 0 8px 8px 0;
        }

        .question-info svg {
            width: 16px;
            height: 16px;
            display: inline-block;
            vertical-align: middle;
            margin-right: 6px;
            color: var(--primary);
        }

        /* Answer Options */
        .answer-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 32px;
        }

        .answer-option {
            position: relative;
        }

        .answer-option input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }

        .answer-label {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 24px;
            background: var(--bg-light);
            border: 2px solid var(--border-light);
            border-radius: 14px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 600;
            font-size: 15px;
        }

        .answer-label:hover {
            border-color: var(--primary);
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 177, 235, 0.15);
        }

        .answer-option input:checked + .answer-label {
            border-color: var(--primary);
            background: var(--primary-light);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0, 177, 235, 0.25);
        }

        .answer-icon {
            width: 36px;
            height: 36px;
            border: 2px solid var(--border-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
            font-size: 16px;
            color: var(--text-gray);
            background: var(--bg-light-alt);
        }

        .answer-text {
            flex: 1;
        }

        .answer-option input:checked + .answer-label .answer-icon {
            border-color: var(--primary);
            background: var(--primary);
            color: white;
        }

        /* Answer option variants */
        .answer-option[data-value="ja"] .answer-icon {
            color: var(--ampel-green);
            border-color: rgba(40, 167, 69, 0.3);
            background: var(--ampel-green-bg);
        }
        .answer-option[data-value="ja"] .answer-label:hover,
        .answer-option[data-value="ja"] input:checked + .answer-label {
            border-color: var(--ampel-green);
            background: var(--ampel-green-bg);
            color: var(--ampel-green);
        }
        .answer-option[data-value="ja"] input:checked + .answer-label .answer-icon {
            border-color: var(--ampel-green);
            background: var(--ampel-green);
            color: white;
        }

        .answer-option[data-value="teilweise"] .answer-icon {
            color: #9a7b00;
            border-color: rgba(255, 193, 7, 0.3);
            background: var(--ampel-yellow-bg);
        }
        .answer-option[data-value="teilweise"] .answer-label:hover,
        .answer-option[data-value="teilweise"] input:checked + .answer-label {
            border-color: var(--ampel-yellow);
            background: var(--ampel-yellow-bg);
            color: #9a7b00;
        }
        .answer-option[data-value="teilweise"] input:checked + .answer-label .answer-icon {
            border-color: var(--ampel-yellow);
            background: var(--ampel-yellow);
            color: #333;
        }

        .answer-option[data-value="nein"] .answer-icon {
            color: var(--ampel-red);
            border-color: rgba(220, 53, 69, 0.3);
            background: var(--ampel-red-bg);
        }
        .answer-option[data-value="nein"] .answer-label:hover,
        .answer-option[data-value="nein"] input:checked + .answer-label {
            border-color: var(--ampel-red);
            background: var(--ampel-red-bg);
            color: var(--ampel-red);
        }
        .answer-option[data-value="nein"] input:checked + .answer-label .answer-icon {
            border-color: var(--ampel-red);
            background: var(--ampel-red);
            color: white;
        }

        .answer-option[data-value="weiss-nicht"] .answer-icon {
            color: #6c757d;
            border-color: rgba(108, 117, 125, 0.3);
            background: rgba(108, 117, 125, 0.1);
        }
        .answer-option[data-value="weiss-nicht"] .answer-label:hover,
        .answer-option[data-value="weiss-nicht"] input:checked + .answer-label {
            border-color: #6c757d;
            background: rgba(108, 117, 125, 0.1);
            color: #6c757d;
        }
        .answer-option[data-value="weiss-nicht"] input:checked + .answer-label .answer-icon {
            border-color: #6c757d;
            background: #6c757d;
            color: white;
        }

        /* Navigation Buttons */
        .question-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 40px;
            padding-top: 28px;
            border-top: 1px solid var(--border-light);
        }

        .btn-nav {
            padding: 14px 28px;
            font-size: 15px;
            border-radius: 10px;
        }

        .btn-back {
            background: transparent;
            color: var(--text-gray);
            border: 2px solid var(--border-light);
        }

        .btn-back:hover {
            background: var(--bg-light-alt);
            color: var(--text-dark);
            border-color: var(--text-gray);
        }

        .btn-back:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            pointer-events: none;
        }

        .btn-next {
            min-width: 180px;
        }

        /* ========================================
           RESULT SECTION
           ======================================== */
        .result-section {
            display: none;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 50%, var(--bg-dark) 100%);
            padding: var(--section-padding);
            position: relative;
            overflow: hidden;
        }

        .result-section::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            top: -400px;
            right: -200px;
            pointer-events: none;
            transition: background 0.5s ease;
        }

        .result-section.red-result::before {
            background: radial-gradient(circle, rgba(220, 53, 69, 0.15) 0%, transparent 70%);
        }
        .result-section.yellow-result::before {
            background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
        }
        .result-section.green-result::before {
            background: radial-gradient(circle, rgba(40, 167, 69, 0.15) 0%, transparent 70%);
        }

        .result-section.visible {
            display: block;
            animation: slideUp 0.6s ease;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .result-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Result Hero - Two Column */
        .result-hero {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 48px;
            align-items: center;
            margin-bottom: 48px;
        }

        /* Score Card */
        .score-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px 32px;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .score-gauge {
            position: relative;
            width: 180px;
            height: 180px;
            margin: 0 auto 20px;
        }

        .score-ring {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
            filter: drop-shadow(0 0 20px currentColor);
        }

        .score-ring-bg {
            fill: none;
            stroke: rgba(255, 255, 255, 0.1);
            stroke-width: 10;
        }

        .score-ring-progress {
            fill: none;
            stroke-width: 10;
            stroke-linecap: round;
            stroke-dasharray: 502.65;
            stroke-dashoffset: 502.65;
            transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1);
            filter: drop-shadow(0 0 8px currentColor);
        }

        .score-ring-progress.red { stroke: var(--ampel-red); color: var(--ampel-red); }
        .score-ring-progress.yellow { stroke: var(--ampel-yellow); color: var(--ampel-yellow); }
        .score-ring-progress.green { stroke: var(--ampel-green); color: var(--ampel-green); }

        .score-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .score-value {
            font-size: 52px;
            font-weight: 700;
            line-height: 1;
            color: white;
        }

        .score-max {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

        .score-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.4);
        }

        /* Result Content */
        .result-content {
            color: white;
        }

        .result-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }

        .result-badge.red {
            background: rgba(220, 53, 69, 0.2);
            color: var(--ampel-red);
            border: 1px solid rgba(220, 53, 69, 0.4);
        }
        .result-badge.yellow {
            background: rgba(255, 193, 7, 0.2);
            color: var(--ampel-yellow);
            border: 1px solid rgba(255, 193, 7, 0.4);
        }
        .result-badge.green {
            background: rgba(40, 167, 69, 0.2);
            color: var(--ampel-green);
            border: 1px solid rgba(40, 167, 69, 0.4);
        }

        .result-badge svg {
            width: 18px;
            height: 18px;
        }

        .result-headline {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .result-headline.red { color: var(--ampel-red); }
        .result-headline.yellow { color: var(--ampel-yellow); }
        .result-headline.green { color: var(--ampel-green); }

        .result-description {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .result-cta .btn {
            background: white;
            color: var(--bg-dark);
        }
        .result-cta .btn:hover {
            background: var(--primary);
            color: white;
        }

        /* Answer Breakdown */
        .breakdown-section {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 32px;
        }

        .breakdown-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .breakdown-title {
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .breakdown-stats {
            display: flex;
            gap: 20px;
        }

        .breakdown-stat {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
        }

        .breakdown-stat .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .breakdown-stat.good .dot { background: var(--ampel-green); }
        .breakdown-stat.partial .dot { background: var(--ampel-yellow); }
        .breakdown-stat.bad .dot { background: var(--ampel-red); }

        .breakdown-stat.good { color: var(--ampel-green); }
        .breakdown-stat.partial { color: var(--ampel-yellow); }
        .breakdown-stat.bad { color: var(--ampel-red); }

        /* Answer Items */
        .answer-breakdown {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .answer-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            border-left: 3px solid transparent;
        }

        .answer-item.good { border-left-color: var(--ampel-green); }
        .answer-item.partial { border-left-color: var(--ampel-yellow); }
        .answer-item.bad { border-left-color: var(--ampel-red); }
        .answer-item.unknown { border-left-color: #6c757d; }

        .answer-item-icon {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .answer-item.good .answer-item-icon { background: var(--ampel-green-bg); color: var(--ampel-green); }
        .answer-item.partial .answer-item-icon { background: var(--ampel-yellow-bg); color: #9a7b00; }
        .answer-item.bad .answer-item-icon { background: var(--ampel-red-bg); color: var(--ampel-red); }
        .answer-item.unknown .answer-item-icon { background: rgba(108, 117, 125, 0.2); color: #6c757d; }

        .answer-item-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.4;
        }

        /* Quick Wins Section */
        .quick-wins {
            margin-top: 32px;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .quick-wins-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .quick-wins-title svg {
            width: 18px;
            height: 18px;
        }

        .quick-wins-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .quick-win-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 16px;
            background: rgba(0, 177, 235, 0.1);
            border: 1px solid rgba(0, 177, 235, 0.2);
            border-radius: 10px;
        }

        .quick-win-item svg {
            width: 18px;
            height: 18px;
            color: var(--primary);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .quick-win-item span {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }

        /* ========================================
           LEAD FORM SECTION
           ======================================== */
        .form-section {
            display: none;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 50%, var(--bg-dark) 100%);
            padding: var(--section-padding);
            position: relative;
        }

        .form-section.visible {
            display: block;
            animation: fadeIn 0.6s ease;
        }

        .form-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 177, 235, 0.1) 0%, transparent 70%);
            top: -30%;
            left: -10%;
            pointer-events: none;
        }

        .form-container {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
            color: var(--text-light);
        }

        .form-header .section-label {
            color: var(--primary);
        }

        .form-header h2 {
            margin-bottom: 16px;
        }

        .form-header p {
            color: var(--text-muted);
        }

        /* Form Styles */
        .lead-form {
            background: var(--bg-light);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-lg);
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .form-group {
            margin-bottom: 0;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .form-label .required {
            color: var(--ampel-red);
        }

        .form-label-optional {
            font-weight: 400;
            color: var(--text-gray);
            font-size: 13px;
        }

        /* Anti-Spam: Honeypot verstecken */
        .form-hp {
            position: absolute;
            left: -9999px;
            top: -9999px;
            opacity: 0;
            height: 0;
            width: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .form-input {
            width: 100%;
            padding: 14px 16px;
            font-size: 15px;
            font-family: inherit;
            border: 2px solid var(--border-light);
            border-radius: 10px;
            background: var(--bg-light);
            color: var(--text-dark);
            transition: all 0.25s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-light);
        }

        .form-input.error {
            border-color: var(--ampel-red);
        }

        .form-input.error:focus {
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
        }

        .error-message {
            font-size: 12px;
            color: var(--ampel-red);
            margin-top: 6px;
            display: none;
        }

        .form-group.has-error .error-message {
            display: block;
        }

        /* Select Dropdown */
        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235f6368' 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 16px center;
            padding-right: 44px;
        }

        /* Radio Group */
        .radio-group {
            display: flex;
            gap: 24px;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .radio-option input {
            width: 20px;
            height: 20px;
            accent-color: var(--primary);
            cursor: pointer;
        }

        .radio-option span {
            font-size: 15px;
            color: var(--text-dark);
        }

        /* Privacy Checkbox */
        .privacy-group {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid var(--border-light);
        }

        .checkbox-option {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
        }

        .checkbox-option input {
            width: 20px;
            height: 20px;
            accent-color: var(--primary);
            cursor: pointer;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .checkbox-option span {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .checkbox-option a {
            color: var(--primary);
            text-decoration: none;
        }

        .checkbox-option a:hover {
            text-decoration: underline;
        }

        /* Form Submit */
        .form-submit {
            margin-top: 32px;
        }

        .form-submit .btn {
            width: 100%;
        }

        /* Success Message */
        .form-success {
            display: none;
            text-align: center;
            padding: 40px;
        }

        .form-success.visible {
            display: block;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: var(--ampel-green-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

        .success-icon svg {
            width: 40px;
            height: 40px;
            color: var(--ampel-green);
        }

        .form-success h3 {
            color: var(--ampel-green);
            margin-bottom: 16px;
        }

        .form-success p {
            color: var(--text-gray);
        }

        /* ========================================
           BREADCRUMB OVERRIDE
           ======================================== */
        .breadcrumb {
            background: var(--bg-light);
        }

        /* ========================================
           RESPONSIVE STYLES
           ======================================== */
        @media (max-width: 1024px) {
            :root {
                --section-padding: 60px 32px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 48px 24px;
            }

            h1 {
                font-size: 32px;
                letter-spacing: -1px;
            }

            h2 {
                font-size: 28px;
            }

            .hero-subtitle {
                font-size: 17px;
            }

            .trust-bar {
                flex-wrap: wrap;
                gap: 20px;
            }

            .answer-options {
                grid-template-columns: 1fr;
            }

            .question-card {
                padding: 28px;
            }

            .question-header {
                flex-direction: column;
                gap: 16px;
            }

            .question-number {
                min-width: 44px;
                height: 44px;
                font-size: 16px;
            }

            .question-text {
                font-size: 18px;
            }

            .question-info {
                font-size: 13px;
            }

            .question-nav {
                flex-direction: column;
                gap: 12px;
            }

            .question-nav .btn {
                width: 100%;
            }

            .progress-steps {
                display: none;
            }

            .result-hero {
                grid-template-columns: 1fr;
                gap: 32px;
                text-align: center;
            }

            .score-card {
                max-width: 280px;
                margin: 0 auto;
            }

            .result-content {
                text-align: center;
            }

            .result-headline {
                font-size: 28px;
            }

            .answer-breakdown {
                grid-template-columns: 1fr;
            }

            .breakdown-header {
                flex-direction: column;
                gap: 16px;
            }

            .breakdown-stats {
                justify-content: center;
            }

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

            .form-group.full-width {
                grid-column: 1;
            }

            .lead-form {
                padding: 28px;
            }

            .radio-group {
                flex-direction: column;
                gap: 12px;
            }
        }

        @media (max-width: 480px) {
            :root {
                --section-padding: 32px 16px;
            }

            h1 {
                font-size: 26px;
            }

            h2 {
                font-size: 24px;
            }

            .btn-lg {
                padding: 14px 28px;
                font-size: 16px;
            }

            .hero-badge {
                font-size: 12px;
                padding: 6px 16px;
            }

            .score-gauge {
                width: 150px;
                height: 150px;
            }

            .score-value {
                font-size: 40px;
            }

            .result-headline {
                font-size: 24px;
            }

            .result-description {
                font-size: 15px;
            }

            .breakdown-section {
                padding: 20px;
            }

            .answer-item {
                padding: 10px 12px;
            }

            .answer-item-text {
                font-size: 12px;
            }

            .quick-win-item span {
                font-size: 13px;
            }
        }
