﻿
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --dark-bg: #0f0f23;
            --darker-bg: #0a0a16;
            --primary-blue: #3b82f6;
            --light-blue: #60a5fa;
            --purple: #a855f7;
            --pink: #ec4899;
            --text-light: #e2e8f0;
            --text-white: #ffffff;
            --gradient-1: linear-gradient(135deg, var(--primary-blue) 0%, var(--purple) 100%);
            --gradient-2: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }
        
        /* Animated background grid */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(168, 85, 247, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(168, 85, 247, 0.08) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: grid 20s linear infinite;
            z-index: -1;
        }
        
        @keyframes grid {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        
        /* Scrollbar styling */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--darker-bg);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--pink);
            border-radius: 5px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(15, 15, 35, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(168, 85, 247, 0.2);
        }
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-white);
        }
        
        .logo-name {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 600;
            position: relative;
        }
        
        .logo-part {
            position: relative;
            display: inline-flex;
            align-items: center;
        }
        
        .highlight-box {
            position: absolute;
            background: rgba(236, 72, 153, 0.15);
            border: 2px solid var(--pink);
            border-radius: 0.5rem;
            width: 53px;
            height: 45px;
            filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.5));
            left: -5px;
        }
        
        .highlight-box.blue {
            background: rgba(96, 165, 250, 0.15);
            border: 2px solid var(--light-blue);
            filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.5));
            width: 33px;
        }
        
        .logo-full-text {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
        }
        
        .logo-full-text .highlight-letter {
            font-weight: 800;
            font-size: 2.2rem;
            line-height: 1;
        }
        
        .logo-full-text .highlight-a {
            color: var(--pink);
        }
        
        .logo-full-text .highlight-i {
            color: var(--light-blue);
        }
        
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Landing Section */
        .landing-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding-top: 100px;
            background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
        }
        
        .landing-content {
            text-align: center;
            z-index: 2;
            position: relative;
            max-width: 800px;
        }
        
        .main-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            color: var(--text-white);
            line-height: 1.2;
            font-weight: 700;
        }
        
        .subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 2.5rem;
            background: rgba(236, 72, 153, 0.15);
            border: 2px solid var(--pink);
            border-radius: 50px;
            color: var(--text-white);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 700;
            transition: all 0.3s ease;
            filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.4));
            cursor: pointer;
        }
        
        .cta-button:hover {
            transform: scale(1.05);
            background: rgba(236, 72, 153, 0.25);
            filter: drop-shadow(0 0 30px rgba(236, 72, 153, 0.6));
        }
        
        .cta-button svg {
            width: 20px;
            height: 20px;
        }
        
        /* Question Section */
        .question-section {
            display: none;
            min-height: 100vh;
            padding: 120px 2rem 80px;
        }
        
        .question-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .progress-bar {
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            margin-bottom: 60px;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: var(--gradient-2);
            border-radius: 3px;
            transition: width 0.3s ease;
            width: 0%;
        }
        
        .question-number {
            font-size: 14px;
            color: var(--pink);
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .question-text {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            margin-bottom: 50px;
            line-height: 1.3;
            color: var(--text-white);
        }
        
        /* Unified selectable options styling */
        .options-grid,
        .checkbox-grid,
        .radio-container,
        .answer-options {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .selectable-option {
            position: relative;
            padding: 20px 30px;
            background: rgba(168, 85, 247, 0.1);
            border: 3px solid rgba(168, 85, 247, 0.2);
            border-radius: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 20px;
            font-weight: 400;
            color: var(--text-white);
            user-select: none;
            display: flex;
            align-items: center;
        }
        
        .selectable-option:hover {
            transform: translateY(-2px);
            border-color: var(--purple);
            background: rgba(168, 85, 247, 0.15);
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
        }
        
        .selectable-option.selected {
            background: rgba(236, 72, 153, 0.15);
            border-color: var(--pink);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
        }
        
        .selectable-option.selected:hover {
            background: rgba(236, 72, 153, 0.2);
            border-color: var(--pink);
            box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
        }
        
        /* Hide all input elements */
        .selectable-option input[type="checkbox"],
        .selectable-option input[type="radio"] {
            display: none;
        }
        
        /* Multi-column layout for checkbox questions */
        .checkbox-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
        }
        
        .checkbox-grid .selectable-option {
            padding: 15px 20px;
            font-size: 18px;
        }
        
        /* Anders velden */
        .andere-taken-container {
            margin-top: 20px;
        }
        
        .anders-input-container {
            position: relative;
            display: flex;
            gap: 10px;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .anders-input {
            flex: 1;
            padding: 15px 20px;
            padding-right: 50px;
            background: rgba(168, 85, 247, 0.1);
            border: 3px solid rgba(168, 85, 247, 0.2);
            border-radius: 1rem;
            color: var(--text-white);
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .anders-input.saved {
            background: rgba(236, 72, 153, 0.15);
            border-color: var(--pink);
        }
        
        .anders-input:focus {
            outline: none;
            border-color: var(--purple);
            background: rgba(168, 85, 247, 0.15);
        }
        
        .edit-anders-btn, .delete-anders-btn {
            padding: 8px 16px;
            background: rgba(168, 85, 247, 0.15);
            border: 2px solid var(--purple);
            border-radius: 50px;
            color: var(--text-white);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .delete-anders-btn {
            background: rgba(236, 72, 153, 0.15);
            border-color: var(--pink);
        }
        
        .edit-anders-btn:hover, .delete-anders-btn:hover {
            transform: scale(1.05);
            opacity: 0.8;
        }
        
        .add-anders-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: rgba(168, 85, 247, 0.15);
            border: 2px solid var(--purple);
            border-radius: 50px;
            color: var(--text-white);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .add-anders-btn:hover {
            background: rgba(168, 85, 247, 0.25);
            transform: scale(1.05);
        }
        
        /* Vraag 2/3 - Details per taak */
        .task-details-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .task-detail-row {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 30px;
            align-items: center;
        }
        
        .task-name-box {
            background: rgba(236, 72, 153, 0.1);
            border: 2px solid var(--pink);
            border-radius: 1rem;
            padding: 15px 25px;
        }
        
        .task-name {
            font-weight: 700;
            color: var(--text-white);
            font-size: 22px;
        }
        
        .detail-input-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        
        .detail-input-group label {
            font-size: 14px;
            color: var(--text-light);
            white-space: nowrap;
        }
        
        .detail-input {
            width: 80px;
            padding: 10px 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 0.5rem;
            color: var(--text-white);
            font-size: 18px;
            text-align: center;
        }
        
        .detail-input:focus {
            outline: none;
            border-color: var(--purple);
            background: rgba(255, 255, 255, 0.1);
        }
        
        .input-label {
            text-align: center;
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 5px;
        }
        
        /* Vraag 3 - Radio met toelichting */
        .waarom-textarea {
            width: 100%;
            min-height: 120px;
            padding: 15px 20px;
            background: rgba(168, 85, 247, 0.1);
            border: 3px solid rgba(168, 85, 247, 0.2);
            border-radius: 1rem;
            color: var(--text-white);
            font-size: 16px;
            resize: vertical;
            margin-top: 20px;
        }
        
        .waarom-textarea:focus {
            outline: none;
            border-color: var(--purple);
            background: rgba(168, 85, 247, 0.15);
        }
        
        /* Slider voor vraag 9 en 10 */
        .slider-container {
            margin: 40px 0;
            padding: 30px;
            background: rgba(168, 85, 247, 0.1);
            border: 3px solid rgba(168, 85, 247, 0.2);
            border-radius: 1rem;
        }
        
        .slider-labels {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .slider {
            width: 100%;
            height: 8px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.2);
            outline: none;
            -webkit-appearance: none;
        }
        
        .slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: var(--pink);
            cursor: pointer;
            box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
        }
        
        .slider::-moz-range-thumb {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: var(--pink);
            cursor: pointer;
            box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
        }
        
        .slider-value {
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            color: var(--pink);
            margin-top: 20px;
        }
        
        /* Navigation buttons */
        .navigation-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 60px;
            gap: 20px;
        }
        
        .nav-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background: rgba(168, 85, 247, 0.15);
            border: 2px solid var(--purple);
            border-radius: 50px;
            color: var(--text-white);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.4));
            text-decoration: none;
        }
        
        .nav-button:hover {
            transform: scale(1.05);
            background: rgba(168, 85, 247, 0.25);
            filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.6));
        }
        
        .nav-button.next {
            background: rgba(236, 72, 153, 0.15);
            border-color: var(--pink);
            filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.4));
        }
        
        .nav-button.next:hover {
            background: rgba(236, 72, 153, 0.25);
            filter: drop-shadow(0 0 30px rgba(236, 72, 153, 0.6));
        }
        
        .nav-button:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            filter: none;
        }
        
        .nav-button:disabled:hover {
            transform: none;
        }
        
        /* Results Section */
        .results-section {
            display: none;
            min-height: 100vh;
            padding: 120px 2rem 80px;
            background: rgba(10, 10, 22, 0.5);
        }
        
        .results-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .results-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            color: var(--text-white);
        }
        
        .score-card {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
            border: 3px solid transparent;
            background-clip: padding-box;
            border-image: var(--gradient-2) 1;
            border-radius: 20px;
            padding: 60px;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .score-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-2);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.5;
            filter: blur(20px);
        }
        
        .score-value {
            font-size: 80px;
            font-weight: 700;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }
        
        .score-label {
            font-size: 24px;
            color: var(--text-light);
            margin-bottom: 40px;
            font-weight: 600;
        }
        
        /* Email capture */
        .email-section {
            background: rgba(168, 85, 247, 0.1);
            border: 3px solid rgba(168, 85, 247, 0.2);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            margin-top: 60px;
        }
        
        .email-section h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--text-white);
            font-weight: 700;
        }
        
        .email-section p {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 30px;
        }
        
        .email-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 400px;
            margin: 0 auto;
        }
        
        .email-input {
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: var(--text-white);
            font-size: 16px;
            text-align: center;
        }
        
        .email-input:focus {
            outline: none;
            border-color: var(--purple);
            background: rgba(255, 255, 255, 0.1);
        }
        
        @media (max-width: 768px) {
            .main-title {
                font-size: 2rem;
            }
            
            .question-text {
                font-size: 1.5rem;
            }
            
            .checkbox-grid {
                grid-template-columns: 1fr;
            }
            
            .task-detail-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .task-name-box {
                margin-bottom: 10px;
            }
            
            .logo-name {
                font-size: 1.2rem;
            }
            
            .logo-name .highlight-a,
            .logo-name .highlight-i {
                font-size: 1.4rem;
            }
        }
    
