        .wegweiser-page {
            min-height: 100vh;
            background: linear-gradient(180deg, #0a0f14 0%, #1a2530 50%, #0f1419 100%);
            position: relative;
            overflow: hidden;
        }

        /* Stars Background */
        .stars {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #fff;
            border-radius: 50%;
            opacity: 0.3;
            animation: twinkle 3s infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.5); }
        }


        /* Confetti & Fireworks Canvas */
        #effects-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1000;
        }

        /* Main Container */
        .wegweiser-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 24px;
            position: relative;
            z-index: 10;
        }

        /* Header */
        .wegweiser-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .wegweiser-header h1 {
            font-size: 48px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: -1.5px;
            text-shadow: 0 0 40px rgba(0,177,235,0.3);
        }

        .wegweiser-header p {
            font-size: 18px;
            color: rgba(255,255,255,0.6);
        }

        /* Map Container */
        .map-container {
            position: relative;
            width: 100%;
            min-height: 420px;
            margin-bottom: 40px;
        }

        /* SVG Path */
        .map-path {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .map-path path {
            fill: none;
            stroke: rgba(255,255,255,0.08);
            stroke-width: 4;
            stroke-linecap: round;
            stroke-dasharray: 15 10;
        }

        .map-path .path-progress {
            stroke: url(#pathGradient);
            stroke-width: 6;
            stroke-dasharray: 2000;
            stroke-dashoffset: 2000;
            filter: drop-shadow(0 0 12px rgba(0,177,235,0.6));
            transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Stations */
        .stations {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 40px 60px;
            min-height: 360px;
        }

        .station {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .station:hover:not(.locked) {
            transform: scale(1.1) translateY(-5px);
        }

        /* Alternating heights for map feel */
        .station:nth-child(1) { margin-top: 20px; }
        .station:nth-child(2) { margin-top: 140px; }
        .station:nth-child(3) { margin-top: 60px; }
        .station:nth-child(4) { margin-top: 180px; }
        .station:nth-child(5) { margin-top: 100px; }
        .station:nth-child(6) { margin-top: 0; }

        .station-marker {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: rgba(255,255,255,0.03);
            border: 3px solid rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.4s;
        }

        .station-marker svg {
            width: 36px;
            height: 36px;
            color: rgba(255,255,255,0.3);
            transition: all 0.4s;
        }

        .station-marker .station-number {
            position: absolute;
            top: -6px;
            right: -6px;
            width: 32px;
            height: 32px;
            background: rgba(30,40,50,0.9);
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            color: rgba(255,255,255,0.5);
            transition: all 0.4s;
        }

        .station-label {
            margin-top: 16px;
            font-size: 13px;
            font-weight: 600;
            color: rgba(255,255,255,0.4);
            text-align: center;
            max-width: 90px;
            transition: all 0.4s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Station States */
        .station.completed .station-marker {
            background: rgba(34,197,94,0.15);
            border-color: #22c55e;
            box-shadow: 0 0 30px rgba(34,197,94,0.3);
        }

        .station.completed .station-marker svg {
            color: #22c55e;
        }

        .station.completed .station-marker .station-number {
            background: #22c55e;
            border-color: #22c55e;
            color: #fff;
        }

        .station.completed .station-label {
            color: #22c55e;
        }

        .station.active .station-marker {
            background: rgba(0,177,235,0.15);
            border-color: #00B1EB;
            box-shadow: 0 0 40px rgba(0,177,235,0.5);
            animation: pulse-station 2s infinite;
            transform: scale(1.1);
        }

        @keyframes pulse-station {
            0%, 100% { box-shadow: 0 0 30px rgba(0,177,235,0.4); }
            50% { box-shadow: 0 0 50px rgba(0,177,235,0.7); }
        }

        .station.active .station-marker svg {
            color: #00B1EB;
            animation: icon-bounce 1s infinite;
        }

        @keyframes icon-bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }

        .station.active .station-marker .station-number {
            background: #00B1EB;
            border-color: #00B1EB;
            color: #fff;
            animation: number-pulse 1s infinite;
        }

        @keyframes number-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15); }
        }

        .station.active .station-label {
            color: #00B1EB;
        }

        .station.locked .station-marker {
            opacity: 0.3;
        }

        .station.locked .station-label {
            opacity: 0.3;
        }

        .station.locked {
            cursor: not-allowed;
        }

        /* Destination special */
        .station:last-child.completed .station-marker {
            background: linear-gradient(135deg, rgba(251,191,36,0.2), rgba(251,146,60,0.2));
            border-color: #fbbf24;
            box-shadow: 0 0 50px rgba(251,191,36,0.5);
            animation: goal-glow 1.5s infinite;
        }

        @keyframes goal-glow {
            0%, 100% { box-shadow: 0 0 40px rgba(251,191,36,0.4); }
            50% { box-shadow: 0 0 70px rgba(251,191,36,0.7); }
        }

        .station:last-child.completed .station-marker svg {
            color: #fbbf24;
        }

        .station:last-child.completed .station-marker .station-number {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            border-color: #fbbf24;
        }

        .station:last-child.completed .station-label {
            color: #fbbf24;
        }

        /* Traveler Icon */
        .traveler {
            position: absolute;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #00B1EB, #0077b6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 40px rgba(0,177,235,0.8), 0 0 80px rgba(0,177,235,0.4);
            z-index: 20;
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            opacity: 0;
        }

        .traveler.visible {
            opacity: 1;
        }

        .traveler svg {
            width: 28px;
            height: 28px;
            color: #fff;
        }

        .traveler::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, #00B1EB, #0077b6);
            animation: traveler-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
            z-index: -1;
        }

        @keyframes traveler-ping {
            0% { transform: scale(1); opacity: 0.7; }
            100% { transform: scale(2.5); opacity: 0; }
        }

        /* Question Panel */
        .question-panel {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 28px;
            padding: 48px;
            backdrop-filter: blur(20px);
            max-width: 800px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .question-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #00B1EB, transparent);
        }

        .question-panel.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Progress Bar */
        .progress-bar-container {
            margin-bottom: 32px;
        }

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

        .progress-step {
            font-size: 14px;
            font-weight: 600;
            color: #00B1EB;
        }

        .progress-percent {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
        }

        .progress-bar {
            height: 6px;
            background: rgba(255,255,255,0.1);
            border-radius: 3px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #00B1EB, #00d4ff);
            border-radius: 3px;
            transition: width 0.5s ease;
            box-shadow: 0 0 10px rgba(0,177,235,0.5);
        }

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

        .question-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, rgba(0,177,235,0.2), rgba(0,177,235,0.05));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
        }

        .question-icon::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 22px;
            background: linear-gradient(135deg, #00B1EB, transparent);
            opacity: 0.3;
            z-index: -1;
        }

        .question-icon svg {
            width: 36px;
            height: 36px;
            color: #00B1EB;
        }

        .question-title {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
            letter-spacing: -0.5px;
        }

        .question-subtitle {
            font-size: 15px;
            color: #00B1EB;
            font-weight: 500;
        }

        /* Answer Options */
        .answers {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 36px;
        }

        .answer {
            background: rgba(255,255,255,0.02);
            border: 2px solid rgba(255,255,255,0.06);
            border-radius: 16px;
            padding: 22px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            overflow: hidden;
        }

        .answer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0,177,235,0.1), transparent);
            transition: left 0.5s;
        }

        .answer:hover::before {
            left: 100%;
        }

        .answer:hover {
            border-color: rgba(0,177,235,0.4);
            background: rgba(0,177,235,0.05);
            transform: translateX(8px);
        }

        .answer.selected {
            border-color: #00B1EB;
            background: rgba(0,177,235,0.1);
            transform: translateX(8px);
            box-shadow: 0 0 30px rgba(0,177,235,0.2);
        }

        .answer.selected::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: #00B1EB;
        }

        .answer-radio {
            width: 26px;
            height: 26px;
            border: 2px solid rgba(255,255,255,0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .answer:hover .answer-radio {
            border-color: #00B1EB;
        }

        .answer.selected .answer-radio {
            border-color: #00B1EB;
            background: #00B1EB;
            animation: radio-pop 0.3s ease;
        }

        @keyframes radio-pop {
            50% { transform: scale(1.2); }
        }

        .answer.selected .answer-radio::after {
            content: '';
            width: 10px;
            height: 10px;
            background: #fff;
            border-radius: 50%;
        }

        .answer-content h4 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 3px;
            transition: color 0.3s;
        }

        .answer-content p {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
        }

        .answer.selected .answer-content h4 {
            color: #00B1EB;
        }

        /* Navigation */
        .question-nav {
            display: flex;
            justify-content: space-between;
            gap: 16px;
        }

        .btn-nav {
            padding: 16px 32px;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
        }

        .btn-back {
            background: rgba(255,255,255,0.05);
            color: rgba(255,255,255,0.7);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .btn-back:hover:not(:disabled) {
            background: rgba(255,255,255,0.1);
            transform: translateX(-4px);
        }

        .btn-back:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .btn-next {
            background: linear-gradient(135deg, #00B1EB, #0095c8);
            color: #fff;
            margin-left: auto;
            box-shadow: 0 4px 20px rgba(0,177,235,0.3);
        }

        .btn-next:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0,177,235,0.4);
        }

        .btn-next:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            box-shadow: none;
        }

        .btn-next:not(:disabled) {
            animation: btn-glow 2s infinite;
        }

        @keyframes btn-glow {
            0%, 100% { box-shadow: 0 4px 20px rgba(0,177,235,0.3); }
            50% { box-shadow: 0 4px 30px rgba(0,177,235,0.5); }
        }

        /* Start Screen */
        .start-screen {
            text-align: center;
            padding: 50px 40px;
        }

        .start-visual {
            position: relative;
            width: 160px;
            height: 160px;
            margin: 0 auto 40px;
        }

        .start-icon {
            width: 130px;
            height: 130px;
            background: linear-gradient(135deg, rgba(0,177,235,0.2), rgba(0,177,235,0.05));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(-50%, -50%) translateY(0); }
            50% { transform: translate(-50%, -50%) translateY(-10px); }
        }

        .start-icon svg {
            width: 60px;
            height: 60px;
            color: #00B1EB;
        }

        .orbit {
            position: absolute;
            inset: 0;
            border: 2px dashed rgba(0,177,235,0.2);
            border-radius: 50%;
            animation: orbit-rotate 15s linear infinite;
        }

        @keyframes orbit-rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .orbit-dot {
            position: absolute;
            width: 14px;
            height: 14px;
            background: #00B1EB;
            border-radius: 50%;
            top: -7px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 20px #00B1EB;
        }

        .start-title {
            font-size: 40px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .start-subtitle {
            font-size: 18px;
            color: rgba(255,255,255,0.6);
            margin-bottom: 40px;
            max-width: 450px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .btn-start {
            background: linear-gradient(135deg, #00B1EB, #0095c8);
            color: #fff;
            padding: 20px 56px;
            font-size: 18px;
            font-weight: 600;
            border: none;
            border-radius: 16px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            transition: all 0.4s;
            box-shadow: 0 8px 30px rgba(0,177,235,0.4);
            position: relative;
            overflow: hidden;
        }

        .btn-start::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shine 2s infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        .btn-start:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 40px rgba(0,177,235,0.5);
        }

        .btn-start svg {
            transition: transform 0.3s;
        }

        .btn-start:hover svg {
            transform: translateX(5px);
        }

        /* Results Screen */
        .results-screen.hidden {
            display: none;
        }

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

        /* Answer Summary */
        .answer-summary {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 32px;
        }

        .summary-title {
            font-size: 14px;
            font-weight: 600;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .summary-title svg {
            width: 16px;
            height: 16px;
            color: #00B1EB;
        }

        .summary-items {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .summary-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .summary-label {
            font-size: 11px;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .summary-value {
            font-size: 14px;
            color: #fff;
            font-weight: 500;
        }

        /* Recommendation Reason */
        .rec-reason {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }

        .rec-reason svg {
            width: 16px;
            height: 16px;
            color: #22c55e;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .rec-reason-text {
            font-size: 12px;
            color: rgba(255,255,255,0.6);
            line-height: 1.5;
        }

        /* Export Buttons */
        .export-buttons {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .btn-export {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 20px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 12px;
            color: rgba(255,255,255,0.8);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-export:hover {
            background: rgba(0,177,235,0.1);
            border-color: #00B1EB;
            color: #00B1EB;
        }

        .btn-export svg {
            width: 18px;
            height: 18px;
        }

        /* Email Modal */
        .email-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1001;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        .email-modal.active {
            display: flex;
        }

        .email-modal-content {
            background: linear-gradient(135deg, #1a2530, #0a0f14);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 32px;
            max-width: 420px;
            width: 90%;
        }

        .email-modal h3 {
            color: #fff;
            font-size: 20px;
            margin-bottom: 8px;
        }

        .email-modal p {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            margin-bottom: 24px;
        }

        .email-input-group {
            margin-bottom: 20px;
        }

        .email-input-group label {
            display: block;
            color: rgba(255,255,255,0.7);
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .email-input-group input {
            width: 100%;
            padding: 14px 16px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 10px;
            color: #fff;
            font-size: 15px;
            outline: none;
            transition: all 0.3s;
        }

        .email-input-group input:focus {
            border-color: #00B1EB;
            background: rgba(0,177,235,0.05);
        }

        .email-modal-buttons {
            display: flex;
            gap: 12px;
        }

        .btn-modal {
            flex: 1;
            padding: 14px 20px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-modal-cancel {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.7);
        }

        .btn-modal-cancel:hover {
            border-color: rgba(255,255,255,0.4);
            color: #fff;
        }

        .btn-modal-send {
            background: #00B1EB;
            border: none;
            color: #fff;
        }

        .btn-modal-send:hover {
            background: #0095c8;
        }

        .email-success {
            display: none;
            text-align: center;
            padding: 20px 0;
        }

        .email-success.active {
            display: block;
        }

        .email-success svg {
            width: 48px;
            height: 48px;
            color: #22c55e;
            margin-bottom: 16px;
        }

        .email-success h4 {
            color: #fff;
            font-size: 18px;
            margin-bottom: 8px;
        }

        .email-success p {
            color: rgba(255,255,255,0.6);
            margin-bottom: 0;
        }

        /* View Toggle */
        .view-toggle {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 32px;
        }

        .view-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .view-btn:hover {
            background: rgba(255,255,255,0.05);
            border-color: rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.8);
        }

        .view-btn.active {
            background: rgba(0,177,235,0.1);
            border-color: #00B1EB;
            color: #00B1EB;
        }

        .view-btn svg {
            width: 18px;
            height: 18px;
        }

        /* Comparison View */
        .comparison-view {
            display: none;
            max-width: 1000px;
            margin: 0 auto 48px;
        }

        .comparison-view.active {
            display: block;
        }

        .recommendations.hidden {
            display: none;
        }

        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            overflow: hidden;
        }

        .comparison-table thead tr {
            background: linear-gradient(135deg, rgba(0,177,235,0.15), rgba(0,177,235,0.05));
        }

        .comparison-table th {
            padding: 16px 12px;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            text-align: center;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .comparison-table th:first-child {
            text-align: left;
            width: 140px;
            color: rgba(255,255,255,0.6);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .comparison-table th .solution-rank {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            background: rgba(0,177,235,0.3);
            color: #fff;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            margin-right: 8px;
        }

        .comparison-table th.primary .solution-rank {
            background: #00B1EB;
        }

        .comparison-table th.primary {
            background: rgba(0,177,235,0.2);
        }

        .comparison-table th .best-badge {
            display: block;
            font-size: 9px;
            font-weight: 600;
            color: #00B1EB;
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        .comparison-table td {
            padding: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            vertical-align: middle;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table td:first-child {
            font-size: 12px;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
            background: rgba(0,0,0,0.1);
        }

        .comparison-table td:not(:first-child) {
            text-align: center;
            color: rgba(255,255,255,0.8);
            font-size: 14px;
        }

        .comparison-table td.primary-col {
            background: rgba(0,177,235,0.05);
        }

        .comparison-table .score-cell {
            font-size: 20px;
            font-weight: 700;
            color: #00B1EB;
        }

        .comparison-table .score-cell small {
            font-size: 11px;
            font-weight: 500;
            color: rgba(255,255,255,0.5);
            display: block;
            margin-top: 2px;
        }

        .comparison-table .check-icon {
            color: #22c55e;
        }

        .comparison-table .desc-cell {
            font-size: 13px;
            line-height: 1.5;
            color: rgba(255,255,255,0.7);
        }

        .comparison-table .reason-cell {
            font-size: 12px;
            color: #22c55e;
            line-height: 1.5;
        }

        .comparison-table .link-cell a {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: #00B1EB;
            text-decoration: none;
            font-weight: 500;
            font-size: 12px;
            padding: 6px 12px;
            background: rgba(0,177,235,0.1);
            border-radius: 6px;
            transition: all 0.3s;
        }

        .comparison-table .link-cell a:hover {
            background: rgba(0,177,235,0.2);
        }

        /* Feature rows with icons */
        .comparison-table .feature-icon {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* Tooltips */
        .tooltip-term {
            position: relative;
            border-bottom: 1px dotted rgba(0,177,235,0.5);
            cursor: help;
            color: inherit;
        }

        .tooltip-term::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #1a2530, #0a0f14);
            color: #fff;
            padding: 10px 14px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 400;
            line-height: 1.5;
            white-space: nowrap;
            max-width: 280px;
            white-space: normal;
            text-align: left;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
            z-index: 100;
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.1);
            pointer-events: none;
        }

        .tooltip-term::before {
            content: '';
            position: absolute;
            bottom: calc(100% + 2px);
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: #1a2530;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
            z-index: 101;
        }

        .tooltip-term:hover::after,
        .tooltip-term:hover::before {
            opacity: 1;
            visibility: visible;
        }

        /* Tooltip nach unten wenn oben kein Platz */
        .tooltip-term.tooltip-bottom::after {
            bottom: auto;
            top: calc(100% + 8px);
        }

        .tooltip-term.tooltip-bottom::before {
            bottom: auto;
            top: calc(100% + 2px);
            border-top-color: transparent;
            border-bottom-color: #1a2530;
        }

        /* Info Icon für Tooltips */
        .info-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 14px;
            height: 14px;
            background: rgba(0,177,235,0.2);
            border-radius: 50%;
            margin-left: 4px;
            vertical-align: middle;
            cursor: help;
            position: relative;
        }

        .info-icon svg {
            width: 10px;
            height: 10px;
            color: #00B1EB;
        }

        .info-icon::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #1a2530, #0a0f14);
            color: #fff;
            padding: 10px 14px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 400;
            line-height: 1.5;
            width: 220px;
            text-align: left;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
            z-index: 100;
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.1);
            pointer-events: none;
        }

        .info-icon::before {
            content: '';
            position: absolute;
            bottom: calc(100% + 2px);
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: #1a2530;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
            z-index: 101;
        }

        .info-icon:hover::after,
        .info-icon:hover::before {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .comparison-table {
                display: block;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            .comparison-table th,
            .comparison-table td {
                min-width: 140px;
                padding: 12px 10px;
            }

            .comparison-table th:first-child,
            .comparison-table td:first-child {
                position: sticky;
                left: 0;
                z-index: 1;
                background: #0a0f14;
            }

            .view-toggle {
                flex-direction: column;
            }

            .view-btn {
                justify-content: center;
            }
        }

        .results-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(34,197,94,0.1));
            color: #22c55e;
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 24px;
            border: 1px solid rgba(34,197,94,0.3);
            animation: badge-pop 0.5s ease 0.3s both;
        }

        @keyframes badge-pop {
            0% { transform: scale(0) rotate(-10deg); opacity: 0; }
            100% { transform: scale(1) rotate(0); opacity: 1; }
        }

        .results-title {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            animation: title-slide 0.6s ease 0.4s both;
        }

        @keyframes title-slide {
            0% { transform: translateY(20px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }

        .results-subtitle {
            color: rgba(255,255,255,0.6);
            font-size: 16px;
            animation: title-slide 0.6s ease 0.5s both;
        }

        /* Recommendation Cards */
        .recommendations {
            display: grid;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto 48px;
        }

        .rec-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 28px 32px;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 24px;
            align-items: center;
            transition: all 0.4s;
            opacity: 0;
            transform: translateX(-30px);
        }

        .rec-card.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .rec-card:hover {
            transform: translateY(-4px) scale(1.01);
            border-color: rgba(0,177,235,0.3);
            box-shadow: 0 12px 40px rgba(0,0,0,0.2);
        }

        .rec-card.primary {
            border-color: #00B1EB;
            background: linear-gradient(135deg, rgba(0,177,235,0.1), rgba(0,177,235,0.02));
            box-shadow: 0 8px 30px rgba(0,177,235,0.15);
            position: relative;
        }

        .rec-card.primary::before {
            content: 'BESTE ÜBEREINSTIMMUNG';
            position: absolute;
            top: -12px;
            left: 32px;
            background: linear-gradient(135deg, #00B1EB, #0095c8);
            color: #fff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .rec-card.primary {
            margin-top: 12px;
        }

        .rec-rank {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.05);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 700;
            color: rgba(255,255,255,0.4);
            transition: all 0.4s;
        }

        .rec-card:hover .rec-rank {
            transform: rotate(5deg) scale(1.1);
        }

        .rec-card.primary .rec-rank {
            background: linear-gradient(135deg, #00B1EB, #0095c8);
            color: #fff;
            box-shadow: 0 4px 20px rgba(0,177,235,0.4);
        }

        .rec-content h3 {
            font-size: 20px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 6px;
            transition: color 0.3s;
        }

        .rec-card:hover .rec-content h3 {
            color: #00B1EB;
        }

        .rec-content p {
            font-size: 14px;
            color: rgba(255,255,255,0.55);
            margin-bottom: 14px;
        }

        .rec-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #00B1EB;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 20px;
            background: rgba(0,177,235,0.1);
            border-radius: 10px;
            transition: all 0.3s;
        }

        .rec-link:hover {
            background: rgba(0,177,235,0.2);
            gap: 12px;
        }

        .rec-match {
            text-align: center;
            min-width: 80px;
        }

        .match-value {
            font-size: 32px;
            font-weight: 700;
            color: #00B1EB;
            line-height: 1;
        }

        .match-label {
            font-size: 11px;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 4px;
        }

        /* CTA Box */
        .cta-box {
            background: linear-gradient(135deg, rgba(0,177,235,0.12), rgba(0,177,235,0.04));
            border: 1px solid rgba(0,177,235,0.25);
            border-radius: 24px;
            padding: 44px;
            text-align: center;
            max-width: 650px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 1s;
        }

        .cta-box.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0,177,235,0.1) 0%, transparent 60%);
            animation: rotate-bg 20s linear infinite;
        }

        @keyframes rotate-bg {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .cta-box h3 {
            font-size: 24px;
            color: #fff;
            margin-bottom: 12px;
            position: relative;
        }

        .cta-box p {
            color: rgba(255,255,255,0.6);
            margin-bottom: 28px;
            position: relative;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            position: relative;
        }

        .btn-cta {
            padding: 16px 32px;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .btn-cta-primary {
            background: linear-gradient(135deg, #00B1EB, #0095c8);
            color: #fff;
            box-shadow: 0 4px 20px rgba(0,177,235,0.4);
        }

        .btn-cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0,177,235,0.5);
        }

        .btn-cta-secondary {
            background: rgba(255,255,255,0.05);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .btn-cta-secondary:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }

        .restart-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 36px;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 14px;
            padding: 12px 24px;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .restart-link:hover {
            color: #00B1EB;
            background: rgba(0,177,235,0.05);
        }

        .restart-link svg {
            transition: transform 0.4s;
        }

        .restart-link:hover svg {
            transform: rotate(-360deg);
        }

        /* Hidden */
        .hidden { display: none !important; }

        /* Sound Toggle */
        .sound-toggle {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            color: rgba(255,255,255,0.5);
            z-index: 100;
        }

        .sound-toggle:hover {
            background: rgba(0,177,235,0.1);
            border-color: rgba(0,177,235,0.3);
            color: #00B1EB;
        }

        .sound-toggle.active {
            background: rgba(0,177,235,0.15);
            border-color: #00B1EB;
            color: #00B1EB;
        }

        .sound-toggle svg {
            width: 24px;
            height: 24px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .stations {
                flex-wrap: wrap;
                justify-content: center;
                gap: 24px;
                padding: 30px 20px;
                min-height: auto;
            }
            .station {
                margin-top: 0 !important;
            }
            .station-marker {
                width: 70px;
                height: 70px;
            }
            .station-marker svg {
                width: 28px;
                height: 28px;
            }
            .map-path { display: none; }
            .traveler { display: none; }
        }

        @media (max-width: 768px) {
            .wegweiser-header h1 { font-size: 32px; }
            .station-marker { width: 60px; height: 60px; }
            .station-marker svg { width: 24px; height: 24px; }
            .station-marker .station-number { width: 26px; height: 26px; font-size: 11px; }
            .question-panel { padding: 32px 24px; }
            .question-title { font-size: 22px; }
            .answers { grid-template-columns: 1fr; }
            .question-nav { flex-direction: column-reverse; }
            .btn-nav { width: 100%; justify-content: center; }
            .rec-card { grid-template-columns: 1fr; text-align: center; padding: 24px; }
            .rec-rank { margin: 0 auto; }
            .rec-card.primary::before { left: 50%; transform: translateX(-50%); }
            .cta-buttons { flex-direction: column; }
            .btn-cta { width: 100%; justify-content: center; }
            .sound-toggle { bottom: 16px; right: 16px; width: 44px; height: 44px; }
        }

        @media (max-width: 768px) {
            .summary-items {
                grid-template-columns: 1fr;
            }

            .export-buttons {
                flex-direction: column;
            }

            .email-modal-content {
                margin: 20px;
            }
        }

        @media (max-width: 480px) {
            .wegweiser-header h1 { font-size: 26px; }
            .start-title { font-size: 28px; }
            .results-title { font-size: 26px; }
            .results-celebration { font-size: 48px; }
        }
