        @import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

        /* CSS Variables */

        :root {
            --bg-color: #f5f1e8;
            --text-color: #2c2c2c;
            --accent-red: #c53030;
            --font-handwritten: 'Caveat', cursive;
            --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Yellow Marker Highlight */
        .highlight-marker {
            background: linear-gradient(180deg, transparent 50%, #FFE566 50%);
            padding: 0 0.2em;
        }

        /* Global Styles with Smooth Transitions */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            font-size: 18px;
            height: 100%;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            height: 100%;
            margin: 0;
        }

        .reveal {
            background-color: var(--bg-color);
            font-family: var(--font-handwritten);
        }

        .reveal .slides {
            text-align: left;
            width: 100% !important;
            height: 100% !important;
            transform: none !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
        }

        /* Disable Reveal.js viewport scaling */
        .reveal .slide-background {
            transform: none !important;
        }

        .reveal .slides section {
            min-height: 100vh;
            min-height: 100dvh;
            height: auto;
            max-height: none;
        }

        /* Handwritten Style */
        .handwritten {
            font-family: 'Caveat', cursive;
        }

        /* Slide Title (replaces h2) */
        .slide-title {
            font-family: var(--font-handwritten);
            font-weight: 700;
            color: var(--accent-red);
            margin: 0;
            padding-bottom: 0.7rem;
        }

        /* Slide Subtitle (replaces h3/h4) */
        .slide-subtitle {
            font-family: var(--font-handwritten);
            font-weight: 600;
            margin: 0;
        }

        /* Journey Phase Text - uniform readable size */
        .journey-phase-text {
            font-size: clamp(1.45rem, 1.85vw, 2.1rem);
            color: #666;
            font-style: italic;
            line-height: 1.3;
        }

        /* Title Slide Layout - Centered Professional Design */
        .title-slide {
            min-height: 100vh;
            min-height: 100svh;
            height: 100vh;
            height: 100svh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: clamp(32px, 5vh, 80px) clamp(24px, 8vw, 120px);
            gap: clamp(24px, 4vh, 64px);
            box-sizing: border-box;
            overflow-y: auto;
            text-align: center;
        }

        /* Central Title Content */
        .title-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(16px, 2.5vh, 40px);
        }

        .main-title {
            font-size: clamp(3rem, 6vw, 8rem);
            font-weight: 700;
            color: var(--accent-red);
            margin: 0;
            text-align: center;
            line-height: 1.3;
            letter-spacing: -0.02em;
        }

        .title-slide .subtitle {
            font-size: clamp(2rem, 3.5vw, 5rem);
            color: var(--text-color);
            margin: 0;
            opacity: 0.7;
            font-weight: 400;
            letter-spacing: 0.05em;
        }

        /* Meta Information Section */
        .title-meta {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(12px, 1.5vh, 24px);
            margin-top: clamp(16px, 3vh, 48px);
        }

        .meta-divider {
            width: clamp(60px, 8vw, 120px);
            height: 2px;
            background: var(--accent-red);
            opacity: 0.5;
        }

        .author-name {
            font-size: clamp(2.2rem, 4vw, 5.5rem);
            font-weight: 600;
            color: var(--text-color);
        }

        .meta-details {
            font-size: clamp(1.6rem, 2.5vw, 3.2rem);
            color: var(--text-color);
            opacity: 0.6;
            display: flex;
            align-items: center;
            gap: clamp(12px, 1.5vw, 24px);
            flex-wrap: wrap;
            justify-content: center;
        }

        .meta-separator {
            opacity: 0.4;
        }

        /* Reveal.js Controls Styling */
        .reveal .controls {
            color: var(--accent-red);
        }

        .reveal .progress {
            color: var(--accent-red);
            height: 4px;
        }

        /* Elegant Slide Counter */
        .slide-counter {
            position: fixed;
            bottom: 2.5vh;
            left: 3vw;
            font-family: var(--font-ui);
            font-size: clamp(0.85rem, 1vw, 1.1rem);
            font-weight: 500;
            color: var(--text-color);
            opacity: 0.5;
            z-index: 100;
            letter-spacing: 0.05em;
            transition: opacity 0.3s var(--transition-smooth);
        }

        .slide-counter:hover {
            opacity: 0.8;
        }

        .slide-counter .current {
            color: var(--accent-red);
            font-weight: 600;
        }

        /* Hide slide counter in fullscreen for cleaner look */
        .reveal.fullscreen .slide-counter {
            opacity: 0.3;
        }

        /* Fullscreen Button - Viewport Units */
        .fullscreen-btn {
            position: fixed;
            bottom: 3vh;
            right: 3vw;
            width: clamp(40px, 3vw, 60px);
            height: clamp(40px, 3vw, 60px);
            background: var(--text-color);
            border: none;
            border-radius: 0.5vw;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 0.4vh 1.5vh rgba(0, 0, 0, 0.2);
        }

        .fullscreen-btn:hover {
            background: var(--accent-red);
            transform: scale(1.1);
            box-shadow: 0 0.6vh 2vh rgba(0, 0, 0, 0.3);
        }

        .fullscreen-btn svg {
            width: clamp(20px, 1.5vw, 30px);
            height: clamp(20px, 1.5vw, 30px);
            fill: white;
        }

        /* Tooltip */
        .fullscreen-btn::before {
            content: 'Vollbild (F)';
            position: absolute;
            bottom: calc(100% + 1vh);
            right: 0;
            background: var(--text-color);
            color: white;
            padding: 0.8vh 1.2vw;
            border-radius: 0.3vw;
            font-family: 'Segoe UI', sans-serif;
            font-size: clamp(0.7rem, 0.9vw, 1.2rem);
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .fullscreen-btn:hover::before {
            opacity: 1;
        }

        /* Hide button in fullscreen */
        .reveal.fullscreen .fullscreen-btn {
            opacity: 0;
            pointer-events: none;
        }

        /* ============================================
           GLOBAL: Handwritten Font Override
           Forces ALL text on slide to use handwritten font
           ============================================ */
        .slide-handwritten-all,
        .slide-handwritten-all * {
            font-family: var(--font-handwritten) !important;
        }

        /* Preserve specific font weights and ensure readability */
        .slide-handwritten-all {
            line-height: 1.4;
        }

        .slide-handwritten-all strong,
        .slide-handwritten-all b {
            font-weight: 700;
        }

        /* Ensure badges/pills remain readable */
        .slide-handwritten-all [style*="border-radius: 12px"],
        .slide-handwritten-all [style*="border-radius: 16px"] {
            letter-spacing: 0.02em;
        }

        /* ============================================
           REUSABLE: Image Focus/Zoom Component
           Usage: Add .zoomable-image to any image container
           ============================================ */
        .zoomable-image {
            cursor: zoom-in;
            transition: transform 0.3s var(--transition-smooth),
                        box-shadow 0.3s var(--transition-smooth);
        }

        .zoomable-image:hover {
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
        }

        /* Overlay backdrop when image is focused */
        .image-focus-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            z-index: 9998;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s var(--transition-smooth);
        }

        .image-focus-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        /* Focused state for image */
        .zoomable-image.focused {
            position: fixed !important;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) scale(1) !important;
            width: auto !important;
            height: auto !important;
            max-width: 90vw !important;
            max-height: 85vh !important;
            z-index: 9999 !important;
            cursor: zoom-out;
            border-radius: 16px;
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
        }

        .zoomable-image.focused img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* ============================================
           Stefan Slide - Marketing Measure 2
           Robust 3-column layout with proper containment
           ============================================ */
        .stefan-measure-slide {
            /* PROJECTOR-OPTIMIZED: Headings normal, body text doubled */
            --sm-title: clamp(2rem, 3.2vw, 2.8rem);
            --sm-subtitle: clamp(1.2rem, 1.6vw, 1.6rem);
            --sm-heading: clamp(1.4rem, 1.8vw, 2rem);
            --sm-body: clamp(1.15rem, 1.5vw, 1.5rem);
            --sm-small: clamp(1.1rem, 1.4vw, 1.4rem);

            height: 100vh;
            height: 100svh;
            display: flex;
            flex-direction: column;
            padding: clamp(20px, 3vh, 36px) clamp(28px, 4vw, 64px);
            padding-bottom: clamp(50px, 6vh, 72px);
            box-sizing: border-box;
            overflow: hidden;
        }

        .stefan-measure-slide .slide-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: clamp(16px, 2.2vh, 28px);
            gap: clamp(20px, 2.5vw, 40px);
            flex-shrink: 0;
        }

        .stefan-measure-slide .slide-title {
            font-size: var(--sm-title);
            line-height: 1.1;
            margin-bottom: clamp(6px, 0.8vh, 12px);
            font-weight: 700;
        }

        .stefan-measure-slide .slide-subtitle {
            font-size: var(--sm-subtitle);
            color: #444;
            font-style: italic;
            margin: 0;
        }

        .stefan-measure-slide .persona-badge {
            display: flex;
            align-items: center;
            gap: clamp(10px, 1.2vw, 16px);
            background: rgba(74, 144, 226, 0.12);
            border: 3px solid #4A90E2;
            border-radius: 14px;
            padding: clamp(10px, 1.4vh, 16px) clamp(14px, 1.8vw, 24px);
            flex-shrink: 0;
        }

        .stefan-measure-slide .persona-avatar {
            width: clamp(44px, 5vw, 64px);
            height: clamp(44px, 5vw, 64px);
            border-radius: 50%;
            background: url('../Stefan_normal.jpg') center/cover;
            border: 3px solid #4A90E2;
        }

        .stefan-measure-slide .persona-name {
            font-size: var(--sm-body);
            font-weight: 700;
            color: #357ABD;
        }

        .stefan-measure-slide .persona-role {
            font-size: var(--sm-small);
            color: #444;
        }

        /* 3-Column Grid Layout - More space for center */
        .stefan-measure-slide .content-grid {
            flex: 1;
            display: grid;
            grid-template-columns: minmax(180px, 0.9fr) minmax(320px, 2fr) minmax(180px, 0.9fr);
            gap: clamp(20px, 2.5vw, 36px);
            min-height: 0;
            overflow: hidden;
        }

        .stefan-measure-slide .column {
            display: flex;
            flex-direction: column;
            gap: clamp(14px, 1.8vh, 22px);
            min-height: 0;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .stefan-measure-slide .column::-webkit-scrollbar {
            width: 6px;
        }

        .stefan-measure-slide .column::-webkit-scrollbar-thumb {
            background: rgba(74, 144, 226, 0.4);
            border-radius: 4px;
        }

        /* Info boxes - larger padding */
        .stefan-measure-slide .info-box {
            background: rgba(74, 144, 226, 0.1);
            border: 3px solid #4A90E2;
            border-radius: 12px;
            padding: clamp(16px, 2vh, 24px) clamp(14px, 1.6vw, 22px);
            flex-shrink: 0;
        }

        .stefan-measure-slide .info-box.green {
            background: rgba(95, 182, 17, 0.12);
            border-color: #5FB611;
        }

        .stefan-measure-slide .info-box.purple {
            background: rgba(155, 89, 182, 0.1);
            border-color: #9B59B6;
        }

        .stefan-measure-slide .info-box.light-blue {
            background: rgba(91, 155, 213, 0.1);
            border-color: #5B9BD5;
        }

        .stefan-measure-slide .info-box.impact-box {
            background: rgba(255, 193, 7, 0.15);
            border-color: #FFC107;
            margin-top: clamp(8px, 1vh, 12px);
        }

        .stefan-measure-slide .info-box.impact-box .box-title {
            color: #F59E0B;
        }

        .stefan-measure-slide .box-title {
            font-size: var(--sm-heading);
            font-weight: 700;
            color: #357ABD;
            margin-bottom: clamp(10px, 1.2vh, 16px);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .stefan-measure-slide .box-title.green { color: #4A9D0F; }
        .stefan-measure-slide .box-title.purple { color: #7D3C98; }

        .stefan-measure-slide .box-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: clamp(8px, 1vh, 14px);
        }

        .stefan-measure-slide .box-list li {
            font-size: var(--sm-body);
            padding-left: 20px;
            position: relative;
            color: #222;
            line-height: 1.4;
            font-weight: 500;
        }

        .stefan-measure-slide .box-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #4A90E2;
            font-weight: bold;
            font-size: 1.2em;
        }

        .stefan-measure-slide .box-text {
            font-size: var(--sm-body);
            color: #222;
            line-height: 1.5;
        }

        /* Phase tags */
        .stefan-measure-slide .phase-tag {
            display: inline-block;
            background: #5FB611;
            color: white;
            padding: 6px 14px;
            border-radius: 12px;
            font-size: var(--sm-small);
            font-weight: 600;
        }

        .stefan-measure-slide .phase-tag.dark {
            background: #388E3C;
        }

        .stefan-measure-slide .phase-arrow {
            color: #666;
            font-size: var(--sm-body);
            margin: 0 8px;
        }

        /* Middle column - Image area (focal point) */
        .stefan-measure-slide .image-column {
            display: flex;
            flex-direction: column;
            min-height: 0;
        }

        .stefan-measure-slide .image-title {
            font-size: var(--sm-heading);
            font-weight: 700;
            color: #357ABD;
            text-align: center;
            margin-bottom: clamp(12px, 1.4vh, 18px);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .stefan-measure-slide .image-container {
            flex: 1;
            min-height: 0;
            max-height: 100%;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
            border: 4px solid #4A90E2;
            margin: 0;
        }

        .stefan-measure-slide .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .stefan-measure-slide .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(26, 35, 50, 0.95));
            padding: clamp(36px, 5vh, 60px) clamp(16px, 2vw, 28px) clamp(16px, 2vh, 24px);
        }

        .stefan-measure-slide .image-overlay-title {
            font-size: var(--sm-body);
            font-weight: 700;
            color: white;
            text-align: center;
            margin-bottom: clamp(10px, 1.2vh, 16px);
        }

        .stefan-measure-slide .image-badges {
            display: flex;
            justify-content: center;
            gap: clamp(12px, 1.5vw, 20px);
            flex-wrap: wrap;
        }

        .stefan-measure-slide .image-badge {
            background: rgba(255, 255, 255, 0.25);
            color: white;
            padding: 8px 16px;
            border-radius: 16px;
            font-size: var(--sm-small);
            font-weight: 600;
            backdrop-filter: blur(4px);
        }

        /* Right column labels */
        .stefan-measure-slide .spec-label {
            font-size: var(--sm-body);
            font-weight: 700;
            color: #333;
            margin-bottom: clamp(6px, 0.7vh, 10px);
        }

        .stefan-measure-slide .spec-value {
            font-size: var(--sm-body);
            color: #222;
            line-height: 1.5;
        }

        .stefan-measure-slide .spec-secondary {
            color: #555;
            font-size: var(--sm-small);
        }

        /* Gamification tags */
        .stefan-measure-slide .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: clamp(8px, 1vh, 12px);
        }

        .stefan-measure-slide .tag {
            background: rgba(155, 89, 182, 0.2);
            color: #5a2175;
            padding: 6px 14px;
            border-radius: 12px;
            font-size: var(--sm-small);
            font-weight: 600;
        }

        /* Impact Footer - prominent */
        .stefan-measure-slide .impact-footer {
            margin-top: clamp(14px, 1.8vh, 22px);
            padding: clamp(14px, 1.8vh, 22px) clamp(20px, 2.2vw, 32px);
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.12), rgba(53, 122, 189, 0.18));
            border: 3px solid #4A90E2;
            border-radius: 12px;
            flex-shrink: 0;
        }

        .stefan-measure-slide .impact-title {
            font-size: var(--sm-heading);
            color: #357ABD;
            font-weight: 700;
            margin-bottom: clamp(10px, 1.2vh, 16px);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .stefan-measure-slide .impact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: clamp(10px, 1.2vh, 16px) clamp(16px, 2vw, 28px);
            font-size: var(--sm-body);
            color: #111;
            font-weight: 500;
        }

        /* ============================================
           Hans-Peter Slide - Marketing Measure 2
           PROJECTOR-OPTIMIZED: Large fonts for readability
           ============================================ */
        .hanspeter-measure-slide {
            /* PROJECTOR-OPTIMIZED: Headings normal, body text doubled */
            --hp-title: clamp(2rem, 3.2vw, 2.8rem);
            --hp-subtitle: clamp(1.2rem, 1.6vw, 1.6rem);
            --hp-heading: clamp(1.4rem, 1.8vw, 2rem);
            --hp-body: clamp(1.15rem, 1.5vw, 1.5rem);
            --hp-small: clamp(1.1rem, 1.4vw, 1.4rem);

            height: 100vh;
            height: 100svh;
            display: flex;
            flex-direction: column;
            padding: clamp(20px, 3vh, 36px) clamp(28px, 4vw, 64px);
            padding-bottom: clamp(50px, 6vh, 72px);
            box-sizing: border-box;
            overflow: hidden;
        }

        .hanspeter-measure-slide .slide-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: clamp(16px, 2.2vh, 28px);
            gap: clamp(20px, 2.5vw, 40px);
            flex-shrink: 0;
        }

        .hanspeter-measure-slide .slide-title {
            font-size: var(--hp-title);
            line-height: 1.1;
            margin-bottom: clamp(6px, 0.8vh, 12px);
            font-weight: 700;
        }

        .hanspeter-measure-slide .slide-subtitle {
            font-size: var(--hp-subtitle);
            color: #444;
            font-style: italic;
            margin: 0;
        }

        .hanspeter-measure-slide .persona-badge {
            display: flex;
            align-items: center;
            gap: clamp(10px, 1.2vw, 16px);
            background: rgba(226, 74, 74, 0.12);
            border: 3px solid #E24A4A;
            border-radius: 14px;
            padding: clamp(10px, 1.4vh, 16px) clamp(14px, 1.8vw, 24px);
            flex-shrink: 0;
        }

        .hanspeter-measure-slide .persona-avatar {
            width: clamp(44px, 5vw, 64px);
            height: clamp(44px, 5vw, 64px);
            border-radius: 50%;
            background: url('../Hans-Peter_normal.jpg') center/cover;
            border: 3px solid #E24A4A;
        }

        .hanspeter-measure-slide .persona-name {
            font-size: var(--hp-body);
            font-weight: 700;
            color: #C41E3A;
        }

        .hanspeter-measure-slide .persona-role {
            font-size: var(--hp-small);
            color: #444;
        }

        /* 3-Column Grid Layout - More space for center */
        .hanspeter-measure-slide .content-grid {
            flex: 1;
            display: grid;
            grid-template-columns: minmax(180px, 0.9fr) minmax(320px, 2fr) minmax(180px, 0.9fr);
            gap: clamp(20px, 2.5vw, 36px);
            min-height: 0;
            overflow: hidden;
        }

        .hanspeter-measure-slide .column {
            display: flex;
            flex-direction: column;
            gap: clamp(14px, 1.8vh, 22px);
            min-height: 0;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .hanspeter-measure-slide .column::-webkit-scrollbar {
            width: 6px;
        }

        .hanspeter-measure-slide .column::-webkit-scrollbar-thumb {
            background: rgba(226, 74, 74, 0.4);
            border-radius: 4px;
        }

        /* Info boxes - larger padding */
        .hanspeter-measure-slide .info-box {
            background: rgba(226, 74, 74, 0.1);
            border: 3px solid #E24A4A;
            border-radius: 12px;
            padding: clamp(16px, 2vh, 24px) clamp(14px, 1.6vw, 22px);
            flex-shrink: 0;
        }

        .hanspeter-measure-slide .info-box.orange {
            background: rgba(232, 155, 91, 0.12);
            border-color: #E89B5B;
        }

        .hanspeter-measure-slide .info-box.green {
            background: rgba(76, 175, 80, 0.1);
            border-color: #4CAF50;
        }

        .hanspeter-measure-slide .info-box.light-blue {
            background: rgba(91, 155, 213, 0.1);
            border-color: #5B9BD5;
        }

        .hanspeter-measure-slide .info-box.impact-box {
            background: rgba(255, 193, 7, 0.15);
            border-color: #FFC107;
            margin-top: clamp(8px, 1vh, 12px);
        }

        .hanspeter-measure-slide .info-box.impact-box .box-title {
            color: #F59E0B;
        }

        .hanspeter-measure-slide .box-title {
            font-size: var(--hp-heading);
            font-weight: 700;
            color: #C41E3A;
            margin-bottom: clamp(10px, 1.2vh, 16px);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hanspeter-measure-slide .box-title.orange { color: #D67B3B; }
        .hanspeter-measure-slide .box-title.green { color: #388E3C; }

        .hanspeter-measure-slide .box-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: clamp(8px, 1vh, 14px);
        }

        .hanspeter-measure-slide .box-list li {
            font-size: var(--hp-body);
            padding-left: 20px;
            position: relative;
            color: #222;
            line-height: 1.4;
            font-weight: 500;
        }

        .hanspeter-measure-slide .box-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #E24A4A;
            font-weight: bold;
            font-size: 1.2em;
        }

        .hanspeter-measure-slide .box-text {
            font-size: var(--hp-body);
            color: #222;
            line-height: 1.5;
        }

        /* Phase tags */
        .hanspeter-measure-slide .phase-tag {
            display: inline-block;
            background: #E89B5B;
            color: white;
            padding: 6px 14px;
            border-radius: 12px;
            font-size: var(--hp-small);
            font-weight: 600;
        }

        .hanspeter-measure-slide .phase-tag.green {
            background: #5FB611;
        }

        .hanspeter-measure-slide .phase-arrow {
            color: #666;
            font-size: var(--hp-body);
            margin: 0 8px;
        }

        /* Middle column - Dashboard area (focal point) */
        .hanspeter-measure-slide .dashboard-column {
            display: flex;
            flex-direction: column;
            min-height: 0;
        }

        .hanspeter-measure-slide .dashboard-title {
            font-size: var(--hp-heading);
            font-weight: 700;
            color: #357ABD;
            text-align: center;
            margin-bottom: clamp(12px, 1.4vh, 18px);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .hanspeter-measure-slide .dashboard-container {
            flex: 1;
            min-height: 0;
            background: linear-gradient(145deg, #1a2332, #243447);
            border-radius: 16px;
            padding: clamp(16px, 2vh, 26px) clamp(18px, 2vw, 30px);
            display: flex;
            flex-direction: column;
            gap: clamp(14px, 1.8vh, 22px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            margin: 0;
            overflow: hidden;
        }

        .hanspeter-measure-slide .dashboard-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: clamp(10px, 1.2vh, 16px);
            border-bottom: 2px solid rgba(255, 255, 255, 0.15);
            flex-shrink: 0;
        }

        .hanspeter-measure-slide .dashboard-header-title {
            font-size: var(--hp-heading);
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.05em;
        }

        .hanspeter-measure-slide .dashboard-header-meta {
            font-size: var(--hp-small);
            color: rgba(255, 255, 255, 0.8);
        }

        .hanspeter-measure-slide .dashboard-section {
            background: rgba(255, 255, 255, 0.06);
            border-radius: 10px;
            padding: clamp(12px, 1.5vh, 18px) clamp(14px, 1.6vw, 20px);
            flex-shrink: 0;
        }

        .hanspeter-measure-slide .dashboard-section-title {
            font-size: var(--hp-small);
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
            margin-bottom: clamp(8px, 1vh, 14px);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .hanspeter-measure-slide .module-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: clamp(8px, 1vh, 12px);
        }

        .hanspeter-measure-slide .module-row:last-child {
            margin-bottom: 0;
        }

        .hanspeter-measure-slide .module-name {
            color: #fff;
            font-size: var(--hp-body);
            font-weight: 500;
        }

        .hanspeter-measure-slide .module-status {
            padding: 5px 14px;
            border-radius: 10px;
            font-size: var(--hp-small);
            font-weight: 700;
        }

        .hanspeter-measure-slide .module-status.success {
            background: #4CAF50;
            color: white;
        }

        .hanspeter-measure-slide .module-status.warning {
            background: #FFB300;
            color: #1a2332;
        }

        .hanspeter-measure-slide .module-status.danger {
            background: #E24A4A;
            color: white;
        }

        .hanspeter-measure-slide .health-grid {
            display: flex;
            gap: clamp(16px, 2vw, 28px);
        }

        .hanspeter-measure-slide .health-item {
            flex: 1;
        }

        .hanspeter-measure-slide .health-label {
            font-size: var(--hp-small);
            color: rgba(255, 255, 255, 0.75);
        }

        .hanspeter-measure-slide .health-value {
            font-size: var(--hp-heading);
            font-weight: 700;
        }

        .hanspeter-measure-slide .health-value.success { color: #5CDB5C; }
        .hanspeter-measure-slide .health-value.warning { color: #FFD54F; }

        .hanspeter-measure-slide .health-sub {
            font-size: var(--hp-small);
            color: rgba(255, 255, 255, 0.65);
        }

        .hanspeter-measure-slide .blocker-section {
            background: rgba(226, 74, 74, 0.18);
            border: 2px solid rgba(226, 74, 74, 0.5);
            border-radius: 10px;
            padding: clamp(12px, 1.5vh, 18px) clamp(14px, 1.6vw, 20px);
            flex-shrink: 0;
        }

        .hanspeter-measure-slide .blocker-title {
            font-size: var(--hp-small);
            color: #FF6B6B;
            font-weight: 700;
            margin-bottom: clamp(6px, 0.7vh, 10px);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .hanspeter-measure-slide .blocker-text {
            font-size: var(--hp-body);
            color: #fff;
            font-weight: 500;
        }

        .hanspeter-measure-slide .blocker-meta {
            font-size: var(--hp-small);
            color: rgba(255, 255, 255, 0.7);
        }

        /* Right column labels */
        .hanspeter-measure-slide .spec-label {
            font-size: var(--hp-body);
            font-weight: 700;
            color: #333;
            margin-bottom: clamp(6px, 0.7vh, 10px);
        }

        .hanspeter-measure-slide .spec-value {
            font-size: var(--hp-body);
            color: #222;
            line-height: 1.5;
        }

        .hanspeter-measure-slide .spec-secondary {
            color: #555;
            font-size: var(--hp-small);
        }

        .hanspeter-measure-slide .spec-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: clamp(6px, 0.8vh, 10px);
        }

        .hanspeter-measure-slide .spec-list li {
            font-size: var(--hp-body);
            padding-left: 18px;
            position: relative;
            color: #222;
            font-weight: 500;
        }

        .hanspeter-measure-slide .spec-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #5B9BD5;
            font-weight: bold;
            font-size: 1.2em;
        }

        /* Feature tags */
        .hanspeter-measure-slide .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: clamp(8px, 1vh, 12px);
        }

        .hanspeter-measure-slide .tag {
            background: rgba(91, 155, 213, 0.2);
            color: #1e5a9e;
            padding: 6px 14px;
            border-radius: 12px;
            font-size: var(--hp-small);
            font-weight: 600;
        }

        /* Impact Footer - prominent */
        .hanspeter-measure-slide .impact-footer {
            margin-top: clamp(14px, 1.8vh, 22px);
            padding: clamp(14px, 1.8vh, 22px) clamp(20px, 2.2vw, 32px);
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.12), rgba(56, 142, 60, 0.18));
            border: 3px solid #4CAF50;
            border-radius: 12px;
            flex-shrink: 0;
        }

        .hanspeter-measure-slide .impact-title {
            font-size: var(--hp-heading);
            color: #388E3C;
            font-weight: 700;
            margin-bottom: clamp(10px, 1.2vh, 16px);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hanspeter-measure-slide .impact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: clamp(10px, 1.2vh, 16px) clamp(16px, 2vw, 28px);
            font-size: var(--hp-body);
            color: #111;
            font-weight: 500;
        }

        /* Slide 2 - Project Information Table - Optimized for Fullscreen */
        .project-info-slide {
            min-height: 100vh;
            min-height: 100svh;
            height: 100vh;
            height: 100svh;
            display: grid;
            grid-template-rows: auto 1fr;
            padding: clamp(20px, 5vh, 60px) clamp(24px, 6vw, 80px);
            box-sizing: border-box;
        }

        .project-info-slide .slide-title {
            font-size: clamp(3rem, 5vw, 7rem);
            color: var(--accent-red);
            margin-bottom: clamp(20px, 4vh, 48px);
            text-align: center;
        }

        /* Table Container with Overflow Control */
        .table-container {
            overflow-y: auto;
            overflow-x: hidden;
            min-height: 0;
            flex: 1;
        }

        /* Scrollbar Styling */
        .table-container::-webkit-scrollbar {
            width: 0.5vw;
        }

        .table-container::-webkit-scrollbar-track {
            background: rgba(44, 44, 44, 0.05);
            border-radius: 0.5vw;
        }

        .table-container::-webkit-scrollbar-thumb {
            background: var(--accent-red);
            border-radius: 0.5vw;
        }

        .info-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 2vh;
            font-size: clamp(1.5rem, 2.2vw, 3.2rem);
        }

        .info-table tr {
            background: rgba(44, 44, 44, 0.03);
            transition: all 0.3s ease;
        }

        .info-table tr:hover {
            background: rgba(197, 48, 48, 0.08);
            transform: translateX(0.8vw);
        }

        .info-table td {
            padding: 2vh 2vw;
            line-height: 1.5;
            vertical-align: top;
        }

        .info-table td:first-child {
            font-weight: 600;
            color: var(--accent-red);
            width: 30%;
            border-left: 0.3vw solid var(--accent-red);
        }

        .info-table td:last-child {
            color: var(--text-color);
            width: 70%;
        }

        /* Media Queries for Different Screen Sizes */
        @media screen and (max-width: 1024px) {
            .title-slide {
                padding: 2vh 4vw;
            }

            .project-info-slide {
                padding: 4vh 5vw;
            }

            .info-table {
                font-size: clamp(1.2rem, 2.1vw, 2.4rem);
            }
        }

        @media screen and (max-width: 768px) {
            .course-info {
                font-size: clamp(2rem, 4vw, 4rem);
            }

            .info-table td:first-child {
                width: 35%;
            }

            .info-table td:last-child {
                width: 65%;
            }
        }

        @media screen and (min-width: 1920px) {
            .info-table {
                font-size: clamp(1.5rem, 1.5vw, 3rem);
            }

            .project-info-slide .slide-title {
                margin-bottom: 5vh;
            }
        }

        /* Allow content to be visible - scroll handled by content containers */
        .reveal .slides > section {
            overflow: visible;
        }

        /* Slide 3 - Stakeholder Matrix - Restructured Layout */
        .stakeholder-slide {
            min-height: 100vh;
            min-height: 100svh;
            height: 100vh;
            height: 100svh;
            display: grid;
            grid-template-rows: auto auto auto;
            padding: clamp(16px, 3vh, 48px) clamp(16px, 3vw, 60px);
            box-sizing: border-box;
            align-content: start;
            gap: 1vh;
        }

        .stakeholder-slide .slide-title {
            font-size: clamp(2.5rem, 4vw, 5.5rem);
            color: var(--accent-red);
            margin-bottom: clamp(12px, 2vh, 32px);
            text-align: center;
        }

        /* Main Content: Matrix + Legend side by side */
        .matrix-content-wrapper {
            display: grid;
            grid-template-columns: 60% 35%;
            gap: clamp(16px, 3vw, 48px);
            overflow: auto;
            min-height: 0;
            align-items: start;
        }

        /* Left Side: Matrix with Axes */
        .matrix-wrapper {
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
        }

        /* Y-Axis Container - Outside left of matrix */
        .y-axis-container {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4vw;
            height: 80%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .y-axis-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: clamp(1.1rem, 1.4vw, 1.9rem);
            font-weight: 600;
            color: var(--text-color);
            text-align: center;
            white-space: nowrap;
        }

        /* Matrix Grid - Positioned with left margin for Y-axis */
        .matrix-grid-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            margin-left: 5vw;
        }

        /* X-Axis Label - Below matrix */
        .x-axis-container {
            width: 100%;
            text-align: center;
            padding-top: 1.5vh;
        }

        .x-axis-label {
            font-size: clamp(1.1rem, 1.4vw, 1.9rem);
            font-weight: 600;
            color: var(--text-color);
        }

        /* Matrix Grid */
        .matrix-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 0;
            width: 100%;
            aspect-ratio: 1;
            max-height: 50vh;
        }

        /* Quadrants - Optimized Padding and Borders */
        .quadrant {
            border: clamp(1px, 0.15vw, 3px) solid #333;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2vh 1.5vw;
            transition: all 0.3s ease;
            cursor: pointer;
            min-height: 0;
            overflow: hidden;
        }

        .quadrant:hover {
            transform: none;
            box-shadow: none;
        }

        /* Gegner - Top Left - Red */
        .gegner {
            grid-column: 1;
            grid-row: 1;
            background: rgba(255, 68, 68, 0.2);
        }

        .gegner:hover {
            background: rgba(255, 68, 68, 0.2);
        }

        /* Promotoren - Top Right - Gold */
        .promotoren {
            grid-column: 2;
            grid-row: 1;
            background: rgba(255, 179, 0, 0.2);
        }

        .promotoren:hover {
            background: rgba(255, 179, 0, 0.2);
        }

        /* Latente - Bottom Left - Gray */
        .latente {
            grid-column: 1;
            grid-row: 2;
            background: rgba(158, 158, 158, 0.2);
        }

        .latente:hover {
            background: rgba(158, 158, 158, 0.2);
        }

        /* Unterstützer - Bottom Right - Green */
        .unterstuetzer {
            grid-column: 2;
            grid-row: 2;
            background: rgba(67, 160, 71, 0.2);
        }

        .unterstuetzer:hover {
            background: rgba(67, 160, 71, 0.2);
        }

        /* Quadrant Text - Optimized for readability */
        .quadrant-title {
            font-size: clamp(2.4rem, 3.6vw, 4.8rem);
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 0.8vh;
            text-align: center;
            line-height: 1.2;
        }

        .quadrant-strategy {
            font-size: clamp(1rem, 1.3vw, 1.8rem);
            font-style: italic;
            color: #555;
            text-align: center;
            line-height: 1.3;
        }

        /* Right Side: Legend */
        .legend-section {
            display: flex;
            flex-direction: column;
            gap: clamp(8px, 1.5vh, 24px);
            overflow-y: auto;
            overflow-x: hidden;
            padding-right: 1vw;
        }

        /* Scrollbar Styling for Legend */
        .legend-section::-webkit-scrollbar {
            width: 0.4vw;
        }

        .legend-section::-webkit-scrollbar-track {
            background: rgba(44, 44, 44, 0.05);
            border-radius: 0.5vw;
        }

        .legend-section::-webkit-scrollbar-thumb {
            background: var(--accent-red);
            border-radius: 0.5vw;
        }

        .legend-item {
            display: flex;
            gap: 1vw;
            align-items: flex-start;
            padding: 1.5vh 1vw;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 0.5vw;
            transition: all 0.3s ease;
        }

        .legend-item:hover {
            background: rgba(255, 255, 255, 0.5);
            transform: translateX(0.5vw);
        }

        .legend-color {
            width: 2vw;
            height: 2vw;
            border-radius: 0.3vw;
            flex-shrink: 0;
            border: clamp(1px, 0.1vw, 2px) solid #333;
        }

        .legend-color.red { background: rgba(255, 68, 68, 0.6); }
        .legend-color.gold { background: rgba(255, 179, 0, 0.6); }
        .legend-color.gray { background: rgba(158, 158, 158, 0.6); }
        .legend-color.green { background: rgba(67, 160, 71, 0.6); }

        .legend-text {
            flex: 1;
        }


        .legend-description {
            font-size: 3.6rem;
            color: #555;
            line-height: 1.5;
        }

        /* Goal Message Box - Below everything */
        .goal-section {
            margin-top: 0;
            padding: 0 clamp(12px, 3vw, 48px);
        }

        .key-message {
            background: linear-gradient(135deg, rgba(255, 179, 0, 0.15), rgba(255, 179, 0, 0.25));
            border-left: 0.4vw solid #FFB300;
            padding: 2.5vh 2.5vw;
            border-radius: 0.5vw;
            font-size: clamp(1.5rem, 1.7vw, 2.5rem);
            font-weight: 600;
            color: var(--text-color);
            text-align: center;
            line-height: 1.5;
        }

        /* Media Queries for Stakeholder Matrix */
        @media screen and (max-width: 1024px) {
            .matrix-content-wrapper {
                grid-template-columns: 1fr;
                gap: 2vh;
            }

            .legend-section {
                flex-direction: row;
                flex-wrap: wrap;
                max-height: none;
            }

            .legend-item {
                flex: 1 1 45%;
            }
        }

        @media screen and (max-width: 768px) {
            .matrix-grid {
                max-height: 40vh;
            }

            .quadrant-title {
                font-size: clamp(1.8rem, 4vw, 3.6rem);
            }

            .quadrant-strategy {
                font-size: clamp(0.7rem, 1.5vw, 1.3rem);
            }

            .legend-item {
                flex: 1 1 100%;
            }
        }

        @media screen and (min-width: 1920px) {
            .matrix-grid {
                max-height: 55vh;
            }
        }

        /* Animations */
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 6px 20px rgba(232, 155, 91, 0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 8px 28px rgba(232, 155, 91, 0.6);
            }
        }

        .stakeholder-slide.active .matrix-container {
            animation: fadeInScale 0.8s ease 0.3s both;
        }

        .stakeholder-slide.active .explanation-section {
            animation: fadeInScale 0.6s ease 1.2s both;
        }

        /* Slide 2 - SCQA Framework */
        .scqa-slide {
            min-height: 100vh;
            min-height: 100svh;
            height: 100vh;
            height: 100svh;
            display: grid;
            grid-template-rows: auto auto 1fr;
            padding: clamp(16px, 4vh, 60px) clamp(16px, 4vw, 80px);
            box-sizing: border-box;
        }

        .scqa-slide .slide-title {
            font-size: clamp(2.5rem, 4vw, 5.5rem);
            color: var(--accent-red);
            margin-bottom: clamp(10px, 1.5vh, 20px);
            text-align: center;
        }

        .scqa-subtitle {
            font-size: clamp(1.2rem, 1.8vw, 2.5rem);
            color: #555;
            text-align: center;
            margin-bottom: clamp(16px, 2.5vh, 40px);
            font-style: italic;
        }

        /* SCQA Cards Grid - 2x2 Layout */
        .scqa-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
            gap: clamp(10px, 1.5vw, 24px);
            overflow: auto;
            min-height: 0;
            flex: 1;
        }

        /* Individual SCQA Card */
        .scqa-card {
            background: rgba(255, 255, 255, 0.4);
            border: clamp(1px, 0.15vw, 3px) solid var(--text-color);
            border-radius: 1vw;
            padding: clamp(10px, 1.5vh, 20px) clamp(10px, 1.5vw, 20px);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: visible;
        }

        /* SCQA Badge (S/C/Q/A Letter) */
        .scqa-badge {
            position: absolute;
            top: 1.5vh;
            left: 1.5vw;
            width: clamp(40px, 3vw, 60px);
            height: clamp(40px, 3vw, 60px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(1.2rem, 1.8vw, 2.5rem);
            font-weight: 700;
            color: white;
        }

        .scqa-card.situation .scqa-badge { background: #4A90E2; }
        .scqa-card.complication .scqa-badge { background: #E24A4A; }
        .scqa-card.question .scqa-badge { background: #F5A623; }
        .scqa-card.answer .scqa-badge { background: #7ED321; }

        /* Card Content */
        .scqa-content {
            margin-top: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .scqa-card-title {
            position: absolute;
            top: 1.5vh;
            left: calc(1.5vw + clamp(45px, 3.5vw, 70px));
            font-size: clamp(3.45rem, 4.2vw, 5.1rem);
            font-weight: 700;
            color: var(--text-color);
            margin: 0;
            line-height: clamp(40px, 3vw, 60px);
        }

        .scqa-card-text {
            font-size: clamp(1.8rem, 2.6vw, 3.6rem);
            line-height: 1.4;
            color: #333;
            margin: 0;
            margin-top: clamp(50px, 5vh, 80px);
            overflow-wrap: break-word;
            word-wrap: break-word;
            hyphens: auto;
            flex: 1;
        }

        p.scqa-card-text  {
          margin: 0.8rem;
          margin-top: clamp(36px, 4vh, 60px);
          line-height: 1.35;
        }

        /* Flow Arrow (Optional connector) */
        .scqa-flow {
            position: absolute;
            display: none; /* Can be enabled if desired */
        }

        /* Media Queries */
        @media screen and (max-width: 1024px) {
            .scqa-grid {
                gap: 1.5vw;
            }
        }

        @media screen and (max-width: 768px) {
            .scqa-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, auto);
                gap: 2vh;
                max-height: none;
            }

            .scqa-slide {
                overflow-y: auto;
            }
        }

        /* Slide 4 - Stakeholder Landscape → Focus */
        .stakeholder-landscape-slide {
            min-height: 100vh;
            min-height: 100svh;
            height: 100vh;
            height: 100svh;
            display: grid;
            grid-template-rows: auto auto auto 1fr;
            padding: clamp(16px, 3vh, 48px) clamp(16px, 3vw, 60px);
            box-sizing: border-box;
        }

        .stakeholder-landscape-slide .slide-title {
            font-size: clamp(2.5rem, 4vw, 5.5rem);
            color: var(--accent-red);
            margin-bottom: clamp(10px, 1.5vh, 20px);
            text-align: center;
        }

        .stakeholder-landscape-slide .subtitle {
            font-size: clamp(1.2rem, 1.6vw, 2.2rem);
            color: #555;
            text-align: center;
            margin-bottom: clamp(10px, 2vh, 28px);
            font-style: italic;
        }

        /* Interaction hint */
        .interaction-hint {
            text-align: center;
            font-size: clamp(0.95rem, 1.2vw, 1.6rem);
            font-family: var(--font-ui);
            color: #888;
            margin-bottom: clamp(10px, 2vh, 28px);
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        .state--focus .interaction-hint {
            opacity: 0.3;
        }

        /* Main Layout Grid */
        .stakeholder-layout {
            display: grid;
            grid-template-columns: 55% 40%;
            gap: clamp(20px, 4vw, 60px);
            overflow: auto;
            min-height: 0;
            align-items: center;
        }

        /* Left: All Stakeholders */
        .all-stakeholders {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .section-label {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 2vh;
            text-align: center;
        }

        .stakeholder-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 1.5vh 1.5vw;
            flex: 1;
        }

        /* Stakeholder Card */
        .stakeholder-card {
            background: rgba(255, 255, 255, 0.5);
            border: clamp(1px, 0.12vw, 2px) solid var(--text-color);
            border-radius: 0.8vw;
            padding: 1.5vh 1.2vw;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
        }

        .stakeholder-card:hover {
            background: rgba(255, 255, 255, 0.7);
            transform: translateY(-0.3vh);
        }

        .stakeholder-name {
            font-size: clamp(1.1rem, 1.4vw, 1.9rem);
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 0.5vh;
            line-height: 1.2;
        }

        .stakeholder-role {
            font-size: clamp(0.9rem, 1.15vw, 1.5rem);
            color: #555;
            line-height: 1.3;
        }

        /* Focus Badge */
        .focus-badge {
            position: absolute;
            top: 0.8vh;
            right: 0.8vw;
            background: #FFB300;
            color: white;
            font-size: clamp(0.65rem, 0.8vw, 1rem);
            font-weight: 700;
            padding: 0.3vh 0.6vw;
            border-radius: 0.3vw;
            opacity: 0;
            transform: scale(0);
            transition: all 0.4s ease;
        }

        /* Right: Key Stakeholders */
        .key-stakeholders {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .focus-slots {
            display: flex;
            flex-direction: column;
            gap: 2vh;
            flex: 1;
        }

        .focus-slot {
            flex: 1;
            border: clamp(2px, 0.2vw, 4px) dashed #ccc;
            border-radius: 0.8vw;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.5s ease;
        }

        .state--focus .focus-slot {
            border-color: #FFB300;
            background: rgba(255, 179, 0, 0.05);
        }

        .focus-slot-placeholder {
            font-size: clamp(0.9rem, 1.1vw, 1.5rem);
            color: #aaa;
            text-align: center;
            transition: opacity 0.3s ease;
        }

        .state--focus .focus-slot-placeholder {
            opacity: 0;
        }

        /* Focus Connector Arrow (between focus cards) */
        .focus-connector-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 3vh;
            opacity: 0.4;
            transition: opacity 0.5s ease;
        }

        .focus-connector-arrow svg {
            width: clamp(30px, 3vw, 50px);
            height: 100%;
        }

        .state--focus .focus-connector-arrow {
            opacity: 1;
        }

        /* State: Focus */
        .state--focus .stakeholder-card.is-focus {
            border-color: #FFB300;
            border-width: clamp(2px, 0.2vw, 4px);
            box-shadow: 0 0.8vh 2vh rgba(255, 179, 0, 0.4);
            background: rgba(255, 255, 255, 0.95);
            z-index: 10;
            position: relative;
        }

        /* Stefan (2nd card, top-right of grid) - moves to first focus slot */
        .state--focus .stakeholder-grid .stakeholder-card:nth-child(2).is-focus {
            transform: translateX(calc(100% + 8vw)) translateY(25%) scale(1);
            background: rgba(173, 216, 230, 0.85); /* Light blue for Stefan */
            border-color: #4A90E2;
            box-shadow: 0 0.8vh 2vh rgba(74, 144, 226, 0.4);
        }

        /* IT Head (3rd card, bottom-left of grid) - moves to second focus slot */
        .state--focus .stakeholder-grid .stakeholder-card:nth-child(3).is-focus {
            transform: translateX(calc(200% + 10vw)) translateY(80%) scale(1);
            background: rgba(255, 182, 182, 0.85); /* Light red for Hans-Peter */
            border-color: #E24A4A;
            box-shadow: 0 0.8vh 2vh rgba(226, 74, 74, 0.4);
        }

        .state--focus .stakeholder-card.is-focus .focus-badge {
            opacity: 1;
            transform: scale(1);
        }

        .state--focus .stakeholder-card:not(.is-focus) {
            opacity: 0.4;
            transform: scale(0.88);
            filter: grayscale(0.6);
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            .stakeholder-card,
            .focus-badge {
                transition: opacity 0.3s ease, filter 0.3s ease;
                transform: none !important;
            }

            .state--focus .stakeholder-card.is-focus {
                transform: none;
                opacity: 1;
                filter: none;
            }
        }

        /* Responsive */
        @media screen and (max-width: 1024px) {
            .stakeholder-layout {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto;
                gap: 2vh;
            }

            /* On mobile, cards move down into focus slots */
            .state--focus .stakeholder-grid .stakeholder-card:nth-child(2).is-focus {
                transform: translateY(calc(100% + 25vh)) scale(1.05);
                background: rgba(173, 216, 230, 0.85); /* Light blue for Stefan */
                border-color: #4A90E2;
                box-shadow: 0 0.8vh 2vh rgba(74, 144, 226, 0.4);
            }

            .state--focus .stakeholder-grid .stakeholder-card:nth-child(3).is-focus {
                transform: translateY(calc(100% + 45vh)) scale(1.05);
                background: rgba(255, 182, 182, 0.85); /* Light red for Hans-Peter */
                border-color: #E24A4A;
                box-shadow: 0 0.8vh 2vh rgba(226, 74, 74, 0.4);
            }
        }

        /* Max-height media queries for shorter viewports */
        @media screen and (max-height: 780px) {
            .title-slide {
                padding: clamp(20px, 3vh, 48px) clamp(16px, 6vw, 80px);
                gap: clamp(16px, 3vh, 40px);
            }

            .main-title {
                font-size: clamp(2.8rem, 8vw, 8rem);
            }

            .title-slide .subtitle {
                font-size: clamp(1.5rem, 2.5vw, 3rem);
            }

            .author-name {
                font-size: clamp(1.8rem, 3vw, 3.5rem);
            }

            .meta-details {
                font-size: clamp(1.2rem, 1.8vw, 2.2rem);
            }

            .title-meta {
                margin-top: clamp(12px, 2vh, 32px);
            }

            .scqa-grid {
                gap: clamp(8px, 1.5vw, 24px);
            }

            .scqa-card {
                padding: 1.5vh 1.5vw;
            }

            .scqa-content {
                margin-top: clamp(40px, 3.5vh, 70px);
                gap: 0.8vh;
            }

            .goal-section {
                margin-top: 0;
            }

            .key-message {
                padding: 1.5vh 1.5vw;
            }
        }

        @media screen and (max-height: 650px) {
            .title-slide {
                padding: clamp(16px, 2vh, 32px) clamp(12px, 5vw, 60px);
                gap: clamp(12px, 2vh, 28px);
            }

            .main-title {
                font-size: clamp(4rem, 7vw, 7exrem);
            }

            .title-slide .subtitle {
                font-size: clamp(1.3rem, 2vw, 2.5rem);
            }

            .author-name {
                font-size: clamp(1.5rem, 2.5vw, 3rem);
            }

            .meta-details {
                font-size: clamp(1rem, 1.5vw, 1.8rem);
            }

            .title-meta {
                margin-top: clamp(8px, 1.5vh, 24px);
                gap: clamp(8px, 1vh, 16px);
            }

            .meta-divider {
                width: clamp(40px, 6vw, 80px);
            }

            .scqa-slide {
                padding: clamp(12px, 2.5vh, 40px) clamp(12px, 3vw, 60px);
            }

            .scqa-slide .slide-title {
                font-size: clamp(1.6rem, 3vw, 3.5rem);
                margin-bottom: clamp(4px, 0.8vh, 12px);
            }

            .scqa-subtitle {
                font-size: clamp(0.9rem, 1.3vw, 1.6rem);
                margin-bottom: clamp(8px, 1.5vh, 20px);
            }

            .scqa-grid {
                gap: clamp(6px, 1vw, 16px);
            }

            .scqa-card {
                padding: clamp(6px, 1vh, 12px) clamp(6px, 1vw, 12px);
            }

            .scqa-badge {
                width: clamp(22px, 2vw, 36px);
                height: clamp(22px, 2vw, 36px);
                font-size: clamp(0.8rem, 1.2vw, 1.5rem);
                top: clamp(4px, 0.6vh, 10px);
                left: clamp(4px, 0.6vw, 10px);
            }

            .scqa-content {
                margin-top: clamp(28px, 2.5vh, 45px);
                gap: 0.4vh;
            }

            .scqa-card-title {
                font-size: clamp(1.3rem, 1.65vw, 2.1rem);
                font-weight: 700;
                top: clamp(4px, 0.6vh, 10px);
                left: calc(clamp(4px, 0.6vw, 10px) + clamp(26px, 2.2vw, 40px));
                line-height: clamp(22px, 2vw, 36px);
            }

            .scqa-card-text {
                font-size: clamp(1.4rem, 1.9vw, 2.4rem);
                margin-top: clamp(40px, 4vh, 60px);
                line-height: 1.35;
            }

            .stakeholder-slide,
            .stakeholder-landscape-slide {
                padding: clamp(12px, 2vh, 36px) clamp(12px, 2.5vw, 48px);
            }

            .stakeholder-slide .slide-title,
            .stakeholder-landscape-slide .slide-title {
                font-size: clamp(1.6rem, 3vw, 3.8rem);
                margin-bottom: clamp(6px, 1vh, 16px);
            }

            .matrix-content-wrapper {
                gap: clamp(12px, 2.5vw, 40px);
            }

            .matrix-grid {
                max-height: 40vh;
            }

            .quadrant {
                padding: 1.5vh 1.2vw;
            }

            .quadrant-title {
                font-size: clamp(1.8rem, 2.6vw, 3.4rem);
            }

            .quadrant-strategy {
                font-size: clamp(0.75rem, 1vw, 1.3rem);
            }

            .legend-item {
                padding: 1vh 0.8vw;
            }

            .key-message {
                padding: 1.5vh 1.5vw;
                font-size: clamp(0.85rem, 1.1vw, 1.5rem);
            }

            .goal-section {
                margin-top: 0;
            }

            .stakeholder-landscape-slide .subtitle {
                font-size: clamp(0.9rem, 1.2vw, 1.5rem);
            }

            .interaction-hint {
                font-size: clamp(0.75rem, 0.9vw, 1.1rem);
            }

            .stakeholder-name {
                font-size: clamp(0.8rem, 1vw, 1.3rem);
            }

            .stakeholder-role {
                font-size: clamp(0.7rem, 0.85vw, 1.1rem);
            }

            .info-table {
                font-size: clamp(1.15rem, 1.6vw, 2.3rem);
            }

            .project-info-slide {
                padding: clamp(16px, 3.5vh, 48px) clamp(20px, 5vw, 64px);
            }

            .project-info-slide .slide-title {
                margin-bottom: clamp(12px, 2vh, 32px);
            }
        }

        /* Very short viewports - ensure everything still fits */
        @media screen and (max-height: 550px) {
            .title-slide,
            .scqa-slide,
            .project-info-slide,
            .stakeholder-slide,
            .stakeholder-landscape-slide {
                height: auto;
                min-height: 100vh;
                min-height: 100svh;
            }

            .scqa-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
                gap: clamp(4px, 0.8vw, 12px);
            }

            .scqa-card {
                padding: clamp(4px, 0.8vh, 10px) clamp(4px, 0.8vw, 10px);
            }

            .scqa-badge {
                width: clamp(20px, 1.8vw, 32px);
                height: clamp(20px, 1.8vw, 32px);
                font-size: clamp(0.7rem, 1vw, 1.3rem);
                top: clamp(3px, 0.5vh, 8px);
                left: clamp(3px, 0.5vw, 8px);
            }

            .scqa-card-title {
                font-size: clamp(1.1rem, 1.5vw, 1.8rem);
                font-weight: 700;
                top: clamp(3px, 0.5vh, 8px);
                left: calc(clamp(3px, 0.5vw, 8px) + clamp(22px, 2vw, 36px));
                line-height: clamp(20px, 1.8vw, 32px);
            }

            .scqa-card-text {
                font-size: clamp(1.2rem, 1.7vw, 2rem);
                margin-top: clamp(35px, 3.5vh, 55px);
                line-height: 1.3;
            }

            .scqa-content {
                margin-top: clamp(22px, 2vh, 38px);
            }

            .matrix-grid {
                max-height: 35vh;
            }

            .goal-section {
                margin-top: 0;
            }

            .key-message {
                padding: 1vh 1vw;
                font-size: clamp(0.75rem, 1vw, 1.3rem);
            }
        }

        /* Slide 6 - Stakeholder Matrix with Positioned Stakeholders */
        .stakeholder-matrix-positioned {
            min-height: 100vh;
            min-height: 100svh;
            height: 100vh;
            height: 100svh;
            display: flex;
            flex-direction: column;
            padding: clamp(12px, 2vh, 32px) clamp(16px, 3vw, 60px);
            box-sizing: border-box;
            overflow: hidden;
        }

        .stakeholder-matrix-positioned .slide-title {
            font-size: clamp(2rem, 3.5vw, 4.5rem);
            color: var(--accent-red);
            margin-bottom: clamp(1px, 1vh, 1px);
            text-align: center;
            flex-shrink: 0;
        }

        .stakeholder-matrix-positioned .subtitle {
            font-size: 1.5rem;
            color: #555;
            text-align: center;
            margin-top: -0.5rem;
            margin-bottom: clamp(8px, 1.5vh, 20px);
            font-style: italic;
            flex-shrink: 0;
        }

        /* Matrix with stakeholders */
        .matrix-with-stakeholders {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            flex: 1;
            min-height: 0;
            overflow: visible;
        }

        .positioned-matrix-container {
            position: relative;
            width: min(80%, 70vh);
            max-width: 800px;
            aspect-ratio: 1;
        }

        /* Axes for positioned matrix - Y-axis with better readability */
        .positioned-y-axis {
            position: absolute;
            left: -2.2vw;
            top: 50%;
            transform: translateY(-50%) rotate(180deg);
            writing-mode: vertical-lr;
            text-orientation: mixed;
            font-size: clamp(0.85rem, 1.1vw, 1.4rem);
            font-weight: 600;
            color: var(--text-color);
            white-space: nowrap;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .positioned-x-axis {
            position: absolute;
            bottom: -3.5vh;
            left: 50%;
            transform: translateX(-50%);
            font-size: clamp(0.85rem, 1.1vw, 1.4rem);
            font-weight: 600;
            color: var(--text-color);
            white-space: nowrap;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Matrix grid for positioned version */
        .positioned-matrix-grid {
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 0;
            border: 3px solid #333;
            position: relative;
        }

        /* Quadrants - lighter backgrounds for better visibility of cards */
        .positioned-quadrant {
            border: 2px solid #333;
            position: relative;
            padding: 32px 12px 12px 12px; /* Extra top padding for labels */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: stretch;
            gap: 10px;
            overflow: hidden;
        }

        .positioned-quadrant.gegner {
            background: rgba(255, 68, 68, 0.1);
            justify-content: flex-start; /* High power = top of quadrant */
        }

        .positioned-quadrant.promotoren {
            background: rgba(255, 179, 0, 0.1);
            justify-content: flex-start; /* High power = top of quadrant */
        }

        .positioned-quadrant.latente {
            background: rgba(158, 158, 158, 0.1);
            justify-content: flex-end; /* Low power = bottom of quadrant */
        }

        .positioned-quadrant.unterstuetzer {
            background: rgba(67, 160, 71, 0.1);
            justify-content: flex-end; /* Low power = bottom of quadrant */
        }

        /* Quadrant labels - positioned in corner with low z-index */
        .positioned-quadrant-label {
            position: absolute;
            top: 8px;
            right: 10px;
            font-size: clamp(0.65rem, 0.9vw, 1.1rem);
            font-weight: 700;
            color: var(--text-color);
            opacity: 0.35;
            z-index: 1;
            pointer-events: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Left quadrants: label on left side */
        .positioned-quadrant.gegner .positioned-quadrant-label,
        .positioned-quadrant.latente .positioned-quadrant-label {
            right: auto;
            left: 10px;
        }

        /* Stakeholder cards in matrix */
        .matrix-stakeholder-card {
            background: rgba(255, 255, 255, 0.9);
            border: clamp(1px, 0.15vw, 3px) solid var(--text-color);
            border-radius: 0.6vw;
            padding: 1vh 1vw;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .matrix-stakeholder-card:hover {
            transform: none;
            box-shadow: none;
        }

        .matrix-stakeholder-card.focus {
            border-width: clamp(2px, 0.2vw, 4px);
            z-index: 10;
            position: relative;
        }

        /* Stefan (Latent quadrant) - light blue */
        .latente .matrix-stakeholder-card.focus {
            background: rgba(173, 216, 230, 0.95);
            border-color: #4A90E2;
            box-shadow: 0 0.4vh 1vh rgba(74, 144, 226, 0.4);
        }

        /* Hans-Peter (Opponents quadrant) - light red */
        .gegner .matrix-stakeholder-card.focus {
            background: rgba(255, 182, 182, 0.95);
            border-color: #E24A4A;
            box-shadow: 0 0.4vh 1vh rgba(226, 74, 74, 0.4);
        }

        .matrix-stakeholder-name {
            font-size: clamp(2rem, 2.5vw, 3.4rem);
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 0.4vh;
            line-height: 1.2;
        }

        .matrix-stakeholder-role {
            font-size: clamp(1.7rem, 2.1vw, 2.8rem);
            color: #555;
            line-height: 1.3;
        }

        /* Bottom explanation */
        .matrix-bottom-note {
            text-align: center;
            padding: clamp(8px, 1.5vh, 20px) 2.5vw;
            font-size: clamp(0.95rem, 1.2vw, 1.6rem);
            color: #555;
            font-style: italic;
            flex-shrink: 0;
            margin-top: auto;
        }

        /* Focus badge for stakeholder cards */
        .matrix-focus-badge {
            display: inline-block;
            background: #FFB300;
            color: white;
            font-size: clamp(0.6rem, 0.75vw, 0.95rem);
            font-weight: 700;
            padding: 0.2vh 0.5vw;
            border-radius: 0.3vw;
            margin-left: 0.5vw;
        }

        /* Responsive */
        @media screen and (max-width: 1024px) {
            .positioned-matrix-container {
                width: 90%;
            }

            .positioned-y-axis {
                left: -3.5vw;
                font-size: clamp(0.7rem, 1vw, 1.2rem);
            }

            .positioned-quadrant {
                padding: 28px 8px 8px 8px;
            }

            .positioned-quadrant-label {
                font-size: clamp(0.55rem, 0.8vw, 0.9rem);
            }
        }

        @media screen and (max-height: 650px) {
            .stakeholder-matrix-positioned {
                padding: clamp(12px, 2vh, 36px) clamp(12px, 2.5vw, 48px);
            }

            .stakeholder-matrix-positioned .slide-title {
                font-size: clamp(1.6rem, 3vw, 3.8rem);
                margin-bottom: clamp(6px, 1vh, 16px);
            }

            .matrix-stakeholder-card {
                padding: 0.8vh 0.8vw;
            }

            .positioned-quadrant {
                padding: 24px 6px 6px 6px;
                gap: 6px;
            }

            .matrix-stakeholder-name {
                font-size: clamp(1.7rem, 2.2vw, 2.8rem);
            }

            .matrix-stakeholder-role {
                font-size: clamp(1.4rem, 1.8vw, 2.2rem);
            }
        }

        /* ========================================
           Persona Detail Slides - Zoom Effect
           ======================================== */
        .persona-slide {
            min-height: 100vh;
            min-height: 100svh;
            height: 100vh;
            height: 100svh;
            display: grid;
            grid-template-columns: 35% 65%;
            grid-template-rows: auto 1fr;
            padding: clamp(16px, 3vh, 40px) clamp(20px, 4vw, 60px);
            box-sizing: border-box;
            gap: clamp(16px, 2vw, 32px);
        }

        /* Header spans full width */
        .persona-slide-header {
            grid-column: 1 / -1;
            display: flex;
            align-items: center;
            gap: clamp(16px, 2vw, 32px);
        }

        .persona-quadrant-indicator {
            display: flex;
            align-items: center;
            gap: clamp(8px, 1vw, 16px);
            padding: clamp(8px, 1vh, 16px) clamp(12px, 1.5vw, 24px);
            border-radius: 0.5vw;
            flex-shrink: 0;
        }

        .persona-quadrant-indicator.latent {
            background: rgba(158, 158, 158, 0.2);
            border: 2px solid rgba(158, 158, 158, 0.5);
        }

        .persona-quadrant-indicator.opponent {
            background: rgba(255, 68, 68, 0.15);
            border: 2px solid rgba(255, 68, 68, 0.5);
        }

        .quadrant-dot {
            width: clamp(16px, 1.2vw, 24px);
            height: clamp(16px, 1.2vw, 24px);
            border-radius: 4px;
            border: 2px solid #333;
        }

        .quadrant-dot.latent { background: rgba(158, 158, 158, 0.6); }
        .quadrant-dot.opponent { background: rgba(255, 68, 68, 0.6); }

        .quadrant-label {
            font-family: var(--font-ui);
            font-size: clamp(0.9rem, 1.1vw, 1.4rem);
            font-weight: 600;
            color: var(--text-color);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .persona-slide-title {
            font-size: clamp(2.2rem, 4vw, 5rem);
            font-weight: 700;
            color: var(--accent-red);
            margin: 0;
        }

        /* Left side: Avatar and basic info */
        .persona-left {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(16px, 2vh, 32px);
            padding-top: clamp(16px, 3vh, 40px);
        }

        .persona-avatar-large {
            width: clamp(120px, 15vw, 220px);
            height: clamp(120px, 15vw, 220px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 1vh 3vh rgba(0, 0, 0, 0.15);
        }

        .persona-avatar-large.stefan {
            background: url('../Stefan_normal.jpg') center center / cover no-repeat;
            border: 4px solid #4A90E2;
        }

        .persona-avatar-large.hans-peter {
            background: url('../Hans-Peter_normal.jpg') center center / cover no-repeat;
            border: 4px solid #C41E3A;
        }

        .persona-name-large {
            font-size: clamp(2rem, 3vw, 4rem);
            font-weight: 700;
            color: var(--text-color);
            text-align: center;
        }

        .persona-role-text {
            font-size: 3.6rem;
            color: #555;
            text-align: center;
            line-height: 1.4;
            max-width: 90%;
        }

        /* Right side: Details grid */
        .persona-right {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: repeat(3, auto);
            gap: clamp(12px, 1.5vh, 24px) clamp(16px, 2vw, 32px);
            align-content: start;
            overflow-y: auto;
            padding-right: 1vw;
        }

        .persona-detail-card {
            background: rgba(255, 255, 255, 0.5);
            border-radius: 0.8vw;
            padding: clamp(14px, 2vh, 28px) clamp(16px, 1.8vw, 28px);
            border-left: 4px solid var(--accent-red);
            transition: all 0.3s ease;
        }

        .persona-detail-card:hover {
            background: rgba(255, 255, 255, 0.7);
            transform: translateX(4px);
        }

        .persona-detail-card.stefan {
            border-left-color: #4A90E2;
        }

        .persona-detail-card.hans-peter {
            border-left-color: #E24A4A;
        }

        /* Span full width for larger items */
        .persona-detail-card.full-width {
            grid-column: 1 / -1;
        }

        .detail-card-title {
            font-size: clamp(2.2rem, 2.8vw, 3.6rem);
            font-weight: 900;
            color: var(--accent-red);
            margin-bottom: clamp(6px, 1vh, 12px);
        }

        .persona-detail-card.stefan .detail-card-title {
            color: #4A90E2;
        }

        .persona-detail-card.hans-peter .detail-card-title {
            color: #E24A4A;
        }

        .detail-card-content {
            font-size: 2.6rem;
            color: var(--text-color);
            line-height: 0.85;
        }

        .detail-card-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .detail-card-content li {
            padding-left: 1.0em;
            position: relative;
            margin-bottom: clamp(2px, 0.3vh, 6px);
        }

        .detail-card-content li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.55em;
            width: 6px;
            height: 6px;
            background: var(--accent-red);
            border-radius: 50%;
        }

        .persona-detail-card.stefan .detail-card-content li:before {
            background: #4A90E2;
        }

        .persona-detail-card.hans-peter .detail-card-content li:before {
            background: #E24A4A;
        }

        .detail-card-content li:last-child {
            margin-bottom: 0;
        }

        /* Responsive for persona slides */
        @media screen and (max-width: 1024px) {
            .persona-slide {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto 1fr;
            }

            .persona-left {
                flex-direction: row;
                justify-content: center;
                gap: clamp(20px, 4vw, 40px);
                padding-top: 0;
            }

            .persona-avatar-large {
                width: clamp(80px, 12vw, 140px);
                height: clamp(80px, 12vw, 140px);
            }

            .persona-right {
                grid-template-columns: 1fr;
            }

            .persona-detail-card.full-width {
                grid-column: 1;
            }
        }

        @media screen and (max-height: 700px) {
            .persona-slide {
                padding: clamp(12px, 2vh, 28px) clamp(16px, 3vw, 48px);
                gap: clamp(10px, 1.5vw, 24px);
            }

            .persona-avatar-large {
                width: clamp(80px, 12vw, 160px);
                height: clamp(80px, 12vw, 160px);
            }

            .persona-detail-card {
                padding: clamp(10px, 1.5vh, 20px) clamp(12px, 1.4vw, 22px);
            }

            .detail-card-title {
                font-size: clamp(1rem, 1.2vw, 1.5rem);
                margin-bottom: clamp(4px, 0.8vh, 10px);
            }
        }

        /* ============================================
           Stakeholder Journey Table Slides
           ============================================ */
        .journey-slide {
            min-height: 100vh;
            min-height: 100svh;
            display: flex;
            flex-direction: column;
            padding: clamp(16px, 2.5vh, 28px) clamp(20px, 3vw, 48px);
            padding-bottom: clamp(40px, 6vh, 70px);
            box-sizing: border-box;
            overflow: hidden;
        }

        .journey-slide .slide-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: clamp(10px, 1.5vh, 18px);
            gap: clamp(12px, 1.5vw, 24px);
            flex-shrink: 0;
        }

        .journey-slide .slide-title {
            font-size: clamp(1.4rem, 2.2vw, 2.8rem);
            line-height: 1.2;
        }

        /* Persona Badge - Stefan (Blue) */
        .journey-slide.stefan .persona-badge {
            display: flex;
            align-items: center;
            gap: clamp(6px, 0.8vw, 10px);
            background: rgba(74, 144, 226, 0.1);
            border: 2px solid #4A90E2;
            border-radius: 10px;
            padding: clamp(4px, 0.7vh, 8px) clamp(8px, 1vw, 14px);
            flex-shrink: 0;
        }

        .journey-slide.stefan .persona-avatar {
            width: clamp(32px, 3.5vw, 44px);
            height: clamp(32px, 3.5vw, 44px);
            border-radius: 50%;
            background: url('../Stefan_normal.jpg') center/cover;
            border: 2px solid #4A90E2;
        }

        .journey-slide.stefan .persona-name {
            font-size: clamp(0.95rem, 1.2vw, 1.5rem);
            font-weight: 700;
            color: #357ABD;
        }

        .journey-slide.stefan .persona-role {
            font-size: clamp(0.7rem, 0.85vw, 1rem);
            color: #555;
        }

        .journey-slide.stefan .phase-name {
            background: linear-gradient(135deg, #4A90E2, #357ABD);
            box-shadow: 0 2px 6px rgba(74, 144, 226, 0.25);
        }

        /* Persona Badge - Hans-Peter (Red) */
        .journey-slide.hanspeter .persona-badge {
            display: flex;
            align-items: center;
            gap: clamp(6px, 0.8vw, 10px);
            background: rgba(226, 74, 74, 0.1);
            border: 2px solid #E24A4A;
            border-radius: 10px;
            padding: clamp(4px, 0.7vh, 8px) clamp(8px, 1vw, 14px);
            flex-shrink: 0;
        }

        .journey-slide.hanspeter .persona-avatar {
            width: clamp(32px, 3.5vw, 44px);
            height: clamp(32px, 3.5vw, 44px);
            border-radius: 50%;
            background: url('../Hans-Peter_normal.jpg') center/cover;
            border: 2px solid #E24A4A;
        }

        .journey-slide.hanspeter .persona-name {
            font-size: clamp(0.95rem, 1.2vw, 1.5rem);
            font-weight: 700;
            color: #C41E3A;
        }

        .journey-slide.hanspeter .persona-role {
            font-size: clamp(0.7rem, 0.85vw, 1rem);
            color: #555;
        }

        /* ============================================
           Journey Table Layout - Clean Grid Design
           ============================================ */
        .journey-table-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-height: 0;
            overflow: hidden;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .journey-table {
            width: 100%;
            max-width: 100%;
            border-collapse: collapse;
            font-family: var(--font-handwritten);
            table-layout: fixed;
            border: 2px solid rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            overflow: hidden;
            box-sizing: border-box;
        }

        /* Column widths: 15% for labels, 17% each for 5 data columns = 100% */
        .journey-table colgroup .col-label {
            width: 15%;
        }
        .journey-table colgroup .col-data {
            width: 17%;
        }

        /* Header Row with Journey Phases */
        .journey-table thead {
            background: linear-gradient(135deg, #e8e4db, #ddd8cc);
        }

        .journey-table .phase-header-row th {
            padding: 10px 8px;
            text-align: center;
            font-size: clamp(3.6rem, 4.4vw, 5.2rem);
            font-weight: 700;
            color: var(--text-color);
            vertical-align: top;
            border: 1px solid rgba(0, 0, 0, 0.12);
            border-top: none;
            box-sizing: border-box;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        .journey-table .phase-header-row th:first-child {
            width: 15%;
            text-align: left;
            background: rgba(0, 0, 0, 0.05);
            border-left: none;
            padding-left: 10px;
        }

        .journey-table .phase-header-row th:last-child {
            border-right: none;
        }

        .journey-table .phase-header-row th:not(:first-child) {
            width: 17%;
        }

        /* Phase cell with arrow */
        .phase-cell {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            flex-wrap: wrap;
        }

        .phase-name {
            background: linear-gradient(135deg, #c53030, #a02828);
            color: white;
            padding: 8px 12px;
            border-radius: 16px;
            white-space: nowrap;
            font-weight: 600;
            font-size: clamp(2.8rem, 3.2vw, 3.8rem);
            box-shadow: 0 2px 6px rgba(197, 48, 48, 0.25);
            max-width: 100%;
            box-sizing: border-box;
        }

        .phase-arrow {
            color: #888;
            font-size: clamp(3.2rem, 3.6vw, 4.4rem);
            flex-shrink: 0;
        }

        /* Table Body */
        .journey-table tbody tr {
            background: white;
        }

        .journey-table tbody tr:nth-child(even) {
            background: rgba(0, 0, 0, 0.02);
        }

        .journey-table tbody tr:hover {
            background: rgba(197, 48, 48, 0.03);
        }

        .journey-table td {
            padding: 10px;
            vertical-align: top;
            font-size: clamp(2.6rem, 3vw, 3.6rem);
            line-height: 1.35;
            color: var(--text-color);
            border: 1px solid rgba(0, 0, 0, 0.1);
            text-align: center;
            word-wrap: break-word;
            overflow-wrap: break-word;
            box-sizing: border-box;
            overflow: hidden;
        }

        .journey-table td:first-child {
            width: 15%;
            font-weight: 700;
            color: #444;
            background: rgba(0, 0, 0, 0.04);
            text-align: left;
            border-left: none;
            vertical-align: top;
            padding-left: 10px;
        }

        .journey-table td:not(:first-child) {
            width: 17%;
        }

        .journey-table td:last-child {
            border-right: none;
        }

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

        /* Row Labels */
        .row-label {
            display: flex;
            align-items: flex-start;
            gap: 6px;
            font-size: clamp(1.2rem, 1.4vw, 1.7rem);
            white-space: normal;
            word-wrap: break-word;
            overflow-wrap: break-word;
            line-height: 1.3;
        }

        .row-label-icon {
            font-size: clamp(1.3rem, 1.5vw, 1.8rem);
            flex-shrink: 0;
        }

        /* Cell Content */
        .cell-content {
            display: flex;
            flex-direction: column;
            gap: 3px;
            text-align: left;
        }

        .cell-item {
            display: block;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        /* Project Phase Colors */
        .phase-definition {
            background: rgba(255, 215, 0, 0.3);
            font-weight: 600;
        }

        .phase-planning {
            background: rgba(255, 105, 180, 0.3);
            font-weight: 600;
        }

        .phase-execution {
            background: rgba(74, 144, 226, 0.3);
            font-weight: 600;
        }

        .phase-closure {
            background: rgba(76, 175, 80, 0.3);
            font-weight: 600;
        }

        /* Marketing Measures Badge */
        .measure-bold {
            font-weight: 700;
            color: var(--accent-red);
            background: rgba(197, 48, 48, 0.12);
            padding: 6px 10px;
            border-radius: 10px;
            display: inline-block;
            border: 2px solid rgba(197, 48, 48, 0.35);
            box-shadow: 0 2px 6px rgba(197, 48, 48, 0.12);
            font-size: 14px;
            max-width: 120px;
            word-wrap: break-word;
            overflow-wrap: break-word;
            white-space: normal;
            box-sizing: border-box;
        }

        .measure-badge {
            font-weight: 700;
            color: #fff;
            background: linear-gradient(135deg, var(--accent-red) 0%, #d84444 100%);
            padding: 6px 12px;
            border-radius: 16px;
            display: inline-block;
            border: none;
            box-shadow: 0 2px 8px rgba(197, 48, 48, 0.35);
            font-size: 14px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            max-width: 120px;
            word-wrap: break-word;
            overflow-wrap: break-word;
            white-space: normal;
            box-sizing: border-box;
        }

        .measure-badge.secondary {
            background: linear-gradient(135deg, #888 0%, #666 100%);
            box-shadow: 0 2px 8px rgba(100, 100, 100, 0.35);
        }

        /* Measure Cell (empty cells with dash) */
        .measure-cell {
            text-align: center;
            vertical-align: top !important;
            color: #bbb;
            font-size: clamp(1.6rem, 1.8vw, 2.2rem);
        }

        /* Measure Cell spanning multiple columns */
        .measure-cell.measure-span {
            padding: 8px 0;
        }

        .measure-cell.measure-span .measure-badge {
            display: block;
            width: 100%;
            max-width: 100%;
            padding: 6px 20px;
            border-radius: 16px;
            border-left: 8px solid var(--accent-red);
            border-right: 8px solid var(--accent-red);
            background: linear-gradient(90deg, var(--accent-red) 0%, #e85555 20%, #e85555 80%, var(--accent-red) 100%);
            box-shadow: 0 3px 12px rgba(197, 48, 48, 0.4);
        }

        .measure-cell.measure-span.secondary .measure-badge.secondary {
            border-left: 8px solid #666;
            border-right: 8px solid #666;
            background: linear-gradient(90deg, #666 0%, #888 20%, #888 80%, #666 100%);
            box-shadow: 0 3px 12px rgba(100, 100, 100, 0.4);
        }

        .measure-cell .measure-bold {
            display: inline-block;
        }

        /* Marketing Type Pills */
        .marketing-type {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 10px;
            font-size: 28px;
            font-weight: 600;
            margin: 2px;
            white-space: normal;
            word-wrap: break-word;
            overflow-wrap: break-word;
            max-width: 100%;
            box-sizing: border-box;
            line-height: 1.2;
        }

        .marketing-type.personal-selling {
            background: rgba(74, 144, 226, 0.15);
            color: #2d6cb5;
            border: 1px solid rgba(74, 144, 226, 0.3);
        }

        .marketing-type.direct-marketing {
            background: rgba(155, 89, 182, 0.15);
            color: #7d3c98;
            border: 1px solid rgba(155, 89, 182, 0.3);
        }

        .marketing-type.pr {
            background: rgba(39, 174, 96, 0.15);
            color: #1e8449;
            border: 1px solid rgba(39, 174, 96, 0.3);
        }

        .marketing-type.place {
            background: rgba(230, 126, 34, 0.15);
            color: #b5651d;
            border: 1px solid rgba(230, 126, 34, 0.3);
        }

        .marketing-type.digital-marketing {
            background: rgba(231, 76, 60, 0.15);
            color: #c0392b;
            border: 1px solid rgba(231, 76, 60, 0.3);
        }

        .marketing-type.direct-digital {
            background: rgba(155, 89, 182, 0.15);
            color: #7d3c98;
            border: 1px solid rgba(155, 89, 182, 0.3);
        }

        /* Legend Section */
        .journey-slide .legend-section {
            margin-top: clamp(10px, 1.4vh, 16px);
            padding: clamp(8px, 1.2vh, 14px) clamp(14px, 1.8vw, 24px);
            background: rgba(0, 0, 0, 0.03);
            border-radius: 10px;
            flex-shrink: 0;
        }

        .journey-slide .legend-title {
            font-size: clamp(0.95rem, 1.15vw, 1.35rem);
            font-weight: 700;
            color: #555;
            margin-bottom: clamp(6px, 0.8vh, 10px);
        }

        .journey-slide .legend-items {
            display: flex;
            flex-wrap: wrap;
            gap: clamp(10px, 1.2vw, 18px);
            align-items: center;
        }

        .journey-slide .legend-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: clamp(0.9rem, 1.1vw, 1.3rem);
            color: #444;
        }

        .journey-slide .legend-color {
            width: clamp(14px, 1.3vw, 18px);
            height: clamp(14px, 1.3vw, 18px);
            border-radius: 4px;
            flex-shrink: 0;
        }

        .legend-color.personal-selling { background: #4A90E2; }
        .legend-color.direct-marketing { background: #9B59B6; }
        .legend-color.pr { background: #27AE60; }
        .legend-color.place { background: #E67E22; }
        .legend-color.digital-marketing { background: #E74C3C; }
        .legend-color.direct-digital { background: #9B59B6; }

        .focus-legend {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: clamp(8px, 1vw, 14px);
            padding-left: clamp(12px, 1.5vw, 20px);
            border-left: 2px solid rgba(0, 0, 0, 0.1);
        }

        .focus-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: clamp(0.85rem, 1vw, 1.15rem);
            color: #444;
        }

        .focus-indicator .focus-dot {
            width: clamp(12px, 1vw, 16px);
            height: clamp(12px, 1vw, 16px);
            border-radius: 50%;
        }

        .journey-slide.stefan .focus-indicator .focus-dot {
            background: linear-gradient(135deg, #4A90E2, #357ABD);
        }

        .journey-slide.hanspeter .focus-indicator .focus-dot {
            background: linear-gradient(135deg, #E24A4A, #C41E3A);
        }

        @media (max-width: 1200px) {
            .journey-table td {
                font-size: clamp(1.7rem, 2.2vw, 2.4rem);
            }
            .phase-name {
                padding: clamp(5px, 0.8vh, 10px) clamp(8px, 1vw, 14px);
            }
        }

        @media (max-width: 900px) {
            .journey-slide {
                padding: clamp(16px, 2.5vh, 28px) clamp(16px, 3vw, 32px);
            }
            .journey-slide .slide-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .focus-legend {
                margin-left: 0;
                margin-top: 8px;
                padding-left: 0;
                border-left: none;
                padding-top: 8px;
                border-top: 2px solid rgba(0, 0, 0, 0.1);
                width: 100%;
            }
        }

/* ============================================
   Transformation Slide Specific Styles
   ============================================ */
                    .transform-slide {
                        min-height: 100vh;
                        min-height: 100svh;
                        display: flex;
                        flex-direction: column;
                        padding: clamp(12px, 2.5vh, 32px) clamp(16px, 3vw, 48px);
                        box-sizing: border-box;
                    }

                    .transform-header {
                        text-align: center;
                        margin-bottom: clamp(10px, 1.5vh, 20px);
                    }

                    .transform-title {
                        font-size: clamp(2rem, 3.5vw, 4.5rem);
                        font-weight: 700;
                        color: var(--accent-red);
                        margin: 0 0 clamp(4px, 0.5vh, 8px) 0;
                    }

                    .transform-subtitle {
                        font-size: clamp(1rem, 1.4vw, 1.8rem);
                        color: #666;
                        font-style: italic;
                        margin: 0;
                    }

                    .transform-content {
                        display: grid;
                        grid-template-columns: 58% 40%;
                        gap: clamp(16px, 2vw, 32px);
                        flex: 1;
                        min-height: 0;
                    }

                    /* Matrix Section */
                    .matrix-section {
                        background: rgba(255, 255, 255, 0.4);
                        border-radius: clamp(12px, 1.2vw, 20px);
                        padding: clamp(12px, 1.5vh, 24px);
                        display: flex;
                        flex-direction: column;
                    }

                    .matrix-section-title {
                        font-size: clamp(1.1rem, 1.5vw, 1.9rem);
                        font-weight: 600;
                        color: var(--text-color);
                        margin-bottom: clamp(8px, 1vh, 16px);
                        text-align: center;
                    }

                    .matrix-container {
                        flex: 1;
                        position: relative;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }

                    .matrix-wrapper-anim {
                        position: relative;
                        width: 100%;
                        max-width: min(50vh, 100%);
                        aspect-ratio: 1;
                    }

                    /* Axis Labels */
                    .axis-label-y {
                        position: absolute;
                        left: -3vw;
                        top: 50%;
                        transform: translateY(-50%) rotate(-90deg);
                        font-size: clamp(0.8rem, 1vw, 1.2rem);
                        font-weight: 600;
                        color: #555;
                        white-space: nowrap;
                        font-family: var(--font-ui);
                    }

                    .axis-label-x {
                        position: absolute;
                        bottom: -2.5vh;
                        left: 50%;
                        transform: translateX(-50%);
                        font-size: clamp(0.8rem, 1vw, 1.2rem);
                        font-weight: 600;
                        color: #555;
                        font-family: var(--font-ui);
                    }

                    /* Matrix Grid */
                    .matrix-grid-anim {
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        grid-template-rows: 1fr 1fr;
                        width: 100%;
                        height: 100%;
                        border: 2px solid #333;
                        border-radius: 8px;
                        overflow: hidden;
                    }

                    .matrix-quadrant {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        padding: clamp(8px, 1vh, 16px);
                        position: relative;
                        transition: all 0.3s ease;
                    }

                    .matrix-quadrant.opponents {
                        background: rgba(255, 68, 68, 0.15);
                        border-right: 1px solid #333;
                        border-bottom: 1px solid #333;
                    }

                    .matrix-quadrant.promoters {
                        background: rgba(126, 211, 33, 0.15);
                        border-bottom: 1px solid #333;
                    }

                    .matrix-quadrant.latent {
                        background: rgba(158, 158, 158, 0.15);
                        border-right: 1px solid #333;
                    }

                    .matrix-quadrant.supporters {
                        background: rgba(74, 144, 226, 0.15);
                    }

                    .quadrant-name {
                        font-size: clamp(0.75rem, 1vw, 1.1rem);
                        font-weight: 700;
                        text-transform: uppercase;
                        letter-spacing: 0.05em;
                        opacity: 0.7;
                    }

                    .opponents .quadrant-name { color: #c53030; }
                    .promoters .quadrant-name { color: #388E3C; }
                    .latent .quadrant-name { color: #666; }
                    .supporters .quadrant-name { color: #357ABD; }

                    /* Stakeholder Avatars */
                    .stakeholder-avatar {
                        position: absolute;
                        width: clamp(40px, 4.5vw, 60px);
                        height: clamp(40px, 4.5vw, 60px);
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-weight: 700;
                        font-size: clamp(0.75rem, 1vw, 1.1rem);
                        color: white;
                        font-family: var(--font-ui);
                        z-index: 10;
                        transition: all 2.5s cubic-bezier(0.4, 0.0, 0.2, 1);
                        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
                    }

                    .avatar-hp {
                        background: linear-gradient(135deg, #E24A4A 0%, #C41E3A 100%);
                        /* Initial position: Opponents quadrant (top-left) */
                        top: 18%;
                        left: 18%;
                    }

                    .avatar-hp.moved {
                        /* End position: Promoters quadrant (top-right) */
                        top: 18%;
                        left: 68%;
                        background: linear-gradient(135deg, #7ED321 0%, #5cb318 100%);
                        box-shadow: 0 0 20px rgba(126, 211, 33, 0.6), 0 4px 12px rgba(0,0,0,0.2);
                    }

                    .avatar-stefan {
                        background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
                        /* Initial position: Latent quadrant (bottom-left) */
                        top: 68%;
                        left: 25%;
                    }

                    .avatar-stefan.moved {
                        /* End position: Supporters quadrant (bottom-right) */
                        top: 68%;
                        left: 68%;
                        box-shadow: 0 0 20px rgba(74, 144, 226, 0.6), 0 4px 12px rgba(0,0,0,0.2);
                    }

                    .avatar-initial {
                        opacity: 0.7;
                    }

                    .avatar-initial.moved {
                        opacity: 1;
                    }

                    /* Movement Trails */
                    .movement-trail {
                        position: absolute;
                        pointer-events: none;
                        z-index: 5;
                    }

                    .trail-hp {
                        top: 22%;
                        left: 22%;
                        width: 50%;
                        height: 2px;
                        background: transparent;
                    }

                    .trail-hp.active {
                        background: linear-gradient(90deg, rgba(226, 74, 74, 0.3) 0%, rgba(126, 211, 33, 0.6) 100%);
                    }

                    .trail-stefan {
                        top: 72%;
                        left: 29%;
                        width: 43%;
                        height: 2px;
                        background: transparent;
                    }

                    .trail-stefan.active {
                        background: linear-gradient(90deg, rgba(158, 158, 158, 0.3) 0%, rgba(74, 144, 226, 0.6) 100%);
                    }

                    /* Arrow SVG Paths */
                    .arrow-svg {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 50%;
                        height: 50%;
                        pointer-events: none;
                        z-index: 5;
                        opacity: 0;
                        transition: opacity 0.3s ease;
                    }

                    /* Only show arrows when animation is active */
                    .arrow-svg.arrows-visible {
                        opacity: 1;
                    }

                    .arrow-path {
                        fill: none;
                        stroke-width: 2.5;
                        stroke-linecap: round;
                        stroke-dasharray: 300;
                        stroke-dashoffset: 300;
                        transition: stroke-dashoffset 2s cubic-bezier(0.4, 0.0, 0.2, 1);
                    }

                    .arrow-path.hp-path {
                        stroke: url(#gradient-hp);
                    }

                    .arrow-path.stefan-path {
                        stroke: url(#gradient-stefan);
                    }

                    .arrow-path.animated {
                        stroke-dashoffset: 0;
                    }

                    /* State Labels */
                    .state-label {
                        position: absolute;
                        font-size: clamp(0.65rem, 0.85vw, 1rem);
                        font-family: var(--font-ui);
                        font-weight: 600;
                        padding: 2px 8px;
                        border-radius: 4px;
                        opacity: 0;
                        transition: opacity 0.5s ease;
                    }

                    .state-label.visible {
                        opacity: 1;
                    }

                    .state-before {
                        top: 5%;
                        left: 5%;
                        background: rgba(0,0,0,0.1);
                        color: #666;
                    }

                    .state-after {
                        bottom: 5%;
                        right: 5%;
                        background: rgba(126, 211, 33, 0.2);
                        color: #388E3C;
                    }

                    /* Journey Section */
                    .journey-section {
                        display: flex;
                        flex-direction: column;
                        gap: clamp(12px, 1.5vh, 24px);
                    }

                    .journey-card {
                        background: rgba(255, 255, 255, 0.5);
                        border-radius: clamp(10px, 1vw, 16px);
                        padding: clamp(12px, 1.5vh, 24px) clamp(14px, 1.5vw, 24px);
                        flex: 1;
                        display: flex;
                        flex-direction: column;
                    }

                    .journey-card.hp-card {
                        border-left: 4px solid #E24A4A;
                    }

                    .journey-card.stefan-card {
                        border-left: 4px solid #4A90E2;
                    }

                    .journey-header {
                        display: flex;
                        align-items: center;
                        gap: clamp(8px, 1vw, 14px);
                        margin-bottom: clamp(10px, 1.2vh, 18px);
                    }

                    .journey-avatar {
                        width: clamp(36px, 3.5vw, 48px);
                        height: clamp(36px, 3.5vw, 48px);
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        color: white;
                        font-weight: 700;
                        font-size: clamp(0.7rem, 0.9vw, 1rem);
                        font-family: var(--font-ui);
                        flex-shrink: 0;
                        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
                    }

                    .journey-avatar.hp { background: linear-gradient(135deg, #E24A4A 0%, #C41E3A 100%); }
                    .journey-avatar.stefan { background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%); }

                    .journey-info .slide-subtitle {
                        font-size: clamp(1rem, 1.3vw, 1.6rem);
                        font-weight: 700;
                        margin: 0;
                        color: var(--text-color);
                    }

                    .journey-info span {
                        font-size: clamp(0.75rem, 0.95vw, 1.1rem);
                        color: #666;
                        font-family: var(--font-ui);
                    }

                    /* Timeline */
                    .journey-timeline {
                        flex: 1;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                    }

                    .timeline-track {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        position: relative;
                        padding: 0 clamp(4px, 0.5vw, 8px);
                    }

                    .timeline-bar {
                        position: absolute;
                        top: 50%;
                        left: clamp(4px, 0.5vw, 8px);
                        right: clamp(4px, 0.5vw, 8px);
                        height: 4px;
                        background: #ddd;
                        border-radius: 2px;
                        transform: translateY(-50%);
                        z-index: 1;
                    }

                    .timeline-progress {
                        position: absolute;
                        top: 50%;
                        left: clamp(4px, 0.5vw, 8px);
                        height: 4px;
                        border-radius: 2px;
                        transform: translateY(-50%);
                        z-index: 2;
                        width: 0%;
                        transition: width 3.5s cubic-bezier(0.4, 0.0, 0.2, 1);
                    }

                    .hp-card .timeline-progress {
                        background: linear-gradient(90deg, #DC3545 0%, #E24A4A 50%, #DC3545 100%);
                    }

                    .hp-card .timeline-progress.animated {
                        width: 100%;
                    }

                    .stefan-card .timeline-progress {
                        background: linear-gradient(90deg, #4A90E2 0%, #5BA3F5 50%, #4A90E2 100%);
                    }

                    .stefan-card .timeline-progress.animated {
                        width: 100%;
                    }

                    .timeline-milestone {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        z-index: 3;
                        position: relative;
                    }

                    .milestone-dot {
                        width: clamp(12px, 1.2vw, 18px);
                        height: clamp(12px, 1.2vw, 18px);
                        border-radius: 50%;
                        background: #ddd;
                        border: 2px solid white;
                        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
                        transition: all 0.5s ease;
                    }

                    .milestone-dot.active {
                        transform: scale(1.2);
                    }

                    .hp-card .milestone-dot.active {
                        background: #DC3545;
                        box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
                    }

                    .stefan-card .milestone-dot.active {
                        background: #4A90E2;
                        box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
                    }

                    /* Pulse animation for final milestone */
                    @keyframes pulseFinal {
                        0%, 100% { transform: scale(1.2); box-shadow: 0 0 10px currentColor; }
                        50% { transform: scale(1.4); box-shadow: 0 0 20px currentColor, 0 0 30px currentColor; }
                    }

                    .milestone-dot.final {
                        animation: pulseFinal 1s ease-in-out 3;
                    }

                    .hp-card .milestone-dot.final {
                        color: rgba(220, 53, 69, 0.5);
                    }

                    .stefan-card .milestone-dot.final {
                        color: rgba(74, 144, 226, 0.5);
                    }

                    .milestone-label {
                        font-size: clamp(0.6rem, 0.75vw, 0.9rem);
                        color: #888;
                        margin-top: 4px;
                        text-align: center;
                        font-family: var(--font-ui);
                        white-space: nowrap;
                    }

                    .milestone-label.active {
                        color: var(--text-color);
                        font-weight: 600;
                    }

                    .milestone-icon {
                        font-size: clamp(0.8rem, 1vw, 1.2rem);
                        margin-bottom: 2px;
                    }

                    /* Journey Result */
                    .journey-result {
                        margin-top: clamp(8px, 1vh, 14px);
                        padding: clamp(6px, 0.8vh, 12px) clamp(10px, 1vw, 16px);
                        border-radius: 6px;
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        opacity: 0;
                        transform: translateY(10px);
                        transition: all 0.5s ease 2s;
                    }

                    .journey-result.visible {
                        opacity: 1;
                        transform: translateY(0);
                    }

                    .hp-card .journey-result {
                        background: rgba(126, 211, 33, 0.15);
                        border: 1px solid rgba(126, 211, 33, 0.3);
                    }

                    .stefan-card .journey-result {
                        background: rgba(74, 144, 226, 0.15);
                        border: 1px solid rgba(74, 144, 226, 0.3);
                    }

                    .result-icon {
                        font-size: clamp(1rem, 1.3vw, 1.6rem);
                    }

                    .result-text {
                        font-size: clamp(0.75rem, 0.95vw, 1.1rem);
                        font-family: var(--font-ui);
                        color: var(--text-color);
                    }

                    /* Section Header Row with Button */
                    .section-header-row {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        gap: clamp(10px, 1.5vw, 20px);
                        margin-bottom: clamp(8px, 1vh, 16px);
                        flex-wrap: wrap;
                    }

                    .journey-header-row {
                        flex-shrink: 0;
                    }

                    .journey-section-title {
                        font-size: clamp(1.1rem, 1.5vw, 1.9rem);
                        font-weight: 600;
                        color: var(--text-color);
                    }

                    /* Section Trigger Buttons */
                    .section-trigger-btn {
                        background: linear-gradient(135deg, var(--accent-red) 0%, #a02828 100%);
                        color: white;
                        border: none;
                        padding: clamp(6px, 0.8vh, 12px) clamp(12px, 1.5vw, 24px);
                        border-radius: clamp(6px, 0.8vw, 12px);
                        font-family: var(--font-ui);
                        font-size: clamp(0.75rem, 0.9vw, 1.1rem);
                        font-weight: 600;
                        cursor: pointer;
                        transition: all 0.3s ease;
                        box-shadow: 0 3px 10px rgba(197, 48, 48, 0.3);
                        white-space: nowrap;
                    }

                    .section-trigger-btn:hover {
                        transform: translateY(-2px);
                        box-shadow: 0 5px 15px rgba(197, 48, 48, 0.4);
                    }

                    .section-trigger-btn:active {
                        transform: translateY(0);
                    }

                    .section-trigger-btn.running {
                        background: linear-gradient(135deg, #F5A623 0%, #d4920e 100%);
                        box-shadow: 0 3px 10px rgba(245, 166, 35, 0.3);
                        cursor: wait;
                        pointer-events: none;
                    }

                    .section-trigger-btn.activated {
                        background: linear-gradient(135deg, #7ED321 0%, #5cb318 100%);
                        box-shadow: 0 3px 10px rgba(126, 211, 33, 0.3);
                        cursor: pointer;
                    }

                    .section-trigger-btn.activated:hover {
                        transform: translateY(-2px);
                        box-shadow: 0 5px 15px rgba(126, 211, 33, 0.4);
                    }

                    .section-trigger-btn .btn-icon {
                        margin-right: 6px;
                    }

                    /* Matrix Button specific */
                    .matrix-btn {
                        background: linear-gradient(135deg, #E24A4A 0%, #c41e3a 100%);
                        box-shadow: 0 3px 10px rgba(226, 74, 74, 0.3);
                    }

                    .matrix-btn:hover {
                        box-shadow: 0 5px 15px rgba(226, 74, 74, 0.4);
                    }

                    /* Journey Button specific */
                    .journey-btn {
                        background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
                        box-shadow: 0 3px 10px rgba(74, 144, 226, 0.3);
                    }

                    .journey-btn:hover {
                        box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
                    }

                    /* Metrics Bar */
                    .metrics-bar {
                        display: flex;
                        justify-content: center;
                        gap: clamp(20px, 4vw, 60px);
                        margin-top: clamp(8px, 1vh, 16px);
                        opacity: 0;
                        transform: translateY(10px);
                        transition: all 0.5s ease 2.5s;
                    }

                    .metrics-bar.visible {
                        opacity: 1;
                        transform: translateY(0);
                    }

                    .metric-item {
                        text-align: center;
                    }

                    .metric-value {
                        font-size: clamp(1.3rem, 2vw, 2.5rem);
                        font-weight: 700;
                        color: var(--accent-red);
                    }

                    .metric-label {
                        font-size: clamp(0.7rem, 0.9vw, 1rem);
                        color: #666;
                        font-family: var(--font-ui);
                    }

                    /* Celebration Effects */
                    @keyframes celebratePulse {
                        0%, 100% { transform: scale(1); }
                        50% { transform: scale(1.1); }
                    }

                    .celebrate {
                        animation: celebratePulse 0.6s ease 2;
                    }

                    @keyframes confetti {
                        0% { transform: translateY(0) rotate(0deg); opacity: 1; }
                        100% { transform: translateY(-50px) rotate(360deg); opacity: 0; }
                    }

                    .confetti-particle {
                        position: absolute;
                        width: 8px;
                        height: 8px;
                        border-radius: 2px;
                        pointer-events: none;
                        opacity: 0;
                    }

                    .confetti-particle.active {
                        animation: confetti 1s ease-out forwards;
                    }

                    /* Responsive */
                    @media screen and (max-width: 1024px) {
                        .transform-content {
                            grid-template-columns: 1fr;
                            grid-template-rows: 1fr auto;
                        }

                        .matrix-wrapper-anim {
                            max-width: min(40vh, 100%);
                        }

                        .journey-section {
                            flex-direction: row;
                        }

                        .journey-card {
                            flex: 1;
                        }
                    }

                    @media screen and (max-width: 768px) {
                        .journey-section {
                            flex-direction: column;
                        }

                        .milestone-label {
                            font-size: clamp(0.5rem, 0.7vw, 0.8rem);
                        }
                    }

/* ============================================
   COMPREHENSIVE RESPONSIVE FIXES
   Ensures all content displays properly at:
   - 1024x768 (projector)
   - 1280x720 (HD)
   - 1920x1080 (Full HD)
   ============================================ */

/* === SLIDE 2: SCQA Framework === */
.scqa-slide {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding: clamp(12px, 2.5vh, 40px) clamp(12px, 3vw, 60px);
    box-sizing: border-box;
    overflow: hidden;
}

.scqa-slide .slide-title {
    font-size: clamp(1.8rem, 3.5vw, 4.5rem);
    flex-shrink: 0;
    margin-bottom: clamp(8px, 1.5vh, 20px);
}

.scqa-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: clamp(8px, 1.5vw, 24px);
    min-height: 0;
    overflow: auto;
}

.scqa-card {
    display: flex;
    flex-direction: column;
    padding: clamp(8px, 1.2vh, 16px) clamp(8px, 1.2vw, 16px);
    overflow: visible;
    min-height: 0;
    position: relative;
}

.scqa-badge {
    width: clamp(24px, 2.2vw, 42px);
    height: clamp(24px, 2.2vw, 42px);
    font-size: clamp(0.9rem, 1.3vw, 1.7rem);
    top: clamp(6px, 0.8vh, 12px);
    left: clamp(6px, 0.8vw, 12px);
}

.scqa-card-title {
    font-size: clamp(1.65rem, 2.4vw, 3.3rem);
    font-weight: 700;
    left: calc(clamp(6px, 0.8vw, 12px) + clamp(28px, 2.5vw, 48px));
    top: clamp(6px, 0.8vh, 12px);
    line-height: clamp(24px, 2.2vw, 42px);
}

.scqa-card-text {
    font-size: clamp(1.7rem, 2.4vw, 3.2rem);
    margin-top: clamp(45px, 5vh, 70px);
    line-height: 1.35;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    flex: 1;
}

/* === SLIDE 5: Stakeholder Matrix === */
.stakeholder-slide {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding: clamp(12px, 2.5vh, 40px) clamp(12px, 3vw, 60px);
    box-sizing: border-box;
    overflow: hidden;
}

.stakeholder-slide .slide-title {
    font-size: clamp(1.8rem, 3.5vw, 4.5rem);
    flex-shrink: 0;
    margin-bottom: clamp(8px, 1.5vh, 24px);
}

.matrix-content-wrapper {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(50%, 65%) minmax(30%, 35%);
    gap: clamp(12px, 2vw, 40px);
    min-height: 0;
    overflow: hidden;
    align-items: stretch;
}

.matrix-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 0;
    overflow: hidden;
}

.y-axis-container {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
    height: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-right: clamp(4px, 0.5vw, 12px);
}

.y-axis-label {
    font-size: clamp(0.85rem, 1.1vw, 1.5rem);
}

.matrix-grid-container {
    flex: 1;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.matrix-grid {
    flex: 1;
    max-height: none;
    aspect-ratio: auto;
    min-height: 0;
}

.x-axis-label {
    font-size: clamp(0.85rem, 1.1vw, 1.5rem);
    padding-top: clamp(4px, 0.8vh, 12px);
}

.quadrant {
    padding: clamp(8px, 1.5vh, 24px) clamp(6px, 1vw, 16px);
}

.quadrant-title {
    font-size: clamp(2rem, 3vw, 4rem);
    margin-bottom: clamp(2px, 0.5vh, 8px);
}

.quadrant-strategy {
    font-size: clamp(0.85rem, 1.1vw, 1.5rem);
}

.legend-section {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1.2vh, 18px);
    overflow-y: auto;
    min-height: 0;
}

.legend-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(6px, 0.8vw, 12px);
}

.legend-color {
    width: clamp(16px, 1.5vw, 28px);
    height: clamp(16px, 1.5vw, 28px);
    border-radius: clamp(2px, 0.3vw, 6px);
    flex-shrink: 0;
}

.legend-description {
    font-size: clamp(1.8rem, 2.4vw, 3.2rem);
    line-height: 1.4;
}

.goal-section {
    flex-shrink: 0;
    margin-top: clamp(8px, 1.5vh, 20px);
}

.key-message {
    font-size: clamp(1rem, 1.4vw, 1.9rem);
    text-align: center;
    padding: clamp(8px, 1.2vh, 16px) clamp(12px, 2vw, 24px);
    background: rgba(255, 255, 255, 0.5);
    border-radius: clamp(6px, 0.8vw, 12px);
}

/* === Stakeholder Cards inside .quadrant (Current Positions slide) === */
.quadrant .matrix-stakeholder-card {
    background: rgba(255, 255, 255, 0.95);
    border: clamp(1px, 0.12vw, 2px) solid var(--text-color);
    border-radius: clamp(4px, 0.4vw, 8px);
    padding: clamp(4px, 0.5vh, 8px) clamp(6px, 0.6vw, 10px);
    margin-top: clamp(4px, 0.5vh, 8px);
    width: 90%;
    max-width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.quadrant .matrix-stakeholder-card:hover {
    transform: none;
    box-shadow: none;
}

.quadrant .matrix-stakeholder-card.focus {
    border-width: clamp(2px, 0.15vw, 3px);
}

/* Stefan (Latent quadrant) - light blue */
.quadrant.latente .matrix-stakeholder-card.focus {
    background: rgba(173, 216, 230, 0.95);
    border-color: #4A90E2;
    box-shadow: 0 0.2vh 0.6vh rgba(74, 144, 226, 0.4);
}

/* Hans-Peter (Opponents quadrant) - light red */
.quadrant.gegner .matrix-stakeholder-card.focus {
    background: rgba(255, 182, 182, 0.95);
    border-color: #E24A4A;
    box-shadow: 0 0.2vh 0.6vh rgba(226, 74, 74, 0.4);
}

.quadrant .matrix-stakeholder-name {
    font-size: clamp(1.4rem, 1.8vw, 2.2rem);
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(2px, 0.3vw, 6px);
}

.quadrant .matrix-stakeholder-role {
    font-size: clamp(1.2rem, 1.5vw, 1.9rem);
    color: #666;
    line-height: 1.2;
    margin-top: clamp(1px, 0.2vh, 3px);
}

.quadrant .matrix-focus-badge {
    display: inline-block;
    background: #FFB300;
    color: white;
    font-size: clamp(0.45rem, 0.55vw, 0.7rem);
    font-weight: 700;
    padding: clamp(1px, 0.1vh, 2px) clamp(3px, 0.3vw, 5px);
    border-radius: clamp(2px, 0.2vw, 4px);
    white-space: nowrap;
}

/* Adjust quadrant layout when it contains stakeholder cards */
.quadrant:has(.matrix-stakeholder-card) {
    justify-content: flex-start;
    align-items: center;
    padding-top: clamp(8px, 1vh, 14px);
    gap: clamp(2px, 0.3vh, 6px);
}

/* === SLIDE 6: Stakeholder Matrix Positioned === */
.stakeholder-matrix-positioned {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding: clamp(10px, 2vh, 32px) clamp(12px, 2.5vw, 48px);
    box-sizing: border-box;
    overflow: hidden;
}

.stakeholder-matrix-positioned .slide-title {
    font-size: clamp(1.6rem, 3vw, 4rem);
    flex-shrink: 0;
}

.stakeholder-matrix-positioned .subtitle {
    font-size: clamp(1rem, 1.4vw, 1.8rem);
    flex-shrink: 0;
    margin-bottom: clamp(6px, 1.2vh, 16px);
}

.matrix-with-stakeholders {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.positioned-matrix-container {
    width: min(85%, calc(100vh - 150px));
    max-width: 100%;
    aspect-ratio: 1;
}

.positioned-y-axis {
    font-size: clamp(0.7rem, 0.95vw, 1.2rem);
    left: clamp(-24px, -2vw, -16px);
}

.positioned-x-axis {
    font-size: clamp(0.7rem, 0.95vw, 1.2rem);
    bottom: clamp(-24px, -2.5vh, -16px);
}

.positioned-quadrant {
    padding: clamp(22px, 3vh, 36px) clamp(6px, 0.8vw, 14px) clamp(6px, 0.8vw, 14px);
    gap: clamp(4px, 0.6vh, 10px);
}

.positioned-quadrant-label {
    font-size: clamp(0.55rem, 0.8vw, 1rem);
    top: clamp(4px, 0.6vh, 10px);
}

.matrix-stakeholder-card {
    padding: clamp(6px, 0.8vh, 12px) clamp(6px, 0.8vw, 12px);
}

.matrix-stakeholder-name {
    font-size: clamp(1.7rem, 2.2vw, 3rem);
}

.matrix-stakeholder-role {
    font-size: clamp(1.5rem, 1.9vw, 2.6rem);
}

.matrix-focus-badge {
    font-size: clamp(0.5rem, 0.65vw, 0.85rem);
    padding: clamp(1px, 0.15vh, 3px) clamp(4px, 0.4vw, 8px);
}

/* === SLIDES 7-8: Persona Slides === */
.persona-slide {
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(25%, 35%) minmax(60%, 75%);
    grid-template-rows: auto 1fr;
    padding: clamp(10px, 2vh, 32px) clamp(12px, 2.5vw, 48px);
    box-sizing: border-box;
    gap: clamp(10px, 1.5vw, 24px);
    overflow: hidden;
}

.persona-slide-header {
    grid-column: 1 / -1;
    flex-shrink: 0;
}

.persona-slide-title {
    font-size: clamp(1.6rem, 2.8vw, 3.8rem);
}

.persona-quadrant-indicator {
    padding: clamp(4px, 0.6vh, 10px) clamp(8px, 1vw, 16px);
}

.persona-quadrant-indicator .quadrant-label {
    font-size: clamp(0.9rem, 1.2vw, 1.6rem);
}

.quadrant-dot {
    width: clamp(10px, 1vw, 16px);
    height: clamp(10px, 1vw, 16px);
}

.persona-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: clamp(10px, 2vh, 24px);
    min-height: 0;
    overflow: hidden;
}

.persona-avatar-large {
    width: clamp(80px, 12vw, 180px);
    height: clamp(80px, 12vw, 180px);
    flex-shrink: 0;
}

.persona-name-large {
    font-size: clamp(1.6rem, 2.5vw, 3.5rem);
    margin-top: clamp(8px, 1.2vh, 16px);
}

.persona-role-text {
    font-size: clamp(1.8rem, 2.4vw, 3.2rem);
    text-align: center;
    padding: 0 clamp(4px, 0.5vw, 12px);
}

.persona-right {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.2vh, 18px);
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.persona-detail-card {
    padding: clamp(10px, 1.5vh, 20px) clamp(10px, 1.5vw, 20px);
    flex-shrink: 0;
}

.detail-card-title {
    font-size: clamp(2.4rem, 3.2vw, 4.4rem);
    font-weight: 900;
    margin-bottom: clamp(6px, 0.8vh, 12px);
}

.detail-card-content {
    font-size: clamp(2rem, 2.6vw, 3.6rem);
    line-height: 0.9;
}

.detail-card-content ul {
    margin: 0;
    padding-left: clamp(16px, 1.5vw, 24px);
}

.detail-card-content li {
    margin-bottom: clamp(4px, 0.5vh, 8px);
    line-height: 0.9;
}

/* === SLIDE 9: SOR-Game iframe === */
section:has(iframe[src*="sor-game"]) > div {
    width: 100% !important;
    height: 100vh !important;
    height: 100svh !important;
    display: flex !important;
    padding: 0 !important;
    margin: 0 !important;
}

section:has(iframe[src*="sor-game"]) iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    flex: 1 !important;
}

/* === SLIDES 10a-10b: Journey Tables === */
.journey-slide {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding: clamp(10px, 2vh, 28px) clamp(10px, 2vw, 40px);
    box-sizing: border-box;
    overflow: hidden;
}

.journey-slide .slide-header {
    flex-shrink: 0;
    margin-bottom: clamp(8px, 1.2vh, 18px);
}

.journey-slide .slide-title {
    font-size: clamp(1.4rem, 2.2vw, 3rem);
}

.journey-slide .persona-badge {
    padding: clamp(6px, 0.8vh, 12px) clamp(8px, 1vw, 16px);
}

.journey-slide .persona-avatar {
    width: clamp(32px, 4vw, 52px);
    height: clamp(32px, 4vw, 52px);
}

.journey-slide .persona-name {
    font-size: clamp(0.9rem, 1.2vw, 1.6rem);
}

.journey-slide .persona-role {
    font-size: clamp(0.75rem, 1vw, 1.3rem);
}

.journey-table-container {
    flex: 1;
    min-height: 0;
    overflow: auto;
}

.journey-table {
    width: 100%;
    table-layout: fixed;
}

.journey-table .phase-header-row th {
    padding: clamp(6px, 0.8vh, 14px) clamp(4px, 0.6vw, 12px);
    font-size: clamp(2rem, 2.8vw, 3.6rem);
}

.phase-name {
    padding: clamp(4px, 0.6vh, 10px) clamp(6px, 0.8vw, 14px);
    font-size: clamp(1.7rem, 2.2vw, 3rem);
    border-radius: clamp(8px, 1vw, 16px);
}

.phase-arrow {
    font-size: clamp(2rem, 2.6vw, 3.6rem);
}

.journey-table td {
    padding: clamp(6px, 0.8vh, 14px) clamp(6px, 0.8vw, 12px);
    font-size: clamp(1.7rem, 2.2vw, 3rem);
    vertical-align: top;
}

.row-label {
    font-size: clamp(1.6rem, 2vw, 2.8rem);
}

.row-label-icon {
    font-size: clamp(1.8rem, 2.2vw, 3rem);
}

.cell-content {
    gap: clamp(2px, 0.3vh, 5px);
}

.cell-item {
    font-size: clamp(1.6rem, 2vw, 2.8rem);
    line-height: 1.3;
}

.measure-badge {
    padding: clamp(4px, 0.5vh, 8px) clamp(6px, 0.8vw, 14px);
    font-size: clamp(1.4rem, 1.8vw, 2.4rem);
    max-width: 100%;
}

.marketing-type {
    padding: clamp(2px, 0.3vh, 5px) clamp(4px, 0.5vw, 10px);
    font-size: clamp(1.4rem, 1.8vw, 2.4rem);
    margin: clamp(1px, 0.15vh, 3px);
}

/* === SLIDES 11-12: Marketing Measure Slides === */
.stefan-measure-slide,
.hanspeter-measure-slide {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding: clamp(10px, 2vh, 28px) clamp(12px, 2.5vw, 48px);
    padding-bottom: clamp(40px, 5vh, 60px);
    box-sizing: border-box;
    overflow: hidden;
}

.stefan-measure-slide .slide-header,
.hanspeter-measure-slide .slide-header {
    flex-shrink: 0;
    margin-bottom: clamp(10px, 1.5vh, 20px);
    gap: clamp(10px, 1.5vw, 24px);
}

.stefan-measure-slide .slide-title,
.hanspeter-measure-slide .slide-title {
    font-size: clamp(1.4rem, 2.2vw, 2.8rem);
}

.stefan-measure-slide .slide-subtitle,
.hanspeter-measure-slide .slide-subtitle {
    font-size: clamp(0.9rem, 1.2vw, 1.5rem);
}

.stefan-measure-slide .persona-badge,
.hanspeter-measure-slide .persona-badge {
    padding: clamp(6px, 0.8vh, 12px) clamp(8px, 1vw, 16px);
}

.stefan-measure-slide .persona-avatar,
.hanspeter-measure-slide .persona-avatar {
    width: clamp(36px, 4vw, 56px);
    height: clamp(36px, 4vw, 56px);
}

.stefan-measure-slide .persona-name,
.hanspeter-measure-slide .persona-name {
    font-size: clamp(0.9rem, 1.2vw, 1.5rem);
}

.stefan-measure-slide .persona-role,
.hanspeter-measure-slide .persona-role {
    font-size: clamp(0.8rem, 1vw, 1.3rem);
}

.stefan-measure-slide .content-grid,
.hanspeter-measure-slide .content-grid {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(150px, 0.9fr) minmax(250px, 2fr) minmax(150px, 0.9fr);
    gap: clamp(10px, 1.5vw, 28px);
    min-height: 0;
    overflow: hidden;
}

.stefan-measure-slide .column,
.hanspeter-measure-slide .column {
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    gap: clamp(8px, 1.2vh, 18px);
}

.stefan-measure-slide .info-box,
.hanspeter-measure-slide .info-box {
    padding: clamp(10px, 1.5vh, 18px) clamp(8px, 1.2vw, 18px);
    flex-shrink: 0;
}

.stefan-measure-slide .box-title,
.hanspeter-measure-slide .box-title {
    font-size: clamp(1rem, 1.4vw, 1.8rem);
    margin-bottom: clamp(6px, 0.8vh, 12px);
}

.stefan-measure-slide .box-list,
.hanspeter-measure-slide .box-list {
    gap: clamp(4px, 0.6vh, 10px);
}

.stefan-measure-slide .box-list li,
.hanspeter-measure-slide .box-list li {
    font-size: clamp(1.1rem, 1.4vw, 1.7rem);
    line-height: 1.1;
}

.stefan-measure-slide .box-text,
.hanspeter-measure-slide .box-text {
    font-size: clamp(1.1rem, 1.4vw, 1.7rem);
    line-height: 1.1;
}

.stefan-measure-slide .image-column,
.hanspeter-measure-slide .dashboard-column {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.stefan-measure-slide .image-title,
.hanspeter-measure-slide .dashboard-title {
    font-size: clamp(1.1rem, 1.5vw, 1.9rem);
    flex-shrink: 0;
    margin-bottom: clamp(6px, 1vh, 14px);
}

.stefan-measure-slide .image-container,
.hanspeter-measure-slide .dashboard-container {
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.stefan-measure-slide .image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
}

.stefan-measure-slide .image-overlay-title {
    font-size: clamp(0.85rem, 1.1vw, 1.4rem);
}

.stefan-measure-slide .image-badge {
    font-size: clamp(0.75rem, 0.95vw, 1.2rem);
    padding: clamp(3px, 0.4vh, 6px) clamp(6px, 0.8vw, 12px);
}

.stefan-measure-slide .spec-label,
.hanspeter-measure-slide .spec-label {
    font-size: clamp(1.1rem, 1.4vw, 1.7rem);
}

.stefan-measure-slide .spec-value,
.hanspeter-measure-slide .spec-value {
    font-size: clamp(1.1rem, 1.4vw, 1.7rem);
    line-height: 1.1;
}

.stefan-measure-slide .spec-list li,
.hanspeter-measure-slide .spec-list li {
    font-size: clamp(1.1rem, 1.4vw, 1.7rem);
    line-height: 1.1;
}

.stefan-measure-slide .tag,
.hanspeter-measure-slide .tag {
    font-size: clamp(1.1rem, 1.4vw, 1.7rem);
    padding: clamp(3px, 0.4vh, 6px) clamp(6px, 0.8vw, 12px);
}

.stefan-measure-slide .spec-secondary,
.hanspeter-measure-slide .spec-secondary {
    font-size: clamp(1.1rem, 1.4vw, 1.7rem);
}

.stefan-measure-slide .impact-footer,
.hanspeter-measure-slide .impact-footer {
    flex-shrink: 0;
    margin-top: clamp(8px, 1.2vh, 16px);
    padding: clamp(8px, 1.2vh, 16px) clamp(12px, 1.5vw, 24px);
}

.stefan-measure-slide .impact-title,
.hanspeter-measure-slide .impact-title {
    font-size: clamp(1rem, 1.3vw, 1.7rem);
}

.stefan-measure-slide .impact-grid,
.hanspeter-measure-slide .impact-grid {
    font-size: clamp(0.85rem, 1.1vw, 1.4rem);
    gap: clamp(8px, 1vw, 16px);
}

/* Hans-Peter Dashboard specific */
.hanspeter-measure-slide .dashboard-header {
    padding: clamp(8px, 1vh, 14px) clamp(10px, 1.2vw, 18px);
}

.hanspeter-measure-slide .dashboard-header-title {
    font-size: clamp(0.9rem, 1.15vw, 1.45rem);
}

.hanspeter-measure-slide .dashboard-section-title {
    font-size: clamp(0.75rem, 0.95vw, 1.2rem);
    padding: clamp(3px, 0.4vh, 6px) clamp(6px, 0.8vw, 12px);
}

.hanspeter-measure-slide .module-name {
    font-size: clamp(0.75rem, 0.95vw, 1.2rem);
}

.hanspeter-measure-slide .module-status {
    font-size: clamp(0.7rem, 0.85vw, 1.1rem);
    padding: clamp(2px, 0.25vh, 4px) clamp(4px, 0.5vw, 8px);
}

.hanspeter-measure-slide .health-label {
    font-size: clamp(0.65rem, 0.8vw, 1rem);
}

.hanspeter-measure-slide .health-value {
    font-size: clamp(1rem, 1.3vw, 1.7rem);
}

.hanspeter-measure-slide .blocker-title {
    font-size: clamp(0.75rem, 0.95vw, 1.2rem);
}

.hanspeter-measure-slide .blocker-text {
    font-size: clamp(0.7rem, 0.9vw, 1.1rem);
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Projector resolution (1024x768) */
@media screen and (max-width: 1024px) {
    .scqa-card-text {
        font-size: clamp(1.6rem, 2.2vw, 2.8rem);
        line-height: 1.35;
    }

    .scqa-card-title {
        font-size: clamp(1.35rem, 1.8vw, 2.25rem);
        font-weight: 700;
    }

    .scqa-badge {
        width: clamp(22px, 2vw, 36px);
        height: clamp(22px, 2vw, 36px);
        font-size: clamp(0.8rem, 1.1vw, 1.4rem);
    }

    .persona-slide {
        grid-template-columns: 30% 70%;
    }

    .detail-card-content li {
        font-size: clamp(1.8rem, 2.4vw, 3rem);
        line-height: 0.9;
    }

    .stefan-measure-slide .content-grid,
    .hanspeter-measure-slide .content-grid {
        grid-template-columns: minmax(120px, 0.85fr) minmax(200px, 2fr) minmax(120px, 0.85fr);
        gap: clamp(8px, 1.2vw, 20px);
    }

    .positioned-matrix-container {
        width: min(90%, calc(100vh - 120px));
    }
}

/* HD resolution (1280x720) */
@media screen and (max-width: 1280px) and (max-height: 800px) {
    .journey-slide {
        padding: clamp(8px, 1.5vh, 20px) clamp(8px, 1.5vw, 28px);
    }

    .journey-table td {
        padding: clamp(4px, 0.6vh, 10px) clamp(4px, 0.6vw, 10px);
    }

    .persona-avatar-large {
        width: clamp(60px, 10vw, 140px);
        height: clamp(60px, 10vw, 140px);
    }
}

/* Small height screens */
@media screen and (max-height: 700px) {
    .scqa-slide,
    .stakeholder-slide,
    .stakeholder-matrix-positioned,
    .persona-slide,
    .journey-slide,
    .stefan-measure-slide,
    .hanspeter-measure-slide {
        padding-top: clamp(8px, 1.5vh, 16px);
        padding-bottom: clamp(8px, 1.5vh, 16px);
    }

    .scqa-slide .slide-title,
    .stakeholder-slide .slide-title,
    .stakeholder-matrix-positioned .slide-title,
    .journey-slide .slide-title {
        font-size: clamp(1.4rem, 2.5vw, 3rem);
        margin-bottom: clamp(4px, 0.8vh, 12px);
    }

    .persona-detail-card {
        padding: clamp(6px, 1vh, 14px) clamp(8px, 1.2vw, 16px);
    }

    .stefan-measure-slide .info-box,
    .hanspeter-measure-slide .info-box {
        padding: clamp(6px, 1vh, 12px) clamp(6px, 1vw, 14px);
    }
}

/* ============================================
   Slide 16: Usage of AI
   ============================================ */
.ai-usage-slide {
    height: 100vh;
    height: 100svh;
    display: flex;
    flex-direction: column;
    padding: clamp(30px, 4vh, 50px) clamp(40px, 5vw, 80px);
    font-family: var(--font-handwritten);
}

.ai-usage-slide .slide-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--accent-red);
    text-align: center;
    margin-bottom: clamp(30px, 4vh, 50px);
}

.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(16px, 2.5vw, 32px);
    flex: 1;
    align-content: center;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.ai-tool-card {
    background: rgba(255, 255, 255, 0.8);
    border: 3px solid var(--text-dark);
    border-radius: 16px;
    padding: clamp(20px, 2.5vh, 35px) clamp(15px, 2vw, 25px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(10px, 1.5vh, 18px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ai-tool-logo {
    width: clamp(60px, 8vw, 90px);
    height: clamp(60px, 8vw, 90px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-tool-logo svg {
    width: 100%;
    height: 100%;
}

.ai-tool-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.ai-tool-name {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 700;
    color: var(--text-dark);
}

.ai-tool-purpose {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    font-weight: 600;
    color: var(--accent-red);
    background: rgba(197, 48, 48, 0.1);
    padding: clamp(5px, 0.7vh, 10px) clamp(12px, 1.5vw, 20px);
    border-radius: 20px;
}

.ai-tool-desc {
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    color: #555;
}

.time-investment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.5vw, 20px);
    margin-top: clamp(25px, 3vh, 40px);
    background: linear-gradient(135deg, rgba(197, 48, 48, 0.1), rgba(197, 48, 48, 0.05));
    padding: clamp(15px, 2vh, 25px) clamp(30px, 4vw, 50px);
    border-radius: 16px;
    border: 2px solid rgba(197, 48, 48, 0.3);
}

.time-icon {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
}

.time-label {
    font-size: clamp(1.3rem, 1.8vw, 1.8rem);
    color: var(--text-dark);
}

.time-value {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: var(--accent-red);
}

/* Responsive for AI slide */
@media (max-width: 900px) {
    .ai-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .ai-tools-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SOURCES SLIDE (Simple)
   ======================================== */

.sources-slide-simple {
    min-height: 100vh;
    min-height: 100svh;
    padding: clamp(2rem, 4vh, 4rem) clamp(2rem, 5vw, 6rem);
    display: flex;
    flex-direction: column;
    background-color: var(--bg-beige);
}

.sources-slide-simple .slide-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: clamp(2rem, 4vh, 3rem);
}

.sources-list-simple {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vh, 1.5rem);
}

.sources-list-simple li {
    font-family: var(--font-handwritten);
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    color: var(--text-dark);
    line-height: 1.4;
}

.sources-list-simple .source-label {
    color: #555;
}

.sources-list-simple a {
    color: var(--accent-red);
    text-decoration: none;
}

.sources-list-simple a:hover {
    text-decoration: underline;
}