/* ===== SOCIAL MEDIA BAR ===== */
.social-bar {
    padding: 1rem 2rem;
    border-top: 1px solid rgba(168, 85, 247, 0.1);
    background: rgba(30, 27, 44, 0.5);
    backdrop-filter: blur(10px);
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Normale social icons - FIXED SIZES */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.8;
    flex-shrink: 0; /* Voorkom krimpen */
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* BELANGRIJK: SVG grootte vastpinnen */
.social-icon svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
}

/* YouTube - GROOT EN PROMINENT */
.youtube-main {
    width: auto !important;
    min-width: 50px !important;
    height: 50px !important;
    padding: 0 1.5rem !important;
    border-radius: 25px !important;
    background: #FF0000 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    flex-shrink: 0;
}

.youtube-main svg {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
    color: white !important;
    flex-shrink: 0;
}

.youtube-text {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.youtube-main:hover {
    background: #CC0000 !important;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    transform: translateY(-3px);
}

/* Brand kleuren voor social icons */
.facebook {
    background: #1877F2;
    color: white;
}

.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: white;
}

.linkedin {
    background: #0A66C2;
    color: white;
}

.tiktok {
    background: #000000;
    color: white;
}

.x-twitter {
    background: #000000;
    color: white;
}

/* Header aanpassingen voor meer ruimte */
header {
    padding-bottom: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .social-bar {
        padding: 0.75rem 1rem;
    }
    
    .social-links {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon svg {
        width: 20px !important;
        height: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important;
    }
    
    .youtube-main {
        height: 45px !important;
        padding: 0 1rem !important;
    }
    
    .youtube-main svg {
        width: 25px !important;
        height: 25px !important;
        max-width: 25px !important;
        max-height: 25px !important;
    }
    
    .youtube-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 0.5rem;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
    }
    
    .social-icon svg {
        width: 18px !important;
        height: 18px !important;
        max-width: 18px !important;
        max-height: 18px !important;
    }
    
    .youtube-text {
        display: none; /* Verberg tekst op heel klein scherm */
    }
    
    .youtube-main {
        width: 45px !important;
        min-width: 45px !important;
        padding: 0 !important;
        border-radius: 50% !important;
    }
}
/* Mobile portrait - YouTube normaal maken */
@media (max-width: 480px) and (orientation: portrait) {
    /* YouTube wordt normale icon op mobiel portrait */
    .youtube-main {
        width: 40px !important;
        height: 40px !important;
        padding: 8px !important;
        border-radius: 50% !important;
        background: #FF0000 !important;
    }
    
    .youtube-main svg {
        width: 24px !important;
        height: 24px !important;
    }
    
    .youtube-text {
        display: none !important; /* Tekst weg */
    }
    
    /* Alle icons in een rij zonder absolute positioning */
    .social-links {
        display: flex !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        flex-wrap: nowrap !important;
    }
    
    .social-links > div {
        position: static !important; /* Geen absolute positioning meer */
    }
    
    /* Alle icons gelijke grootte */
    .social-links a {
        width: 35px !important;
        height: 35px !important;
        padding: 6px !important;
    }
    
    .social-links svg {
        width: 23px !important;
        height: 23px !important;
    }
}