/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563EB;
    --primary-dark: #1E40AF;
    --primary-light: #60A5FA;
    --text-dark: #0F172A;
    --text-light: #64748B;
    --bg-light: #F8FAFC;
    --bg-gray: #E2E8F0;
    --success: #10B981;
    --white: #FFFFFF;
    --border-radius: 16px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 12px -2px rgba(0, 0, 0, 0.1), 0 3px 7px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Tablet & Desktop Containers */
@media (min-width: 769px) and (max-width: 1024px) {
    .container { max-width: 960px; padding: 0 32px; }
}
@media (min-width: 1025px) {
    .container { max-width: 1200px; padding: 0 40px; }
}
/* Large Desktop (min 1440px) - wordt later uitgebreid */
@media (min-width: 1440px) {
    .container { max-width: 1400px; padding: 0 60px; }
    .hero .container { gap: clamp(4rem, 8vw, 6rem); }
    .hero-title { font-size: clamp(3rem, 5vw, 4.5rem); }
    .services-grid { gap: clamp(2.5rem, 5vw, 3.5rem); }
    .results-grid { gap: clamp(2rem, 5vw, 3rem); }
    .testimonials-grid { gap: clamp(2rem, 5vw, 3rem); }
    .section-title { font-size: clamp(2.25rem, 4vw, 2.75rem); margin-bottom: clamp(1rem, 2vw, 1.5rem); }
    .contact-form { max-width: 650px; }
}

/* Typography & Animations */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { 
    font-size: clamp(2rem, 4vw, 2.5rem); 
    margin-bottom: 1rem;
    text-align: center;
}
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Animaties */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

/* Utility class voor scroll animaties */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Mobiele optimalisatie: Elementen met revealed class zijn altijd zichtbaar */
@media (max-width: 768px) {
    .reveal.revealed {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    /* Zorg dat alle sectie elementen zichtbaar zijn op mobiel na korte delay */
    .results .reveal,
    .services .reveal,
    .roadmap .reveal,
    .testimonials .reveal {
        /* Animation fallback voor betere mobiele support */
        animation: mobileReveal 0.5s ease-out 0.3s forwards;
    }
    
    .reveal.revealed {
        animation: none; /* Geen animatie als al revealed */
    }
}

@keyframes mobileReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 2vw, 14px) clamp(24px, 4vw, 28px);
    border-radius: 50px;
    min-height: 48px; /* Touch-friendly minimum */
    font-size: clamp(15px, 2vw, 16px);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    min-height: 48px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--bg-gray);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background-color: rgba(37, 99, 235, 0.05);
    color: var(--primary-dark);
}

.btn-small { padding: 8px 20px; font-size: 14px; min-height: 40px; }
.btn-large { padding: 16px 40px; font-size: 18px; }

/* Header & Nav */
.header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo a { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 60px; width: auto; object-fit: contain; }

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
    position: static;
    transform: none;
    background: transparent;
}

.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
}

.nav-menu li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-menu li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu li a:not(.btn):hover { 
    color: var(--primary); 
}

.nav-menu li a:not(.btn):hover::after { 
    width: 100%; 
}

.nav-menu li a.btn-primary { 
    color: var(--white) !important; 
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    position: relative;
    z-index: 1002;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    display: block;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    padding: clamp(4rem, 8vw, 8rem) 0 clamp(4rem, 10vw, 8rem);
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05), transparent 40%),
                linear-gradient(to bottom, var(--white), var(--bg-light));
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

