        /* === Kleurenpalet: bijgewerkt op basis van visueel merkidentiteitsonderzoek === */
        /* Verschuiving: #0D0D0D → #121212 (voorkomt OLED-smearing), #FF6635 → #E07020 (amberoranje, Hermès-bereik) */
        :root {
            --navy-deep: #121212;
            --navy-mid: #1A1A1A;
            --navy-light: #262626;
            --ember: #E07020;
            --ember-hover: #F37022;
            --amber: #F5A623;
            --frost: #6AADCF;
            --white-warm: #F0F0F0;
            --gray-warm: #E0E0E0;
            --gray-light: #F0F0F0;
            --text-dark: #F0F0F0;
            --text-mid: #A0A0A0;
            --text-light: #F0F0F0;
            --text-muted: #707070;
            --glow: rgba(224, 112, 32, 0.12);
        }

        /* === Reset === */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 18px;
            font-weight: 500;
            line-height: 1.6;
            letter-spacing: 0.01em;
            color: var(--text-dark);
            background: var(--navy-deep);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Outfit', sans-serif;
            line-height: 1.12;
            letter-spacing: -0.02em;
        }

        img { max-width: 100%; height: auto; display: block; }
        a { color: inherit; text-decoration: none; }

        /* === Navigatie === */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 24px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.4s ease;
        }

        .nav.scrolled {
            background: rgba(13, 13, 13, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 16px 48px;
        }

        .nav-logo {
            font-family: 'Outfit', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-light);
            letter-spacing: -0.01em;
        }

        .nav-logo span { color: var(--ember); }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.01em;
            transition: color 0.2s;
        }

        .nav-links a:hover { color: var(--text-light); }

        .nav-cta {
            background: var(--ember) !important;
            color: white !important;
            padding: 10px 22px;
            border-radius: 5px;
            font-weight: 600 !important;
            transition: background 0.2s, transform 0.15s;
            cursor: pointer;
        }

        .nav-cta:hover {
            background: var(--ember-hover) !important;
            transform: translateY(-1px);
        }

        /* === Booking modal overlay === */
        .booking-overlay {
            position: fixed;
            inset: 0;
            background: rgba(13, 13, 13, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .booking-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .booking-modal {
            background: var(--navy-mid);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px;
            padding: 48px 44px;
            max-width: 480px;
            width: 90%;
            position: relative;
            transform: translateY(20px) scale(0.97);
            transition: transform 0.35s ease;
            text-align: center;
        }

        .booking-overlay.active .booking-modal {
            transform: translateY(0) scale(1);
        }

        .booking-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
            border: none;
            color: var(--text-muted);
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, color 0.2s;
        }

        .booking-close:hover {
            background: rgba(255,255,255,0.12);
            color: var(--text-light);
        }

        .booking-modal h3 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(22px, 3vw, 28px);
            color: var(--text-light);
            margin-bottom: 8px;
        }

        .booking-modal p {
            color: var(--text-muted);
            font-size: 15px;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .booking-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 32px;
        }

        .booking-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 24px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .booking-btn:hover {
            transform: translateY(-2px);
        }

        .booking-btn svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .booking-btn.primary {
            background: linear-gradient(135deg, var(--ember), var(--ember-hover));
            color: white;
            box-shadow: 0 4px 20px rgba(224, 112, 32, 0.3);
        }

        .booking-btn.primary:hover {
            box-shadow: 0 8px 32px rgba(224, 112, 32, 0.4);
        }

        .booking-btn.secondary {
            background: rgba(255,255,255,0.06);
            color: var(--text-light);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .booking-btn.secondary:hover {
            background: rgba(255,255,255,0.1);
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
        }

        /* Details in de modal */
        .booking-details {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .booking-detail-label {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--ember);
            margin-bottom: 4px;
        }

        .booking-detail-value {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* === Reel video modal === */
        .reel-overlay {
            position: fixed;
            inset: 0;
            background: rgba(4, 8, 16, 0.92);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .reel-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .reel-modal {
            width: 90%;
            max-width: 900px;
            position: relative;
            transform: translateY(20px) scale(0.97);
            transition: transform 0.35s ease;
        }

        .reel-overlay.active .reel-modal {
            transform: translateY(0) scale(1);
        }

        /* 16:9 verhouding voor de video */
        .reel-video-wrap {
            position: relative;
            padding-bottom: 56.25%;
            border-radius: 16px;
            overflow: hidden;
            background: #000;
            box-shadow: 0 24px 80px rgba(0,0,0,0.6);
        }

        .reel-video-wrap iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .reel-close {
            position: absolute;
            top: -48px;
            right: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            color: var(--text-light);
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .reel-close:hover {
            background: rgba(255,255,255,0.2);
        }

        .reel-caption {
            text-align: center;
            margin-top: 20px;
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            color: var(--text-muted);
            letter-spacing: 0.02em;
        }

        .reel-caption strong {
            color: var(--text-light);
        }

        /* Hamburger menu voor mobiel */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 101;
            background: none;
            border: none;
            padding: 4px;
        }

        .nav-hamburger span {
            width: 24px;
            height: 2px;
            background: var(--text-light);
            transition: all 0.3s;
            display: block;
        }

        /* === Hero met video achtergrond === */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: flex-end;
            padding: 0 48px 80px;
            overflow: hidden;
            background: var(--navy-deep);
        }

        /* Subpagina hero: korter dan homepage, gecentreerde content, ruimte voor nav */
        .hero-sub-page {
            min-height: 75vh;
            align-items: center;
            padding-top: 100px;
            padding-bottom: 60px;
        }

        /* Achtergrondafbeelding voor subpagina heroes */
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 1;
            overflow: hidden;
        }

        /* Video container */
        .hero-video-bg {
            position: absolute;
            inset: 0;
            z-index: 1;
            overflow: hidden;
        }

        .hero-video-bg .yt-frame {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 150vw;
            height: 150vh;
            min-width: 177.78vh;
            min-height: 56.25vw;
            transform: translate(-50%, -50%);
            pointer-events: none;
            border: none;
            opacity: 0;
            transition: opacity 1.5s ease;
        }

        .hero-video-bg .yt-frame.active {
            opacity: 1;
        }

        /* Donkere overlay zodat tekst leesbaar blijft */
        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            background:
                linear-gradient(to bottom, rgba(13,13,13,0.3) 0%, rgba(13,13,13,0.15) 40%, rgba(13,13,13,0.7) 75%, rgba(13,13,13,0.95) 100%),
                linear-gradient(to right, rgba(13,13,13,0.6) 0%, transparent 60%);
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-mid);
            margin-bottom: 20px;
        }

        .hero-tag::before {
            content: '';
            width: 32px;
            height: 2px;
            background: var(--text-mid);
        }

        .hero h1 {
            font-size: clamp(44px, 6.5vw, 84px);
            color: var(--text-light);
            max-width: 680px;
            margin-bottom: 24px;
        }

        .hero h1 .ember { color: var(--ember); }

        .hero-sub {
            font-size: 19px;
            color: var(--text-mid);
            max-width: 520px;
            margin-bottom: 40px;
            line-height: 1.6;
            font-weight: 400;
            letter-spacing: 0.01em;
        }

        .hero-buttons {
            display: flex;
            gap: 14px;
            align-items: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 600;
            padding: 14px 28px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
        }

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

        .btn-ember:hover {
            background: var(--ember-hover);
            transform: translateY(-1px);
            box-shadow: 0 8px 30px rgba(224, 112, 32, 0.25);
        }

        .btn-ghost {
            background: transparent;
            color: var(--text-muted);
            border: 1px solid rgba(255,255,255,0.12);
        }

        .btn-ghost:hover {
            color: var(--text-light);
            border-color: rgba(255,255,255,0.3);
        }

        /* Reel knop: opvallender dan ghost, met pulserende ring */
        .btn-reel {
            background: rgba(224, 112, 32, 0.12);
            color: #fff;
            border: 1.5px solid rgba(224, 112, 32, 0.5);
            position: relative;
        }

        .btn-reel:hover {
            background: rgba(224, 112, 32, 0.2);
            border-color: var(--ember);
        }

        /* Pulserende ring achter de play knop */
        .reel-pulse {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(224, 112, 32, 0.25);
            animation: reelPulse 2s ease-in-out infinite;
        }

        .btn-reel svg {
            position: relative;
            z-index: 1;
        }

        @keyframes reelPulse {
            0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.6; }
            50% { transform: translateY(-50%) scale(1.5); opacity: 0; }
        }

        /* Subtiele reel-knop linksonder in de hero — opent reel modal met geluid */
        .hero-reel-hint {
            position: absolute;
            bottom: 32px;
            left: 48px;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: none;
            border: 1px solid rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.5);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.05em;
            padding: 8px 16px;
            border-radius: 100px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .hero-reel-hint:hover {
            color: rgba(255,255,255,0.9);
            border-color: rgba(255,255,255,0.35);
            background: rgba(255,255,255,0.05);
        }

        .hero-reel-hint svg {
            width: 12px;
            height: 12px;
            fill: currentColor;
        }

        /* Scroll indicator onderaan de hero */
        .scroll-indicator {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            animation: pulse 2s infinite;
        }

        .scroll-indicator span {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-muted);
        }

        .scroll-line {
            width: 1px;
            height: 36px;
            background: linear-gradient(180deg, var(--ember), transparent);
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 1; }
        }

        /* === Logo carrousel === */
        .logos {
            background: var(--navy-mid);
            padding: 32px 0;
            border-top: 1px solid rgba(255,255,255,0.04);
            border-bottom: 1px solid rgba(255,255,255,0.04);
            overflow: hidden;
            position: relative;
        }

        .logos-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-muted);
            text-align: center;
            display: block;
            margin-bottom: 20px;
            padding: 0 48px;
        }

        /* Verloop aan de randen zodat logos zacht infaden */
        .logos::before,
        .logos::after {
            content: '';
            position: absolute;
            top: 0; bottom: 0;
            width: 100px;
            z-index: 2;
            pointer-events: none;
        }

        .logos::before {
            left: 0;
            background: linear-gradient(to right, var(--navy-mid), transparent);
        }

        .logos::after {
            right: 0;
            background: linear-gradient(to left, var(--navy-mid), transparent);
        }

        /* Statische logo rij — voor CEO bedrijven (geen carousel) */
        .logos-static {
            overflow: visible;
            position: relative;
        }

        .logos-static::before,
        .logos-static::after {
            display: none !important;
        }

        .logos-row-static {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 48px;
            padding: 0 48px;
        }

        .logos-row-static img {
            height: 32px;
            width: 120px;
            object-fit: contain;
            filter: brightness(0) invert(1);
            opacity: 0.45;
            transition: opacity 0.3s;
            flex-shrink: 0;
        }

        .logos-row-static img:hover {
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .logos-row-static {
                gap: 24px;
                flex-wrap: wrap;
            }
            .logos-row-static img {
                height: 24px;
                width: 90px;
            }
        }

        /* Schuifbaan: twee sets logos naast elkaar voor oneindige lus */
        .logos-track {
            display: flex;
            align-items: center;
            gap: 56px;
            animation: logoScroll 45s linear infinite;
            width: max-content;
        }

        .logos-track:hover {
            animation-play-state: paused;
        }

        /* Omgekeerde scroll richting voor tweede logo rij */
        .logos-track-reverse {
            animation: logoScrollReverse 45s linear infinite;
        }
        .logos-track-reverse:hover {
            animation-play-state: paused;
        }

        @keyframes logoScrollReverse {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        @keyframes logoScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Individuele logo's: brightness(0) invert(1) maakt elke kleur wit */
        .logos-track img {
            height: 36px;
            width: auto;
            object-fit: contain;
            filter: brightness(0) invert(1);
            opacity: 0.45;
            transition: opacity 0.3s;
            flex-shrink: 0;
        }

        .logos-track img:hover { opacity: 0.8; }

        /* === Featured at events strip === */
        .featured-at {
            background: var(--navy-mid);
            padding: 20px 48px 32px;
            text-align: center;
        }

        .featured-at-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .featured-at-list {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .featured-at-tag {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-muted);
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.06);
            padding: 6px 16px;
            border-radius: 20px;
            white-space: nowrap;
            transition: all 0.2s;
        }

        .featured-at-tag:hover {
            border-color: rgba(224, 112, 32, 0.25);
            color: var(--text-light);
        }

        .featured-at-tag.placeholder {
            border-style: dashed;
            opacity: 0.5;
        }

        /* === Sectie label (herbruikbaar) === */
        .section-label {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text-mid);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        /* === The Moat: wat Greg anders maakt === */
        .moat {
            background: var(--navy-mid);
            padding: 120px 48px 100px;
        }

        .moat-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .moat h2 {
            font-size: clamp(28px, 3.5vw, 44px);
            color: var(--text-dark);
            margin-bottom: 14px;
            max-width: 700px;
        }

        .moat-quote {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(22px, 3vw, 32px);
            font-weight: 600;
            line-height: 1.3;
            color: var(--text-dark);
            margin: 40px 0;
            padding-left: 24px;
            border-left: 3px solid rgba(255,255,255,0.12);
            max-width: 800px;
        }

        .moat-quote .ember { color: var(--text-light); font-style: normal; }

        .moat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 48px;
        }

        .moat-card {
            background: rgba(13,13,13,0.5);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px;
            padding: 36px 28px;
            transition: all 0.3s;
        }

        .moat-card:hover {
            border-color: var(--ember);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(224, 112, 32, 0.08);
        }

        .moat-card h3 {
            font-size: 18px;
            color: var(--text-dark);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .moat-card p {
            font-size: 15px;
            color: var(--text-mid);
            line-height: 1.7;
        }

        /* === Keynotes === */
        .keynotes {
            background: var(--navy-deep);
            padding: 110px 48px;
        }

        .keynotes-header {
            max-width: 1200px;
            margin: 0 auto 48px;
        }

        .keynotes-header h2 {
            font-size: clamp(30px, 3.5vw, 44px);
            color: var(--text-light);
            margin-bottom: 14px;
            max-width: 500px;
        }

        .keynotes-header p {
            font-size: 17px;
            color: var(--text-muted);
            max-width: 560px;
        }

        /* Keynote kaarten in horizontale indeling */
        .keynotes-list {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            gap: 16px;
        }

        .keynote-card {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 28px;
            padding: 32px 28px;
            background: var(--navy-mid);
            border: 1px solid rgba(255,255,255,0.04);
            border-radius: 8px;
            transition: all 0.3s;
        }

        .keynote-card:hover {
            border-color: rgba(224, 112, 32, 0.3);
            transform: translateX(6px);
        }

        .keynote-num {
            font-family: 'Outfit', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: rgba(255,255,255,0.12);
            line-height: 1;
            min-width: 56px;
        }

        .keynote-info h3 {
            font-size: 19px;
            color: var(--text-light);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .keynote-info p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.65;
            max-width: 600px;
        }

        .keynote-tag {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-mid);
            background: rgba(255,255,255,0.04);
            padding: 6px 14px;
            border-radius: 20px;
            white-space: nowrap;
            font-weight: 600;
        }

        /* === Bureau metadata strip onder keynote beschrijving === */
        .keynote-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }

        .keynote-meta-pill {
            font-size: 11px;
            font-weight: 500;
            color: rgba(255,255,255,0.45);
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
            padding: 4px 12px;
            border-radius: 100px;
            white-space: nowrap;
        }

        .keynote-meta-pill svg {
            width: 12px;
            height: 12px;
            vertical-align: -2px;
            margin-right: 4px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
        }

        /* Uitkomst pill — licht benadrukt */
        /* Uitkomst pill — subtiel wit i.p.v. oranje */
        .keynote-meta-pill.outcome {
            color: var(--text-light);
            border-color: rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.04);
        }

        /* Placeholder notitie onder keynote — zichtbaar voor Greg */
        .keynote-placeholder-note {
            font-size: 11px;
            color: var(--ember);
            opacity: 0.5;
            margin-top: 10px;
            font-style: italic;
            border-left: 2px solid rgba(224, 112, 32, 0.3);
            padding-left: 10px;
        }

        @media (max-width: 768px) {
            .keynote-meta {
                gap: 6px;
            }
            .keynote-meta-pill {
                font-size: 10px;
                padding: 3px 10px;
            }
        }

        /* === Live demo sectie === */
        /* Cinematic vol-breedte sectie met achtergrondbeeld */
        .live-demo {
            position: relative;
            overflow: hidden;
            min-height: 520px;
            display: flex;
            align-items: center;
        }

        /* Achtergrondbeeld volledige sectie */
        .demo-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .demo-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
        }

        /* Donker verloop over de foto zodat tekst leesbaar is */
        .demo-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                105deg,
                rgba(13, 13, 13, 0.92) 0%,
                rgba(13, 13, 13, 0.82) 40%,
                rgba(13, 13, 13, 0.45) 70%,
                rgba(13, 13, 13, 0.25) 100%
            );
        }


        .demo-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 48px;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 32px;
            width: 100%;
        }

        /* Label boven de kop */
        .demo-inner .section-label {
            margin-bottom: 0;
        }

        .demo-headline {
            display: flex;
            align-items: baseline;
            gap: 20px;
            flex-wrap: wrap;
        }

        .demo-headline h2 {
            font-size: clamp(36px, 4.5vw, 64px);
            color: var(--text-light);
            line-height: 1.05;
            letter-spacing: -0.03em;
        }

        /* Ember accent lijn naast de kop */
        .demo-headline::before {
            content: '';
            width: 4px;
            height: 56px;
            background: linear-gradient(to bottom, var(--ember), var(--amber));
            border-radius: 2px;
            flex-shrink: 0;
        }

        /* Tekst onder de kop in kolommen */
        .demo-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px 48px;
            max-width: 780px;
        }

        .demo-body p {
            font-size: 15px;
            color: rgba(242, 237, 232, 0.75);
            line-height: 1.7;
        }

        .demo-body .amber { color: var(--amber); font-weight: 500; }

        /* Tool badges onder de tekst */
        .demo-tools {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 8px;
        }

        .demo-tool {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-light);
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 6px 16px;
            border-radius: 20px;
            letter-spacing: 0.02em;
        }

        /* === Stories: drie momenten === */
        .stories {
            background: var(--navy-deep);
            padding: 110px 48px;
        }

        .stories-header {
            max-width: 1200px;
            margin: 0 auto 48px;
        }

        .stories-header h2 {
            font-size: clamp(30px, 3.5vw, 44px);
            color: var(--text-light);
            margin-bottom: 14px;
        }

        .stories-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .story-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            min-height: 480px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transition: transform 0.4s;
        }

        .story-card:hover { transform: translateY(-6px); }

        .story-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .story-card:hover img { transform: scale(1.05); }

        .story-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg,
                rgba(13,13,13,0.95) 0%,
                rgba(13,13,13,0.75) 30%,
                rgba(13,13,13,0.15) 55%,
                rgba(13,13,13,0.0) 70%
            );
        }

        .story-content {
            position: relative;
            z-index: 2;
            padding: 28px;
        }

        .story-tag {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-mid);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .story-content h3 {
            font-size: 20px;
            color: var(--text-light);
            margin-bottom: 10px;
            line-height: 1.25;
        }

        .story-content p {
            font-size: 14px;
            line-height: 1.65;
            color: rgba(242,237,232,0.65);
        }

        .story-lesson {
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid rgba(255,255,255,0.08);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-light);
            font-style: italic;
        }

        /* Teaser versie van story cards op homepage — compacter, zonder body tekst */
        .story-card-teaser {
            min-height: 340px;
            text-decoration: none;
            cursor: pointer;
        }

        .story-card-teaser .story-content {
            padding: 24px;
        }

        .story-card-teaser .story-content h3 {
            margin-bottom: 0;
        }

        /* "Read my story" link onder de kaarten */
        .stories-link {
            max-width: 1200px;
            margin: 36px auto 0;
            text-align: center;
        }

        .stories-link a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-light);
            transition: gap 0.2s;
            text-decoration: none;
        }

        .stories-link a:hover { gap: 12px; }

        .stories-link svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
        }

        /* === Transformation: voor en na === */
        .transformation {
            background: var(--navy-deep);
            padding: 110px 48px;
            text-align: center;
        }

        .transformation h2 {
            font-size: clamp(28px, 3.5vw, 42px);
            color: var(--text-dark);
            margin-bottom: 14px;
        }

        /* Transformatie: twee kaarten met geanimeerde pijl ertussen */
        .transform-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 32px;
            align-items: stretch;
            margin-top: 48px;
            max-width: 960px;
            margin-left: auto;
            margin-right: auto;
        }

        .transform-card {
            border-radius: 16px;
            padding: 36px 32px;
            text-align: left;
        }

        .transform-card.before {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
        }

        .transform-card.after {
            background: linear-gradient(145deg, rgba(224, 112, 32, 0.03), rgba(224, 112, 32, 0.08));
            border: 1px solid rgba(224, 112, 32, 0.18);
        }

        .transform-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 28px;
            padding-bottom: 16px;
            border-bottom: 2px solid;
        }

        .transform-card.before h3 { color: var(--text-mid); border-color: rgba(255,255,255,0.08); }
        .transform-card.after h3 { color: var(--ember); border-color: var(--ember); }

        .transform-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            font-size: 15px;
            line-height: 1.5;
        }

        .transform-item + .transform-item {
            border-top: 1px solid rgba(0,0,0,0.04);
        }

        .transform-card.before .transform-item { color: var(--text-mid); }
        .transform-card.after .transform-item { color: var(--text-dark); font-weight: 500; }

        /* Iconen voor de items */
        .transform-icon {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            margin-top: 1px;
        }

        .transform-card.before .transform-icon {
            background: rgba(90, 98, 117, 0.1);
            color: var(--text-mid);
        }

        .transform-card.after .transform-icon {
            background: rgba(224, 112, 32, 0.12);
            color: var(--ember);
        }

        /* Geanimeerde pijl in het midden */
        .transform-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
        }

        .transform-arrow-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--ember), var(--ember-hover));
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(224, 112, 32, 0.3), 0 0 40px rgba(224, 112, 32, 0.1);
            animation: arrowPulse 2.5s ease-in-out infinite;
            position: relative;
        }

        .transform-arrow-circle svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: white;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Pulserende ring om de pijl */
        .transform-arrow-circle::before {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 2px solid rgba(224, 112, 32, 0.2);
            animation: ringPulse 2.5s ease-in-out infinite;
        }

        @keyframes arrowPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(224, 112, 32, 0.3), 0 0 40px rgba(224, 112, 32, 0.1); }
            50% { transform: scale(1.06); box-shadow: 0 0 28px rgba(224, 112, 32, 0.4), 0 0 56px rgba(224, 112, 32, 0.15); }
        }

        @keyframes ringPulse {
            0%, 100% { inset: -6px; opacity: 0.6; }
            50% { inset: -12px; opacity: 0; }
        }

        /* === Testimonials — warm lichte sectie voor leesbaarheid === */
        .testimonials {
            background: #F0EDE8;
            padding: 110px 48px;
            position: relative;
            overflow: hidden;
        }

        /* Groot aanhalingsteken op de achtergrond — subtiel op licht */
        .testimonials::before {
            content: '\201C';
            position: absolute;
            top: -20px;
            right: 48px;
            font-family: 'Outfit', sans-serif;
            font-size: 320px;
            color: rgba(0, 0, 0, 0.03);
            line-height: 1;
            pointer-events: none;
        }

        .testimonials-header {
            max-width: 1200px;
            margin: 0 auto 56px;
        }

        /* Lichte sectie: sectie-label en kop in donkere kleuren */
        .testimonials .section-label {
            color: #888;
        }

        .testimonials .section-label::before {
            background: #888;
        }

        .testimonials-header h2 {
            font-size: clamp(30px, 3.5vw, 44px);
            color: #1E1E1E;
        }

        /* Testimonial grid: 3 kolommen op desktop */
        .test-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .test-card {
            background: var(--navy-deep);
            border-radius: 10px;
            padding: 32px 28px;
            border: 1px solid rgba(255,255,255,0.06);
            transition: border-color 0.3s, transform 0.3s;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .test-card:hover {
            border-color: rgba(224, 112, 32, 0.2);
            transform: translateY(-2px);
        }

        .test-quote {
            font-size: 16px;
            line-height: 1.75;
            color: rgba(255,255,255,0.8);
            margin-bottom: 24px;
            font-weight: 400;
        }

        .test-quote::before {
            content: '\201C';
            display: block;
            font-family: 'Outfit', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--text-mid);
            line-height: 1;
            margin-bottom: 12px;
            opacity: 0.5;
        }

        .test-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .test-author {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .test-role {
            font-size: 12px;
            color: var(--text-mid);
            margin-top: 2px;
        }

        /* Bedrijfslogo */
        .test-logo {
            height: 20px;
            width: auto;
            object-fit: contain;
            opacity: 0.4;
            filter: brightness(0) invert(1);
            flex-shrink: 0;
        }

        /* === Tijdlijn op My Story pagina === */
        .timeline {
            position: relative;
            padding-left: 40px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: rgba(255,255,255,0.08);
        }
        .timeline-item {
            position: relative;
            padding-bottom: 36px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 6px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--ember);
            border: 2px solid var(--navy-deep);
        }
        .timeline-year {
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--ember);
            letter-spacing: 1px;
            margin-bottom: 6px;
        }
        .timeline-text {
            font-size: 15px;
            line-height: 1.6;
            color: var(--text-mid);
        }
        .timeline-text strong {
            color: var(--text-dark);
            font-weight: 600;
        }

        /* === Statistieken === */
        .stats {
            background: var(--navy-deep);
            padding: 80px 48px;
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .stats-grid {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat { text-align: center; padding: 24px 0; }

        .stat-num {
            font-family: 'Outfit', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--navy-deep);
            letter-spacing: -0.03em;
            line-height: 1;
        }

        .stat-num .ember { color: var(--ember); font-size: 32px; }

        .stat-desc {
            font-size: 14px;
            color: var(--text-mid);
            margin-top: 6px;
            font-weight: 500;
        }

        /* === Over Greg === */
        .about {
            background: var(--navy-deep);
            padding: 110px 48px;
        }

        .about-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-photo {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
        }

        .about-photo img {
            border-radius: 8px;
            width: 100%;
            object-fit: cover;
            aspect-ratio: 3/4;
        }

        /* Accent overlay op de foto */
        .about-accent {
            position: absolute;
            bottom: 20px;
            left: 20px;
            z-index: 2;
            background: rgba(13, 13, 13, 0.85);
            backdrop-filter: blur(10px);
            padding: 16px 20px;
            border-radius: 6px;
            border-left: 3px solid var(--ember);
        }

        .about-accent-num {
            font-family: 'Outfit', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--ember);
        }

        .about-accent-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
        }

        .about-text h2 {
            font-size: clamp(28px, 3vw, 40px);
            color: var(--text-light);
            margin-bottom: 24px;
        }

        .about-text p {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .about-text p:first-of-type {
            font-size: 18px;
            color: var(--text-light);
            font-weight: 400;
        }

        .career-list {
            list-style: none;
            margin: 28px 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 24px;
        }

        .career-list li {
            font-size: 14px;
            color: var(--text-muted);
            padding-left: 16px;
            position: relative;
            line-height: 1.5;
        }

        .career-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 9px;
            width: 6px;
            height: 6px;
            background: var(--text-mid);
            border-radius: 50%;
        }

        .career-list li strong {
            color: var(--text-light);
            font-weight: 500;
        }

        .career-list li a {
            color: inherit;
            text-decoration: none;
            display: block;
            transition: color 0.2s;
        }

        .career-list li a:hover strong {
            color: var(--text-light);
        }

        .about-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--text-light);
            font-weight: 600;
            font-size: 15px;
            margin-top: 12px;
            transition: gap 0.2s;
        }

        .about-link:hover { gap: 10px; }

        /* === Atleet sectie === */
        .athlete {
            background: var(--navy-mid);
            padding: 80px 48px;
            border-top: 1px solid rgba(255,255,255,0.04);
        }

        .athlete-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 48px;
        }

        .athlete-label {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .athlete-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(106, 173, 207, 0.12), rgba(106, 173, 207, 0.04));
            border: 1px solid rgba(106, 173, 207, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .athlete-icon svg {
            width: 22px;
            height: 22px;
            fill: var(--frost);
        }

        .athlete-title {
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--frost);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .athlete-subtitle {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .athlete-stats {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            flex: 1;
        }

        .athlete-stat {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 10px;
            padding: 16px 22px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            flex: 1;
            min-width: 140px;
            transition: all 0.3s;
        }

        .athlete-stat:hover {
            border-color: rgba(106, 173, 207, 0.25);
            background: rgba(106, 173, 207, 0.04);
        }

        .athlete-stat-num {
            font-family: 'Outfit', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--text-light);
        }

        .athlete-stat-label {
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            text-align: center;
        }

        .athlete-link {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--frost);
            opacity: 0.7;
            transition: opacity 0.2s, gap 0.2s;
        }

        .athlete-link:hover {
            opacity: 1;
            gap: 10px;
        }

        @media (max-width: 768px) {
            .athlete { padding: 40px 24px; }
            .athlete-inner {
                flex-direction: column;
                gap: 24px;
                align-items: flex-start;
            }
            .athlete-stats {
                width: 100%;
            }
            .athlete-stat {
                min-width: 120px;
            }
        }

        /* === Foto galerij === */
        .gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            transition: all 0.6s;
            filter: grayscale(10%);
        }

        /* Iets andere positie voor foto's die te veel ingezoomd zijn */
        .gallery-item.zoom-out img {
            object-position: center 30%;
        }

        .gallery-item:hover img {
            transform: scale(1.04);
            filter: grayscale(0%);
        }

        /* === Podcast & Media sectie === */
        .media {
            background: var(--navy-deep);
            padding: 110px 48px;
        }

        .media-header {
            max-width: 1200px;
            margin: 0 auto 56px;
            text-align: center;
        }

        .media-header h2 {
            font-size: clamp(28px, 3.5vw, 42px);
            color: var(--text-light);
            margin-bottom: 8px;
        }

        .media-header p {
            color: var(--text-muted);
            font-size: 17px;
        }

        .media-sub-label {
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            max-width: 1200px;
            margin: 0 auto 20px;
        }

        .media-sub-label + .media-sub-label {
            margin-top: 56px;
        }

        .media-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .media-grid + .media-sub-label {
            margin-top: 56px;
        }

        /* Podcast kaarten: compacter, horizontaal layout */
        .media-grid.podcasts {
            grid-template-columns: 1fr 1fr;
        }

        .podcast-card {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--navy-mid);
            border-radius: 14px;
            padding: 20px 24px;
            text-decoration: none;
            color: inherit;
            border: 1px solid rgba(255,255,255,0.04);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .podcast-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.3);
        }

        .podcast-icon {
            flex-shrink: 0;
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--ember), var(--ember-hover));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .podcast-icon svg {
            width: 22px;
            height: 22px;
            fill: white;
        }

        .podcast-body {
            flex: 1;
            min-width: 0;
        }

        .podcast-body .media-title {
            font-size: 15px;
            margin-bottom: 4px;
        }

        .podcast-body .media-desc {
            font-size: 13px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .podcast-body .media-source {
            margin-top: 6px;
        }

        .media-card {
            background: var(--navy-mid);
            border-radius: 14px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(255,255,255,0.04);
        }

        .media-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.3);
        }

        /* === Press kit kaarten === */
        .presskit {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        /* Verborgen rij — toggle open/dicht */
        .presskit-extra {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            margin-top: 0;
            transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
        }

        .presskit-extra.open {
            max-height: 800px;
            opacity: 1;
            margin-top: 20px;
        }

        /* Toggle knop */
        .presskit-toggle {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            background: none;
            border: 1px solid rgba(255,255,255,0.08);
            padding: 10px 20px;
            border-radius: 100px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .presskit-toggle:hover {
            color: var(--text-light);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .presskit-toggle-arrow {
            width: 16px;
            height: 16px;
            transition: transform 0.3s;
        }

        .presskit-toggle.open .presskit-toggle-arrow {
            transform: rotate(180deg);
        }

        .presskit-card {
            background: var(--navy-mid);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 14px;
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .presskit-icon {
            width: 40px;
            height: 40px;
        }

        .presskit-icon svg {
            width: 40px;
            height: 40px;
            stroke: var(--frost);
        }

        .presskit-card h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 17px;
            color: var(--text-light);
        }

        .presskit-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .presskit-bio {
            font-size: 12px !important;
            background: rgba(255,255,255,0.03);
            border-radius: 8px;
            padding: 12px;
            border: 1px solid rgba(255,255,255,0.04);
        }

        .presskit-btn {
            display: inline-block;
            margin-top: auto;
            padding: 8px 20px;
            font-size: 13px;
            font-weight: 600;
            color: var(--frost);
            background: rgba(106, 173, 207, 0.08);
            border: 1px solid rgba(106, 173, 207, 0.2);
            border-radius: 8px;
            cursor: pointer;
            text-align: center;
            font-family: 'Inter', sans-serif;
            transition: all 0.2s;
            text-decoration: none;
            align-self: flex-start;
        }

        .presskit-btn:hover {
            background: rgba(106, 173, 207, 0.15);
            border-color: rgba(106, 173, 207, 0.35);
        }

        .presskit-topics {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .presskit-topics li {
            font-size: 12px;
            color: var(--text-muted);
            padding-left: 14px;
            position: relative;
            line-height: 1.5;
        }

        .presskit-topics li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 7px;
            width: 5px;
            height: 5px;
            background: var(--text-mid);
            border-radius: 50%;
        }

        @media (max-width: 1024px) {
            .presskit { grid-template-columns: repeat(2, 1fr); }
        }

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

        /* Video thumbnail met play knop overlay */
        .media-thumb {
            position: relative;
            aspect-ratio: 16/9;
            background: var(--navy-light);
            overflow: hidden;
        }

        .media-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .media-card:hover .media-thumb img {
            transform: scale(1.05);
        }

        .media-play {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.2);
            transition: background 0.3s;
        }

        .media-card:hover .media-play {
            background: rgba(0,0,0,0.1);
        }

        .media-play-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--ember);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(224, 112, 32, 0.4);
            transition: transform 0.3s;
        }

        .media-card:hover .media-play-btn {
            transform: scale(1.1);
        }

        .media-play-btn svg {
            width: 20px;
            height: 20px;
            fill: white;
            margin-left: 3px;
        }

        .media-body {
            padding: 22px 24px 26px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .media-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-mid);
        }

        .media-badge svg {
            width: 14px;
            height: 14px;
            fill: var(--text-mid);
        }

        .media-title {
            font-family: 'Outfit', sans-serif;
            font-size: 17px;
            font-weight: 600;
            color: var(--text-light);
            line-height: 1.4;
        }

        .media-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .media-source {
            font-size: 12px;
            color: var(--text-mid);
            margin-top: auto;
            padding-top: 8px;
        }

        /* === LinkedIn Insights feed === */
        .insights {
            background: var(--navy-deep);
            padding: 120px 48px;
        }

        .insights-header {
            max-width: 1200px;
            margin: 0 auto 48px;
        }

        .insights-header h2 {
            font-size: clamp(30px, 3.5vw, 44px);
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .insights-header p {
            font-size: 17px;
            color: var(--text-mid);
            max-width: 520px;
        }

        .insights-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .insight-card {
            background: rgba(26,26,26,0.8);
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.08);
            padding: 28px 24px 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: all 0.3s;
        }

        .insight-card:hover {
            border-color: rgba(224, 112, 32, 0.3);
            box-shadow: 0 8px 32px rgba(0,0,0,0.06);
            transform: translateY(-3px);
        }

        /* Koptekst met profielfoto en datum */
        .insight-meta {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .insight-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .insight-author {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .insight-date {
            font-size: 11px;
            color: var(--text-mid);
        }

        .insight-text {
            font-size: 14px;
            line-height: 1.65;
            color: var(--text-mid);
            display: -webkit-box;
            -webkit-line-clamp: 5;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .insight-text strong {
            color: var(--text-dark);
        }

        /* Interactie balk onderaan */
        .insight-engagement {
            display: flex;
            gap: 20px;
            padding-top: 12px;
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: auto;
        }

        .insight-engagement span {
            font-size: 12px;
            color: var(--text-mid);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .insight-engagement svg {
            width: 14px;
            height: 14px;
            fill: none;
            stroke: var(--text-mid);
            stroke-width: 1.5;
        }

        /* Prototype label bovenop de kaarten */
        .insight-proto-tag {
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--text-mid);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3px 10px;
            border-radius: 10px;
            align-self: flex-start;
        }

        /* Link naar LinkedIn profiel */
        .insights-link {
            max-width: 1200px;
            margin: 36px auto 0;
            text-align: center;
        }

        .insights-link a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-light);
            transition: gap 0.2s;
        }

        .insights-link a:hover { gap: 12px; }

        .insights-link svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        @media (max-width: 768px) {
            .insights { padding: 80px 24px; }
            .insights-grid { grid-template-columns: 1fr; }
        }

        /* === CTA sectie === */
        .cta {
            background: var(--navy-mid);
            padding: 110px 48px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        /* Warme gloed achter de CTA */
        .cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255,102,53,0.06) 0%, transparent 65%);
            pointer-events: none;
        }

        .cta-inner {
            max-width: 640px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta .section-label {
            justify-content: center;
        }

        .cta .section-label::before { display: none; }

        .cta h2 {
            font-size: clamp(30px, 4vw, 48px);
            color: var(--text-light);
            margin-bottom: 16px;
        }

        .cta p {
            font-size: 17px;
            color: var(--text-muted);
            margin-bottom: 36px;
            line-height: 1.65;
            font-weight: 300;
        }

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

        .cta .btn-ember {
            font-size: 17px;
            padding: 16px 36px;
        }

        /* Details onder de CTA knoppen */
        .cta-details {
            margin-top: 48px;
            display: flex;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .cta-detail { text-align: center; }

        .cta-detail-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        .cta-detail-value {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 14px;
            color: var(--text-light);
        }

        .cta-media-line {
            margin-top: 28px;
            font-size: 14px;
            color: var(--text-muted);
        }

        .cta-media-line a {
            color: var(--frost);
            font-weight: 600;
            border-bottom: 1px solid rgba(106, 173, 207, 0.3);
            transition: border-color 0.2s;
        }

        .cta-media-line a:hover {
            border-color: var(--frost);
        }

        /* === Footer === */
        .footer {
            background: var(--navy-deep);
            padding: 40px 48px;
            border-top: 1px solid rgba(255,255,255,0.04);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-left {
            font-size: 13px;
            color: var(--text-muted);
        }

        .footer-left a {
            color: var(--frost);
            transition: color 0.2s;
        }

        .footer-left a:hover { color: var(--text-light); }

        .footer-right {
            display: flex;
            gap: 24px;
            list-style: none;
        }

        .footer-right a {
            font-size: 13px;
            color: var(--text-muted);
            transition: color 0.2s;
        }

        .footer-right a:hover { color: var(--text-light); }

        /* === AI Chatbot widget === */
        .chatbot-fab {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 180;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--ember), var(--ember-hover));
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(224, 112, 32, 0.35), 0 0 0 0 rgba(224, 112, 32, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.25s, box-shadow 0.25s;
            animation: fabPulse 3s ease-in-out infinite;
        }

        .chatbot-fab:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 28px rgba(224, 112, 32, 0.45);
            animation: none;
        }

        .chatbot-fab svg {
            width: 28px;
            height: 28px;
            fill: white;
        }

        .chatbot-fab .fab-close {
            display: none;
        }

        .chatbot-fab.active .fab-open { display: none; }
        .chatbot-fab.active .fab-close { display: block; }

        @keyframes fabPulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(224, 112, 32, 0.35), 0 0 0 0 rgba(224, 112, 32, 0.3); }
            50% { box-shadow: 0 4px 20px rgba(224, 112, 32, 0.35), 0 0 0 12px rgba(224, 112, 32, 0); }
        }

        /* Chatvenster */
        .chatbot-panel {
            position: fixed;
            bottom: 100px;
            right: 28px;
            z-index: 179;
            width: 380px;
            max-height: 520px;
            background: var(--navy-mid);
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            transform: translateY(16px) scale(0.95);
            pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .chatbot-panel.active {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: all;
        }

        .chatbot-header {
            padding: 20px 24px;
            background: linear-gradient(135deg, rgba(224, 112, 32, 0.08), rgba(224, 112, 32, 0.02));
            border-bottom: 1px solid rgba(255,255,255,0.06);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .chatbot-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--ember), var(--amber));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 16px;
            color: white;
            flex-shrink: 0;
        }

        .chatbot-header-text h4 {
            font-size: 15px;
            color: var(--text-light);
            font-weight: 600;
            margin-bottom: 2px;
        }

        .chatbot-header-text span {
            font-size: 11px;
            color: var(--ember);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .chatbot-header-text span::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--ember);
            border-radius: 50%;
            animation: dotBlink 1.5s ease-in-out infinite;
        }

        @keyframes dotBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .chatbot-badge {
            margin-left: auto;
            font-size: 9px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            background: rgba(255,255,255,0.05);
            padding: 4px 10px;
            border-radius: 12px;
            font-weight: 600;
        }

        .chatbot-messages {
            flex: 1;
            padding: 24px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .chat-msg {
            max-width: 85%;
            padding: 12px 16px;
            border-radius: 14px;
            font-size: 14px;
            line-height: 1.55;
        }

        .chat-msg.bot {
            background: rgba(255,255,255,0.06);
            color: var(--text-light);
            border-bottom-left-radius: 4px;
            align-self: flex-start;
        }

        .chat-msg.user {
            background: linear-gradient(135deg, var(--ember), var(--ember-hover));
            color: white;
            border-bottom-right-radius: 4px;
            align-self: flex-end;
        }

        .chat-msg strong {
            color: var(--ember);
            font-weight: 600;
        }

        .chat-suggestions {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 4px;
        }

        .chat-suggestion {
            font-size: 12px;
            padding: 6px 12px;
            border-radius: 20px;
            border: 1px solid rgba(224, 112, 32, 0.25);
            color: var(--ember);
            background: rgba(224, 112, 32, 0.06);
            cursor: default;
        }

        .chatbot-input {
            padding: 16px 20px;
            border-top: 1px solid rgba(255,255,255,0.06);
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .chatbot-input input {
            flex: 1;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 10px 16px;
            font-size: 13px;
            color: var(--text-light);
            font-family: 'Inter', sans-serif;
            outline: none;
        }

        .chatbot-input input::placeholder {
            color: var(--text-muted);
        }

        .chatbot-input button {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: var(--ember);
            cursor: default;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.5;
        }

        .chatbot-input button svg {
            width: 16px;
            height: 16px;
            fill: white;
        }

        /* Prototype label bovenop chatbot */
        .chatbot-proto-label {
            position: absolute;
            top: -32px;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--amber);
            background: var(--navy-deep);
            border: 1px solid rgba(245, 166, 35, 0.3);
            padding: 4px 12px;
            border-radius: 12px;
        }

        @media (max-width: 480px) {
            .chatbot-panel {
                width: calc(100vw - 24px);
                right: 12px;
                bottom: 90px;
                max-height: 70vh;
            }
            .chatbot-fab {
                bottom: 20px;
                right: 20px;
            }
        }

        /* === Scroll animaties === */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-d1 { transition-delay: 0.1s; }
        .reveal-d2 { transition-delay: 0.2s; }
        .reveal-d3 { transition-delay: 0.3s; }

        /* === Responsief === */
        @media (max-width: 1024px) {
            /* Mobiele tekst verbetering: groter en meer ademruimte */
            body { font-size: 20px; line-height: 1.6; }

            .hero { padding: 0 28px 60px; }
            .hero-sub-page { padding-top: 80px; padding-bottom: 40px; min-height: 60vh; }
            .hero-content { max-width: 100%; }
            .hero h1 { max-width: 100%; }
            .hero-reel-hint { left: 28px; bottom: 24px; }

            .nav { padding: 16px 28px; }
            .nav-links { display: none; }
            .nav-hamburger { display: flex; }

            /* Mobiel menu als volledig scherm */
            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 0; left: 0; right: 0; bottom: 0;
                background: rgba(13, 13, 13, 0.97);
                backdrop-filter: blur(20px);
                justify-content: center;
                align-items: center;
                gap: 28px;
                z-index: 99;
            }

            .nav-links.open a {
                font-size: 18px;
                color: var(--text-light);
            }

            .moat-grid,
            .stories-grid {
                grid-template-columns: 1fr;
            }

            .story-card { min-height: 380px; }

            .demo-inner {
                padding: 80px 24px;
            }

            .demo-body {
                grid-template-columns: 1fr;
            }

            .about-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .career-list {
                grid-template-columns: 1fr;
            }

            .keynote-card {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .keynote-num { font-size: 32px; }
            .keynote-tag { justify-self: start; }

            .transform-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .transform-divider {
                padding: 0;
            }

            .transform-arrow-circle svg {
                transform: rotate(90deg);
            }

            .gallery {
                grid-template-columns: repeat(2, 1fr);
            }

            section, .moat, .stories, .keynotes, .live-demo,
            .testimonials, .stats, .about, .cta, .footer, .logos, .transformation, .media {
                padding-left: 28px;
                padding-right: 28px;
            }

            .media-grid.podcasts {
                grid-template-columns: 1fr;
            }

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

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

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

            .booking-details {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .booking-modal {
                padding: 36px 28px;
            }

            .reel-modal {
                width: 95%;
            }

            .reel-close {
                top: -40px;
            }
        }

        @media (max-width: 600px) {
            .hero h1 { font-size: 32px; }
            .hero-sub { font-size: 16px; }
            .hero-buttons { flex-direction: column; align-items: flex-start; }
            .stat-num { font-size: 36px; }
            .cta-details { gap: 24px; }
            .about-credentials { grid-template-columns: 1fr; }
            .demo-headline h2 { font-size: 32px; }
            .demo-tools { gap: 6px; }
            .demo-tool { font-size: 11px; padding: 5px 12px; }
        }

        /* === Premium Testimonial Componenten (gebaseerd op conversion-onderzoek) === */

        /* --- Hero Spotlight Testimonial: micro-quote direct onder hero --- */
        .hero-spotlight {
            text-align: center;
            padding: 48px 48px;
            background: var(--navy-deep);
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }

        .hero-spotlight .spotlight-quote {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(16px, 1.8vw, 20px);
            font-weight: 400;
            color: rgba(255,255,255,0.7);
            font-style: italic;
            max-width: 700px;
            margin: 0 auto 12px;
            line-height: 1.6;
        }

        .hero-spotlight .spotlight-author {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-light);
            letter-spacing: 0.02em;
        }

        .hero-spotlight .spotlight-role {
            font-size: 12px;
            color: var(--text-mid);
            margin-top: 2px;
        }

        /* --- Triple Pillar: Greg's unieke positionering visueel --- */
        .triple-pillar {
            padding: 80px 48px 72px;
            background: var(--navy-deep);
            text-align: center;
        }

        .triple-pillar-inner {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 48px;
            max-width: 820px;
            margin: 0 auto;
        }

        .pillar {
            flex: 1;
            text-align: center;
        }

        .pillar-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(224, 112, 32, 0.08);
            border-radius: 12px;
            border: 1px solid rgba(224, 112, 32, 0.15);
        }

        .pillar-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--ember);
        }

        .pillar-title {
            font-family: 'Outfit', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

        .pillar-sub {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.4;
        }

        .pillar-divider {
            width: 1px;
            height: 60px;
            background: rgba(255,255,255,0.08);
            margin-top: 12px;
            flex-shrink: 0;
        }

        .triple-pillar-tagline {
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-light);
            margin-top: 28px;
            letter-spacing: 0.02em;
            opacity: 0.8;
        }

        @media (max-width: 600px) {
            .triple-pillar { padding: 36px 20px 28px; }
            .triple-pillar-inner { gap: 24px; }
            .pillar-title { font-size: 15px; }
            .pillar-sub { font-size: 11px; }
            .pillar-divider { height: 48px; }
            .pillar-icon { width: 40px; height: 40px; }
            .pillar-icon svg { width: 20px; height: 20px; }
        }

        /* --- Showreel Preview: grote klikbare thumbnail onder hero --- */
        .showreel-preview {
            padding: 0 48px 20px;
            background: var(--navy-deep);
        }

        .showreel-preview-inner {
            max-width: 780px;
            margin: 0 auto;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 16 / 9;
            background: var(--navy-mid);
        }

        .showreel-thumb {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.55);
            transition: filter 0.4s, transform 0.4s;
        }

        .showreel-preview-inner:hover .showreel-thumb {
            filter: brightness(0.4);
            transform: scale(1.03);
        }

        /* Grote play knop — centraal, onmisbaar */
        .showreel-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
        }

        .showreel-play-btn {
            width: 72px;
            height: 72px;
            background: var(--ember);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 24px rgba(224, 112, 32, 0.35);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .showreel-preview-inner:hover .showreel-play-btn {
            transform: scale(1.1);
            box-shadow: 0 6px 32px rgba(224, 112, 32, 0.5);
        }

        .showreel-play-btn svg {
            width: 28px;
            height: 28px;
            fill: #fff;
            margin-left: 3px;
        }

        /* Label onder play knop */
        .showreel-label {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            z-index: 2;
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
        }

        /* Duur badge rechtsboven */
        .showreel-duration {
            position: absolute;
            top: 16px;
            right: 16px;
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            background: rgba(0,0,0,0.5);
            padding: 4px 10px;
            border-radius: 4px;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .showreel-preview { padding: 0 20px 16px; }
            .showreel-play-btn { width: 56px; height: 56px; }
            .showreel-play-btn svg { width: 22px; height: 22px; }
            .showreel-label { font-size: 12px; bottom: 14px; }
        }

        /* --- Editorial Testimonial: volledige breedte, premium layout met headshot --- */
        .editorial-testimonial {
            padding: 100px 48px;
            background: var(--navy-mid);
            position: relative;
            overflow: hidden;
        }

        .editorial-testimonial::before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 48px;
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 200px;
            color: rgba(224, 112, 32, 0.06);
            line-height: 1;
            pointer-events: none;
        }

        .editorial-inner {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }

        /* Headshot foto: groot, professioneel */
        .editorial-headshot {
            flex-shrink: 0;
            width: 140px;
            height: 140px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid rgba(255,255,255,0.08);
        }

        .editorial-headshot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(20%);
        }

        /* Placeholder headshot wanneer er nog geen foto is */
        .editorial-headshot.placeholder {
            background: linear-gradient(135deg, var(--navy-light), rgba(255,102,53,0.15));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .editorial-headshot.placeholder::after {
            content: '';
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
        }

        .editorial-content {
            flex: 1;
        }

        .editorial-quote {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: clamp(18px, 2vw, 24px);
            line-height: 1.7;
            color: rgba(255,255,255,0.85);
            margin-bottom: 24px;
            font-weight: 400;
        }

        .editorial-pull {
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-light);
            letter-spacing: 0.02em;
            margin-bottom: 16px;
            padding-left: 16px;
            border-left: 2px solid rgba(255,255,255,0.15);
        }

        .editorial-attribution {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .editorial-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .editorial-title {
            font-size: 13px;
            color: var(--text-mid);
            margin-top: 2px;
        }

        .editorial-logo {
            height: 22px;
            width: auto;
            object-fit: contain;
            opacity: 0.35;
            filter: brightness(0) invert(1);
            margin-left: auto;
        }

        /* --- Upgraded Testimonial Cards: lichte achtergrond met subtiele schaduw --- */
        .test-card-premium {
            background: #F8F6F3;
            border-radius: 10px;
            padding: 36px 28px 28px;
            border: 1px solid rgba(0,0,0,0.06);
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .test-card-premium:hover {
            border-color: rgba(224, 112, 32, 0.25);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }

        .test-card-premium .test-quote {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 16px;
            line-height: 1.75;
            color: #333;
            margin-bottom: 24px;
            font-weight: 400;
        }

        .test-card-premium .test-quote::before {
            content: '\201C';
            display: block;
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 48px;
            font-weight: 400;
            color: #CCC;
            line-height: 1;
            margin-bottom: 12px;
        }

        .test-card-premium .test-bottom {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 20px;
            border-top: 1px solid rgba(0,0,0,0.06);
        }

        /* Headshot in testimonial kaart */
        .test-headshot {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 1.5px solid rgba(0,0,0,0.08);
        }

        .test-headshot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Lichte achtergrond overrides voor auteur en rol */
        .test-card-premium .test-author {
            color: #1E1E1E;
        }

        .test-card-premium .test-role {
            color: #777;
        }

        /* Placeholder headshot in kaart */
        .test-headshot.placeholder {
            background: linear-gradient(135deg, #E8E8E8, rgba(224,112,32,0.12));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .test-headshot.placeholder::after {
            content: '';
            width: 22px;
            height: 22px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .test-card-premium .test-info {
            flex: 1;
        }

        .test-card-premium .test-logo {
            height: 20px;
            width: auto;
            object-fit: contain;
            opacity: 0.35;
            filter: brightness(0);
            flex-shrink: 0;
        }

        /* --- Objection Buster: testimonial vlak voor CTA --- */
        .objection-buster {
            padding: 96px 48px;
            background: var(--navy-deep);
            text-align: center;
            position: relative;
        }

        .objection-buster::before {
            content: '\201C';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 120px;
            color: rgba(224, 112, 32, 0.05);
            line-height: 1;
            pointer-events: none;
        }

        .objection-inner {
            max-width: 680px;
            margin: 0 auto;
        }

        .objection-quote {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: clamp(17px, 1.8vw, 21px);
            line-height: 1.7;
            color: rgba(255,255,255,0.8);
            margin-bottom: 24px;
            font-style: italic;
        }

        .objection-attribution {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
        }

        .objection-headshot {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            overflow: hidden;
            border: 1.5px solid rgba(255,255,255,0.1);
        }

        .objection-headshot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .objection-headshot.placeholder {
            background: linear-gradient(135deg, var(--navy-light), rgba(255,102,53,0.12));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .objection-headshot.placeholder::after {
            content: '';
            width: 20px;
            height: 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .objection-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            text-align: left;
        }

        .objection-title {
            font-size: 12px;
            color: var(--text-mid);
            text-align: left;
        }

        /* --- Book Teaser: "Coming Soon" banner --- */
        .book-teaser {
            padding: 96px 48px;
            background: var(--navy-mid);
        }

        .book-teaser-inner {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        /* Placeholder boek-omslag */
        .book-cover-placeholder {
            width: 120px;
            height: 168px;
            background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
            border: 1px solid rgba(224, 112, 32, 0.2);
            border-radius: 4px 12px 12px 4px;
            box-shadow: 6px 6px 20px rgba(0,0,0,0.4), inset 0 0 30px rgba(255,102,53,0.03);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 16px 12px;
            flex-shrink: 0;
            position: relative;
        }

        /* Subtiele "spine" lijn links */
        .book-cover-placeholder::before {
            content: '';
            position: absolute;
            left: 6px;
            top: 8px;
            bottom: 8px;
            width: 1px;
            background: rgba(255,102,53,0.12);
        }

        .book-cover-author {
            font-family: 'Outfit', sans-serif;
            font-size: 11px;
            font-weight: 600;
            color: rgba(255,255,255,0.3);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-align: center;
            line-height: 1.4;
        }

        .book-teaser-content {
            flex: 1;
        }

        .book-teaser-title {
            font-size: 24px;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .book-teaser-desc {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .book-teaser-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-light);
            border: 1px solid rgba(255,255,255,0.15);
            padding: 10px 20px;
            border-radius: 6px;
            transition: all 0.3s;
            text-decoration: none;
        }

        .book-teaser-btn:hover {
            background: rgba(255,255,255,0.05);
            border-color: rgba(255,255,255,0.3);
        }

        .book-teaser-btn svg {
            width: 16px;
            height: 16px;
        }

        @media (max-width: 600px) {
            .book-teaser { padding: 40px 20px; }
            .book-teaser-inner { flex-direction: column; text-align: center; gap: 24px; }
            .book-cover-placeholder { width: 100px; height: 140px; }
            .book-teaser-title { font-size: 20px; }
        }

        /* --- Contact pagina testimonials --- */
        .contact-testimonials {
            padding: 96px 48px;
            background: var(--navy-mid);
        }

        .contact-testimonials-inner {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .contact-test-card {
            background: var(--navy-deep);
            border-radius: 10px;
            padding: 28px 24px;
            border: 1px solid rgba(255,255,255,0.06);
        }

        .contact-test-quote {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255,255,255,0.75);
            margin-bottom: 20px;
            font-style: italic;
        }

        .contact-test-bottom {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .contact-test-headshot {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 1.5px solid rgba(255,255,255,0.08);
        }

        .contact-test-headshot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .contact-test-headshot.placeholder {
            background: linear-gradient(135deg, var(--navy-light), rgba(255,102,53,0.12));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-test-headshot.placeholder::after {
            content: '';
            width: 18px;
            height: 18px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .contact-test-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .contact-test-title {
            font-size: 11px;
            color: var(--text-mid);
            margin-top: 1px;
        }

        /* --- Responsive aanpassingen voor nieuwe testimonial componenten --- */
        @media (max-width: 900px) {
            .editorial-inner {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .editorial-headshot {
                width: 100px;
                height: 100px;
            }

            .editorial-pull {
                border-left: none;
                padding-left: 0;
                border-top: 2px solid rgba(255,255,255,0.15);
                padding-top: 12px;
            }

            .editorial-attribution {
                justify-content: center;
                flex-wrap: wrap;
            }

            .editorial-logo {
                margin-left: 0;
            }

            .contact-testimonials-inner {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-spotlight {
                padding: 36px 28px;
            }

            .editorial-testimonial {
                padding: 72px 28px;
            }

            .objection-buster {
                padding: 64px 28px;
            }

            .contact-testimonials {
                padding: 64px 28px;
            }
        }

        /* === Contact pagina: twee-kolom layout — CTA links, bewijs rechts === */
        .contact-page {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 48px 80px;
            background: var(--navy-deep);
        }

        .contact-page-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            width: 100%;
        }

        /* Linkerkolom: CTA en details */
        .contact-left h2 {
            font-size: clamp(28px, 3.5vw, 42px);
            color: var(--text-light);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        /* Rechterkolom: testimonials als sociaal bewijs */
        .contact-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-proof-card {
            background: var(--navy-mid);
            border-radius: 10px;
            padding: 24px;
            border: 1px solid rgba(255,255,255,0.06);
        }

        .contact-proof-quote {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255,255,255,0.7);
            margin-bottom: 16px;
            font-style: italic;
        }

        .contact-proof-bottom {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-proof-headshot {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 1.5px solid rgba(255,255,255,0.08);
        }

        .contact-proof-headshot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .contact-proof-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .contact-proof-title {
            font-size: 11px;
            color: var(--text-mid);
            margin-top: 1px;
        }

        /* Bedrijfslogo in contact proof kaarten */
        .contact-proof-logo {
            height: 18px;
            width: auto;
            object-fit: contain;
            opacity: 0.35;
            filter: brightness(0) invert(1);
            margin-left: auto;
        }

        /* Booking details binnen contact-left: 2 kolommen i.p.v. 4 */
        .contact-left .booking-details {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        /* Booking knoppen stapelen in smallere kolom */
        .contact-left .booking-actions {
            flex-direction: column;
            align-items: flex-start;
        }

        /* Responsive: stapelt op mobiel */
        @media (max-width: 1024px) {
            .contact-page { padding: 100px 28px 60px; }
            .contact-page-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .contact-left .booking-details {
                grid-template-columns: repeat(4, 1fr);
            }
            .contact-left .booking-actions {
                flex-direction: row;
            }
        }

        @media (max-width: 600px) {
            .contact-left .booking-details {
                grid-template-columns: repeat(2, 1fr);
            }
            .contact-left .booking-actions {
                flex-direction: column;
                align-items: stretch;
            }
        }

        /* === Video Testimonial — premium videobewijs sectie === */
        .video-testimonial {
            padding: 100px 48px;
            background: var(--navy-mid);
            position: relative;
            overflow: hidden;
        }

        .video-testimonial-header {
            max-width: 1200px;
            margin: 0 auto 48px;
        }

        .video-testimonial-header h2 {
            font-size: clamp(28px, 3vw, 40px);
            color: var(--text-dark);
        }

        .video-test-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        /* Individuele video testimonial kaart */
        .video-test-item {
            background: var(--navy-deep);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.06);
            transition: border-color 0.3s, transform 0.3s;
        }

        .video-test-item:hover {
            border-color: rgba(224, 112, 32, 0.2);
            transform: translateY(-2px);
        }

        /* Video thumbnail gebied met afspeelknop */
        .video-test-thumb {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            cursor: pointer;
        }

        .video-test-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6);
            transition: filter 0.3s, transform 0.4s;
        }

        .video-test-item:hover .video-test-thumb img {
            filter: brightness(0.5);
            transform: scale(1.03);
        }

        /* Afspeelknop overlay */
        .video-test-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 64px;
            height: 64px;
            background: rgba(224, 112, 32, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s, background 0.3s;
        }

        .video-test-play svg {
            width: 22px;
            height: 22px;
            fill: white;
            margin-left: 3px;
        }

        .video-test-item:hover .video-test-play {
            transform: translate(-50%, -50%) scale(1.1);
            background: var(--ember);
        }

        /* Duur badge op video */
        .video-test-duration {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(0,0,0,0.7);
            color: white;
            font-size: 12px;
            font-weight: 500;
            padding: 3px 8px;
            border-radius: 4px;
            letter-spacing: 0.02em;
        }

        /* Placeholder label op video */
        .video-test-placeholder-label {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(224, 112, 32, 0.15);
            color: var(--ember);
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 4px;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        /* Quote en attributie onder de video */
        .video-test-body {
            padding: 24px 24px 28px;
        }

        .video-test-pull {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 16px;
            line-height: 1.6;
            color: rgba(255,255,255,0.75);
            font-style: italic;
            margin-bottom: 20px;
        }

        .video-test-attribution {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 16px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .video-test-headshot {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 1.5px solid rgba(255,255,255,0.1);
        }

        .video-test-headshot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-test-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .video-test-title {
            font-size: 12px;
            color: var(--text-mid);
            margin-top: 2px;
        }

        .video-test-logo {
            height: 18px;
            width: auto;
            object-fit: contain;
            opacity: 0.35;
            filter: brightness(0) invert(1);
            margin-left: auto;
            flex-shrink: 0;
        }

        /* Responsive voor video testimonials */
        @media (max-width: 900px) {
            .video-test-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .video-testimonial {
                padding: 70px 28px;
            }
        }

        /* === #1: Micro-testimonials onder moat kaarten — "Prove It" principe === */
        .moat-card-proof {
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px solid rgba(255,255,255,0.06);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .moat-card-proof-headshot {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .moat-card-proof-headshot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .moat-card-proof-text {
            font-size: 13px;
            line-height: 1.5;
            color: rgba(255,255,255,0.5);
            font-style: italic;
        }

        .moat-card-proof-author {
            font-size: 11px;
            color: var(--text-light);
            font-style: normal;
            font-weight: 600;
            margin-top: 2px;
        }

        /* === #2: Statistisch sociaal bewijs balk — precieze nummers === */
        .social-proof-bar {
            padding: 72px 48px;
            background: var(--navy-deep);
            border-top: 1px solid rgba(255,255,255,0.04);
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }

        .social-proof-inner {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .social-proof-stat {
            text-align: center;
        }

        .social-proof-num {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(28px, 3vw, 38px);
            font-weight: 700;
            color: var(--text-light);
            letter-spacing: -0.02em;
            line-height: 1;
        }

        .social-proof-label {
            font-size: 13px;
            color: var(--text-mid);
            margin-top: 8px;
            letter-spacing: 0.02em;
        }

        .social-proof-source {
            font-size: 10px;
            color: var(--text-muted);
            margin-top: 4px;
            font-style: italic;
        }

        /* === "As Featured At" evenementen strip — bureau-klaar === */
        .featured-events {
            padding: 56px 48px;
            background: var(--navy-mid);
            text-align: center;
        }

        .featured-events-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-muted);
            margin-bottom: 18px;
        }

        .featured-events-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 900px;
            margin: 0 auto;
        }

        .featured-event-pill {
            font-size: 13px;
            font-weight: 500;
            color: rgba(255,255,255,0.55);
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 8px 18px;
            border-radius: 100px;
            white-space: nowrap;
            transition: border-color 0.3s, color 0.3s;
        }

        .featured-event-pill:hover {
            border-color: rgba(255, 255, 255, 0.2);
            color: rgba(255,255,255,0.75);
        }

        /* Placeholder pill met stippellijn */
        .featured-event-pill.placeholder {
            border-style: dashed;
            color: var(--text-mid);
            font-size: 11px;
            font-weight: 600;
            opacity: 0.6;
        }

        /* === #5: "As Heard On" media balk === */
        .media-logos {
            padding: 40px 48px;
            background: var(--navy-deep);
            text-align: center;
        }

        .media-logos-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .media-logos-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            max-width: 800px;
            margin: 0 auto;
        }

        .media-logo-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.01em;
            opacity: 0.5;
            transition: opacity 0.3s;
        }

        .media-logo-item:hover {
            opacity: 0.8;
        }

        .media-logo-item svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
            flex-shrink: 0;
        }

        /* === #6: Thought Leader Endorsement — premium volledige breedte === */
        .thought-leader {
            padding: 80px 48px;
            background: var(--navy-mid);
            text-align: center;
            position: relative;
        }

        .thought-leader-inner {
            max-width: 700px;
            margin: 0 auto;
        }

        .thought-leader-quote {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: clamp(22px, 2.5vw, 32px);
            line-height: 1.6;
            color: rgba(255,255,255,0.85);
            font-weight: 400;
            margin-bottom: 32px;
        }

        .thought-leader-attribution {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .thought-leader-headshot {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid rgba(255,255,255,0.1);
        }

        .thought-leader-headshot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .thought-leader-name {
            font-family: 'Outfit', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            text-align: left;
        }

        .thought-leader-title {
            font-size: 13px;
            color: var(--text-mid);
            text-align: left;
            margin-top: 2px;
        }

        .thought-leader-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-mid);
            margin-bottom: 24px;
            padding: 6px 14px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 4px;
        }

        @media (max-width: 768px) {
            .social-proof-inner {
                gap: 32px;
            }

            .featured-events {
                padding: 28px 20px;
            }

            .featured-events-row {
                gap: 8px;
            }

            .featured-event-pill {
                font-size: 11px;
                padding: 6px 14px;
            }

            .media-logos {
                padding: 32px 28px;
            }

            .media-logos-row {
                gap: 24px;
            }

            .thought-leader {
                padding: 60px 28px;
            }

            .moat-card-proof {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
        }

        /* === Beweging uitzetten als gebruiker dat wil === */
        @media (prefers-reduced-motion: reduce) {
            .reveal { opacity: 1; transform: none; transition: none; }
            html { scroll-behavior: auto; }
            .hero-video-bg iframe { transition: none; }
            .story-card img { transition: none; }
        }