.hero-title { 
    margin-bottom: clamp(1rem, 3vw, 1.5rem); 
    color: var(--text-dark); 
    line-height: 1.1; 
}
.hero-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text { 
    font-size: clamp(1rem, 2.5vw, 1.25rem); 
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem); 
    color: var(--text-light); 
    max-width: 540px; 
    line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.hero-benefits { list-style: none; display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-benefits li {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-benefits li::before {
    content: '✓';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.hero-visual { position: relative; animation: float 6s ease-in-out infinite; }
.visual-card {
    width: 100%; aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    border-radius: 24px; padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
    position: relative; border: 1px solid rgba(255,255,255,0.1);
}
.visual-screen {
    width: 100%; height: 65%;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}
.visual-elements { display: flex; gap: 1rem; margin-top: 1.5rem; }
.visual-element {
    flex: 1; height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

/* Section Titles & Intros */
.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro { 
    margin: 0 auto 4rem; 
    font-size: 1.25rem; 
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
}

/* Results Section */
.results { padding: clamp(3rem, 8vw, 6rem) 0; background-color: var(--white); }

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.result-card {
    padding: 2rem; text-align: center;
    border-right: 1px solid var(--bg-gray);
}
.result-card:last-child { border-right: none; }

.result-number {
    font-size: clamp(2.5rem, 6vw, 4rem); 
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem; line-height: 1;
}

/* Services Section (Brand, Build, Boost) */
.services { padding: clamp(3rem, 8vw, 6rem) 0; background-color: var(--bg-light); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default: 3 kolommen (desktop) */
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-top: clamp(2rem, 5vw, 3rem);
}

.service-card {
    background-color: var(--white); 
    padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: clamp(16px, 3vw, 24px); 
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(37, 99, 235, 0.1);
}
.service-icon { font-size: 3.5rem; margin-bottom: 1.5rem; display: block; }
.service-title { font-size: 1.5rem; margin-bottom: 1rem; }
.service-list { list-style: none; }
.service-list li {
    padding: 0.5rem 0; color: var(--text-light);
    position: relative; padding-left: 1.5rem;
}
.service-list li::before {
    content: "→"; position: absolute; left: 0; color: var(--primary); font-weight: 600;
}

/* Roadmap Section */
.roadmap { padding: clamp(3rem, 8vw, 6rem) 0; background-color: var(--white); overflow: hidden; }
.roadmap-container { margin-top: 5rem; position: relative; }

.roadmap-line {
    position: absolute; top: 50px; left: 0; right: 0; height: 4px;
    background: var(--bg-gray); display: block; z-index: 0;
}
.roadmap-line::after {
    content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--success));
}

.roadmap-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem; position: relative;
}
.roadmap-step { z-index: 1; }

.roadmap-node {
    width: 100px; height: 100px;
    border-radius: 50%; background-color: var(--white);
    border: 4px solid var(--primary);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 2rem; box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 2.5rem;
}
.roadmap-step:hover .roadmap-node {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.1);
    border-color: var(--primary-dark);
}
.roadmap-content { text-align: center; padding: 1.5rem; }

/* Testimonials Section */
.testimonials { padding: clamp(3rem, 8vw, 6rem) 0; background-color: var(--bg-light); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default: 3 kolommen (desktop) */
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--white); padding: 2.5rem;
    border-radius: 24px; box-shadow: var(--shadow-sm);
    border: none; position: relative;
}
.testimonial-card::before {
    content: '"'; position: absolute; top: 1rem; left: 1.5rem;
    font-size: 4rem; color: rgba(37, 99, 235, 0.1); font-family: serif; line-height: 1;
}
.testimonial-quote {
    font-size: 1.125rem; color: var(--text-dark);
    font-weight: 500; margin-bottom: 1.5rem;
    position: relative; z-index: 1;
}

/* FAQ Section */
.faq { padding: clamp(3rem, 8vw, 6rem) 0; background-color: var(--white); }
.faq .section-title { color: #000000; }
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item {
    background-color: var(--white);
    border: 1px solid var(--bg-gray);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    /* Zorg dat FAQ items altijd zichtbaar zijn */
    opacity: 1 !important;
    transform: none !important;
}
.faq-item:hover { border-color: var(--primary); }
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow-md); }
.faq-question {
    padding: 1.5rem 2rem; font-weight: 600;
    width: 100%; background: none; border: none;
    text-align: left; font-size: 1.125rem; color: var(--text-dark);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-icon { font-size: 1.5rem; color: var(--primary); transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* FAQ Animatie Fix */
.faq-answer {
    padding: 0 2rem;
    background-color: rgba(248, 250, 252, 0.5);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 1000px; /* Voldoende hoog om content te tonen */
    opacity: 1;
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid var(--bg-gray);
    margin-top: 1rem;
}
.faq-answer p { margin: 0 0 1rem 0; line-height: 1.7; }
.faq-answer p:last-child { margin-bottom: 0; }

/* CTA Strip */
.cta {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    position: relative; overflow: hidden; color: var(--white); text-align: center;
}
.cta-title { color: var(--white); margin-bottom: clamp(0.75rem, 2vw, 1rem); }
.cta-text { 
    color: rgba(255, 255, 255, 0.9); 
    font-size: clamp(1rem, 2.5vw, 1.125rem); 
    margin-bottom: clamp(1.5rem, 4vw, 2rem); 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto;
    line-height: 1.7;
}
.cta .btn-primary {
    background: var(--white); color: var(--primary); box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.cta .btn-primary:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 15px 35px rgba(0,0,0,0.2); }

/* Contact */
.contact { padding: clamp(3rem, 8vw, 5rem) 0; }
.contact-form { max-width: 600px; margin: clamp(2rem, 5vw, 3rem) auto 0; }
.contact-form button[type="submit"] {
    display: block;
    margin: 0 auto;
}
.form-group { margin-bottom: clamp(1rem, 3vw, 1.5rem); }
.form-group label { 
    display: block; 
    margin-bottom: 0.5rem; 
    font-weight: 600; 
    color: var(--text-dark);
    font-size: clamp(0.9rem, 2vw, 1rem);
}
.form-group input, .form-group textarea {
    width: 100%; 
    padding: clamp(12px, 3vw, 14px) clamp(14px, 3vw, 16px);
    border: 2px solid var(--bg-gray); 
    border-radius: var(--border-radius);
    font-family: inherit; 
    font-size: clamp(16px, 2vw, 16px); 
    transition: border-color 0.3s ease;
    min-height: 48px; /* Touch-friendly on mobile */
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; }

/* Form Message */
.form-message {
    padding: clamp(0.875rem, 2vw, 1rem) clamp(1.25rem, 3vw, 1.5rem);
    border-radius: var(--border-radius);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
    display: none;
    line-height: 1.6;
}
.form-message:not(:empty) {
    display: block;
}
.form-message-success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success);
    color: var(--success);
}
.form-message-error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 2px solid #EF4444;
    color: #EF4444;
}

/* Disabled submit button */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Footer */
.footer { background-color: #020617; color: var(--white); padding: clamp(3rem, 8vw, 5rem) 0 2rem; }
.footer-content {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem; margin-bottom: 2rem;
}
.footer-logo { height: 50px; width: auto; object-fit: contain; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { color: rgba(255, 255, 255, 0.7); line-height: 1.7; }
.footer-social h4 { color: var(--white); margin-bottom: 1rem; }
.social-links { display: flex; gap: 1.5rem; }
.social-icon {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; text-decoration: none; transition: opacity 0.3s ease;
}
.social-icon:hover { opacity: 0.8; }
.social-icon svg { width: 100%; height: 100%; fill: #b8babf; }
.social-icon svg * { fill: #b8babf !important; }
.social-icon svg #background { fill: transparent !important; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom p { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; margin: 0; }

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero .container { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
        text-align: center; 
    }
    .hero-visual { 
        max-width: 600px; 
        margin: 0 auto; 
        order: -1; 
    }
    .hero-text { 
        margin-left: auto; 
        margin-right: auto; 
        max-width: 700px;
    }
    .hero-buttons { 
        justify-content: center; 
        flex-wrap: wrap;
    }
    .hero-buttons .btn {
        min-width: 200px;
        flex: 1 1 auto;
    }
    .hero-benefits { 
        justify-content: center; 
    }
    
    /* Grids - 3 naast elkaar blijft goed werken */
    .services-grid { 
        grid-template-columns: repeat(3, 1fr); 
        gap: clamp(1.25rem, 3vw, 1.5rem); 
    }
    .testimonials-grid { 
        grid-template-columns: repeat(3, 1fr); 
        gap: clamp(1.25rem, 3vw, 1.5rem); 
    }
    
    .results-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: clamp(1.5rem, 4vw, 2rem); 
    }
    
    .roadmap-steps { 
        grid-template-columns: repeat(4, 1fr); 
        gap: clamp(0.75rem, 2vw, 1rem); 
    }
    .roadmap-node { 
        width: clamp(70px, 10vw, 80px); 
        height: clamp(70px, 10vw, 80px); 
        font-size: clamp(1.75rem, 3vw, 2rem); 
    }
    .roadmap-line { top: clamp(35px, 8vw, 40px); }
    
    .nav-menu { gap: clamp(1rem, 2vw, 1.5rem); }
    .nav-menu li a { font-size: clamp(0.9rem, 1.5vw, 0.95rem); }
    
    /* Form optimalisaties */
    .contact-form {
        max-width: 550px;
    }
    
    /* CTA verbeteringen */
    .cta .container {
        padding: 0 clamp(24px, 5vw, 40px);
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    /* Navigatie */
    .nav { 
        padding: 0.75rem 16px; 
        position: relative;
        width: 100%;
        max-width: 100%;
    }
    .nav.container {
        padding: 0.75rem 16px;
    }
    .logo-img { 
        height: clamp(40px, 10vw, 55px); 
        position: relative;
        z-index: 1002;
        display: block;
    }
    .nav-toggle { 
        display: flex !important; 
        z-index: 1002;
        position: relative;
    }
    .nav-toggle[aria-expanded="true"] span {
        background-color: var(--text-dark);
    }
    
    /* Reset desktop nav-menu styling volledig */
    .nav-menu {
        position: fixed !important; 
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 100vh !important;
        height: 100dvh !important; /* Dynamic viewport height voor mobiel */
        background: #FFFFFF !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: stretch !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        list-style: none !important;
        transform: translateX(100%) !important;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 1001 !important;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active { 
        transform: translateX(0) !important; 
    }
    
    .nav-menu li { 
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        border-bottom: 1px solid #E2E8F0 !important;
        flex-shrink: 0 !important;
        list-style: none !important;
    }
    
    .nav-menu li:last-child {
        border-bottom: none !important;
        border-top: 1px solid #E2E8F0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .nav-menu li a { 
        font-size: 1rem !important;
        font-weight: 600 !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        padding: 0.75rem 1.5rem !important;
        color: var(--text-dark) !important;
        text-decoration: none !important;
        transition: color 0.3s ease, background-color 0.3s ease !important;
        width: 100% !important;
        text-align: left !important;
        position: relative !important;
        box-sizing: border-box !important;
        /* Reset desktop ::after pseudo-element */
    }
    
    .nav-menu li a::after {
        display: none !important;
    }
    
    .nav-menu li a:not(.btn):hover,
    .nav-menu li a:not(.btn):active {
        color: var(--primary) !important;
        background-color: rgba(37, 99, 235, 0.05) !important;
    }
    
    .nav-menu li a.btn-primary,
    .nav-menu li a.btn {
        justify-content: center !important;
        padding: 0.875rem 1.5rem !important;
        margin: 1rem 1.5rem !important;
        border-radius: 50px !important;
        min-height: 48px !important;
        font-size: 1rem !important;
        text-align: center !important;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
        color: var(--white) !important;
        width: calc(100% - 3rem) !important;
        max-width: calc(100% - 3rem) !important;
    }
    
    .nav-menu li a.btn-primary:hover,
    .nav-menu li a.btn:hover {
        background: linear-gradient(135deg, var(--primary-dark) 0%, #1e40af 100%) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
    }
    
    /* Voorkom scrollen wanneer menu open is */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }

    /* Hero op mobiel */
    .hero { 
        padding: clamp(6rem, 15vw, 8rem) 0 clamp(3rem, 8vw, 4rem); 
        text-align: center; 
    }
    .hero .container { 
        grid-template-columns: 1fr !important; 
        gap: clamp(2rem, 6vw, 3rem); 
    }
    .hero-text { 
        margin-left: auto; 
        margin-right: auto; 
        max-width: 100%;
    }
    .hero-buttons { 
        justify-content: center; 
        flex-direction: column; 
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        min-height: 52px;
        font-size: clamp(15px, 3vw, 16px);
    }
    .hero-benefits { 
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
        justify-items: center;
        list-style: none !important;
    }
    .hero-benefits li {
        width: 100%;
        justify-content: center;
    }
    .hero-benefits li:last-child {
        grid-column: 1 / -1; /* Laatste item over beide kolommen */
        max-width: 200px; /* Iets smaller dan 2 items naast elkaar */
        margin: 0 auto;
    }
    .hero-visual { 
        order: -1; 
        max-width: 100%;
        width: 100%;
        margin: 0 auto 2rem;
        padding: 0 1rem;
        /* Lichtere animatie op mobiel voor betere performance */
        animation: floatMobile 8s ease-in-out infinite;
    }
    .visual-card {
        padding: clamp(1.25rem, 3vw, 1.5rem);
        aspect-ratio: 16/11; /* Iets langwerpiger op mobiel */
        max-width: 500px;
        margin: 0 auto;
        border-radius: clamp(16px, 4vw, 24px);
    }
    .visual-screen {
        height: 60%; /* Iets kleiner op mobiel */
        border-radius: clamp(8px, 2vw, 12px);
    }
    .visual-elements {
        gap: clamp(0.75rem, 2vw, 1rem);
        margin-top: clamp(1rem, 3vw, 1.5rem);
    }
    .visual-element {
        height: clamp(32px, 5vw, 40px);
        border-radius: clamp(6px, 1.5vw, 8px);
    }

    /* Grids onder elkaar op mobiel */
    .services-grid { 
        grid-template-columns: 1fr; 
        gap: clamp(1.5rem, 4vw, 2rem);
    }
    .testimonials-grid { 
        grid-template-columns: 1fr; 
        gap: clamp(1.5rem, 4vw, 2rem);
    }
    .results-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: clamp(1rem, 3vw, 1.5rem); 
    }
    .result-card {
        padding: clamp(1.5rem, 4vw, 2rem);
        border-right: none;
        border-bottom: 1px solid var(--bg-gray);
    }
    .result-card:nth-child(2n) {
        border-right: 1px solid var(--bg-gray);
    }
    .result-card:last-child {
        border-bottom: none;
    }
    
    .footer-content { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: clamp(2rem, 5vw, 3rem);
    }
    .social-links { 
        justify-content: center; 
        flex-wrap: wrap;
    }

    /* Roadmap Mobiel */
    .roadmap-steps {
        grid-template-columns: clamp(50px, 12vw, 60px) 1fr;
        gap: 0 clamp(1rem, 3vw, 1.5rem); 
        padding: 0;
        display: flex; 
        flex-direction: column; 
        gap: clamp(2rem, 5vw, 3rem);
    }
    .roadmap-step { 
        display: grid; 
        grid-template-columns: clamp(50px, 12vw, 60px) 1fr; 
        gap: clamp(1rem, 3vw, 1.5rem); 
        align-items: start; 
    }
    .roadmap-line {
        display: block;
        left: calc(clamp(50px, 12vw, 60px) / 2 - 1.5px);
        width: 3px; 
        background: linear-gradient(to bottom, var(--primary), var(--bg-gray));
        height: 100%; 
        top: 0; 
        bottom: 0;
    }
    .roadmap-node { 
        width: clamp(50px, 12vw, 60px); 
        height: clamp(50px, 12vw, 60px); 
        font-size: clamp(1.25rem, 3vw, 1.5rem); 
        border-width: 3px; 
        margin: 0; 
        z-index: 2; 
        position: relative; 
    }
    .roadmap-content { 
        text-align: left; 
        padding: 0; 
        box-shadow: none; 
        background: transparent; 
    }
    .roadmap-text {
        font-size: clamp(0.875rem, 2vw, 0.95rem);
    }

    /* Form optimalisaties mobiel */
    .contact-form {
        max-width: 100%;
        margin-top: clamp(1.5rem, 4vw, 2rem);
    }
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Voorkomt zoom op iOS */
    }
    .form-group textarea {
        min-height: 120px;
    }
    .contact-form button[type="submit"] {
        width: 100%;
        min-height: 52px;
        font-size: clamp(15px, 3vw, 16px);
    }

    /* FAQ mobiel */
    .faq-question {
        padding: clamp(1.25rem, 3vw, 1.5rem) clamp(1.5rem, 4vw, 2rem);
        font-size: clamp(1rem, 2.5vw, 1.125rem);
        min-height: 48px;
    }
    .faq-answer {
        padding: 0 clamp(1.5rem, 4vw, 2rem);
    }
    .faq-item.active .faq-answer {
        padding: clamp(1rem, 3vw, 1.5rem) clamp(1.5rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2rem);
        margin-top: clamp(0.75rem, 2vw, 1rem);
    }

    /* CTA mobiel */
    .cta {
        padding: clamp(3rem, 8vw, 4rem) 0;
    }
    .cta .btn-large {
        width: 100%;
        min-height: 52px;
        font-size: clamp(16px, 3vw, 18px);
    }

    /* Sticky Mobile CTA */
    .mobile-sticky-cta {
        position: fixed; 
        bottom: clamp(16px, 4vw, 20px); 
        left: clamp(16px, 4vw, 20px); 
        right: clamp(16px, 4vw, 20px);
        background: var(--primary); 
        color: white;
        padding: clamp(14px, 3vw, 16px); 
        border-radius: 50px;
        text-align: center; 
        font-weight: 700;
        font-size: clamp(14px, 3vw, 16px);
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
        z-index: 999;
        animation: fadeInUp 0.5s 1s backwards;
        display: flex; 
        align-items: center; 
        justify-content: center; 
        gap: 10px;
        text-decoration: none;
        min-height: 48px;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .container { padding: 0 clamp(12px, 3vw, 16px); }
    
    /* Menu responsive aanpassingen voor kleine schermen */
    .nav-menu li a {
        font-size: 0.95rem !important;
        padding: 0.625rem 1.25rem !important;
        min-height: 44px !important;
    }
    .nav-menu li a.btn-primary,
    .nav-menu li a.btn {
        padding: 0.75rem 1.25rem !important;
        margin: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
        min-height: 44px !important;
        width: calc(100% - 2.5rem) !important;
        max-width: calc(100% - 2.5rem) !important;
    }
    
    .hero { 
        padding: clamp(1.5rem, 6vw, 2rem) 0 clamp(2rem, 8vw, 4rem); 
    }
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    /* Hero visual extra compact op kleine schermen */
    .hero-visual {
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    .visual-card {
        padding: 1rem;
        aspect-ratio: 16/12; /* Iets hoger op kleine schermen */
    }
    .visual-screen {
        height: 55%;
    }
    .visual-elements {
        margin-top: 1rem;
    }
    .visual-element {
        height: 28px;
    }
    
    .results, .services, .roadmap, .testimonials, .faq, .contact, .cta { 
        padding: clamp(2rem, 6vw, 3rem) 0; 
    }
    
    .result-number { 
        font-size: clamp(2rem, 6vw, 2.5rem); 
    }
    .result-label {
        font-size: clamp(0.875rem, 2vw, 0.95rem);
    }
    
    .service-card, .testimonial-card { 
        padding: clamp(1.25rem, 4vw, 1.5rem); 
    }
    
    .results-grid { 
        grid-template-columns: 1fr; 
        gap: 1rem;
    }
    .result-card {
        border-right: none;
        border-bottom: 1px solid var(--bg-gray);
    }
    .result-card:last-child {
        border-bottom: none;
    }
    
    /* Service icon kleiner op kleine schermen */
    .service-icon {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
    
    /* Testimonial quotes */
    .testimonial-quote {
        font-size: clamp(1rem, 2.5vw, 1.125rem);
    }
    
    /* Roadmap nog compacter */
    .roadmap-steps {
        gap: 2rem;
    }
    
    /* Footer logo kleiner */
    .footer-logo {
        height: clamp(40px, 8vw, 50px);
    }
    
    /* Social icons iets kleiner */
    .social-icon {
        width: clamp(28px, 6vw, 32px);
        height: clamp(28px, 6vw, 32px);
    }
}

/* Hide sticky CTA on Desktop */
/* Desktop & Tablet - Zorg dat navigatie en hero correct werken */
@media (min-width: 769px) {
    .mobile-sticky-cta { display: none; }
    
    /* Reset mobiele navigatie styling op desktop */
    .nav-toggle {
        display: none !important;
    }
    
    .nav-menu {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 2.5rem !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        background: transparent !important;
        transform: none !important;
        box-shadow: none !important;
        overflow: visible !important;
        z-index: auto !important;
        list-style: none !important;
    }
    
    .nav-menu li {
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        border-bottom: none !important;
        border-top: none !important;
        flex-shrink: 1 !important;
        list-style: none !important;
    }
    
    .nav-menu li:last-child {
        border-top: none !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .nav-menu li a {
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        min-height: auto !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 !important;
        color: var(--text-dark) !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
        width: auto !important;
        text-align: left !important;
        position: relative !important;
        box-sizing: border-box !important;
        background-color: transparent !important;
    }
    
    .nav-menu li a::after {
        display: block !important;
        content: '' !important;
        position: absolute !important;
        bottom: -4px !important;
        left: 0 !important;
        width: 0 !important;
        height: 2px !important;
        background-color: var(--primary) !important;
        transition: width 0.3s ease !important;
    }
    
    .nav-menu li a:not(.btn):hover {
        color: var(--primary) !important;
        background-color: transparent !important;
        padding-left: 0 !important;
    }
    
    .nav-menu li a:not(.btn):hover::after {
        width: 100% !important;
    }
    
    .nav-menu li a.btn-primary,
    .nav-menu li a.btn {
        justify-content: center !important;
        padding: 12px 28px !important;
        margin: 0 !important;
        border-radius: 50px !important;
        min-height: auto !important;
        font-size: 0.95rem !important;
        text-align: center !important;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
        color: var(--white) !important;
        width: auto !important;
        max-width: none !important;
    }
    
    .nav-menu li a.btn-primary:hover,
    .nav-menu li a.btn:hover {
        background: linear-gradient(135deg, var(--primary-dark) 0%, #1e40af 100%) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
        padding-left: 28px !important;
    }
    
    .nav-menu.active {
        transform: none !important;
    }
    
    /* Hero Desktop - Herstel correcte layout */
    .hero .container {
        grid-template-columns: 1.1fr 0.9fr !important;
        gap: clamp(2rem, 6vw, 4rem) !important;
        align-items: center !important;
    }
    
    .hero {
        text-align: left !important;
    }
    
    .hero-text {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 540px !important;
    }
    
    .hero-buttons {
        justify-content: flex-start !important;
        flex-direction: row !important;
        width: auto !important;
    }
    
    .hero-buttons .btn {
        width: auto !important;
    }
    
    .hero-benefits {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 2rem !important;
        max-width: none !important;
        margin: 0 !important;
        justify-items: flex-start !important;
        list-style: none !important;
    }
    
    .hero-benefits li {
        width: auto !important;
        max-width: none !important;
        grid-column: auto !important;
        margin: 0 !important;
    }
    
    .hero-benefits li:last-child {
        grid-column: auto !important;
        max-width: none !important;
        margin: 0 !important;
    }
    
    .hero-visual {
        order: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        animation: float 6s ease-in-out infinite !important;
    }
    
    .visual-card {
        aspect-ratio: 16/10 !important;
        padding: 2rem !important;
        border-radius: 24px !important;
        max-width: none !important;
    }
    
    .visual-screen {
        height: 65% !important;
        border-radius: 12px !important;
    }
    
    .visual-elements {
        gap: 1rem !important;
        margin-top: 1.5rem !important;
    }
    
    .visual-element {
        height: 40px !important;
        border-radius: 8px !important;
    }
}
