/* ============================================
   GLOBAL THEME & RESET
   Last updated: 2025-11-29 - Full screen clients
============================================ */

/* GLOBAL HEADER FIX - Applies to ALL devices and screen sizes - HIGHEST PRIORITY */
/* This MUST be the first rule and override EVERYTHING */
header,
header.site-header,
header[class*="site-header"],
header[class*="header"],
.site-header,
.site-header.scrolled,
.site-header.active,
.site-header.open,
.site-header[style],
.site-header[style*="position"],
.site-header[style*="top"],
.site-header[style*="transform"],
.site-header[style*="left"],
.site-header[style*="right"],
.site-header[style*="position: absolute"],
.site-header[style*="position: relative"],
.site-header[style*="position: static"],
.site-header[style*="position: sticky"],
html header.site-header,
html header,
html .site-header,
html body .site-header,
html body header.site-header,
html body header,
body .site-header,
body header.site-header,
body header,
body > .site-header,
body > header.site-header,
body > header,
* .site-header,
* > .site-header,
* header.site-header,
* header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    z-index: 99999 !important;
    transform: translateZ(0) !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
    isolation: isolate !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    transform-origin: top left !important;
}

/* Prevent parent elements from affecting header position */
body:has(> .site-header),
html:has(body > .site-header) {
    transform: none !important;
    position: static !important;
}

/* Geen transform/filter op html en body – anders wordt position:fixed van de header gebroken */
html,
body {
    transform: none !important;
    filter: none !important;
    will-change: auto !important;
}

/* Website mag niet horizontaal sliden: geen horizontale scroll */
html {
    overflow-x: hidden !important;
    max-width: 100vw;
}

/* Ensure header container doesn't affect position */
.site-header .container,
.site-header .header-inner {
    position: relative !important;
    transform: none !important;
}

/* Fixed wrapper around header – blijft altijd bovenaan, ook bij snel scrollen */
#header-fixed-wrapper,
.header-fixed-wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    z-index: 99999 !important;
    transform: translateZ(0) !important;
    margin: 0 !important;
    pointer-events: auto !important;
    box-sizing: border-box !important;
    isolation: isolate !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
}

/* Header binnen wrapper mag static zijn – wrapper houdt hem vast */
#header-fixed-wrapper .site-header,
.header-fixed-wrapper .site-header,
#header-fixed-wrapper header,
.header-fixed-wrapper header {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Prevent parent from affecting wrapper (backwards compat als wrapper in DOM) */
body:has(> #header-fixed-wrapper),
html:has(body > #header-fixed-wrapper) {
    transform: none !important;
}

:root {
    /* Modern Color Palette */
    --primary: #6366f1;
    /* Modern indigo - professional and calming */
    --primary-dark: #4f46e5;
    /* Deeper indigo for hover states */
    --primary-light: #818cf8;
    /* Lighter indigo for accents */
    --accent: #06b6d4;
    /* Modern cyan for highlights */
    --accent-light: #22d3ee;
    /* Light cyan */
    --bg-900: #0f172a;
    /* Deep slate background */
    --bg-800: #1e293b;
    /* Darker slate */
    --bg-700: #334155;
    /* Medium slate */
    --bg-gradient-start: #0f172a;
    /* Background start */
    --bg-gradient-end: #1e293b;
    /* Background end */
    --text-primary: #f8fafc;
    /* Primary text */
    --text-secondary: #cbd5e1;
    /* Secondary text */
    --text-muted: #94a3b8;
    /* Muted text */
    --gold: #fbbf24;
    /* Modern amber */
    --muted: #64748b;
    /* Soft gray */
    /* Modern Glassmorphism Variables */
    --glass: rgba(255, 255, 255, 0.08);
    --glass-light: rgba(255, 255, 255, 0.12);
    --glass-medium: rgba(255, 255, 255, 0.15);
    --glass-strong: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-border-light: rgba(255, 255, 255, 0.25);
    --glass-border-medium: rgba(255, 255, 255, 0.35);
    --glass-shadow: rgba(0, 0, 0, 0.25);
    --glass-shadow-light: rgba(0, 0, 0, 0.15);
    --glass-shadow-medium: rgba(0, 0, 0, 0.35);
    --glass-hover: rgba(255, 255, 255, 0.12);
    --glass-blur: 40px;
    --glass-blur-light: 20px;
    --glass-blur-medium: 30px;
    --glass-blur-strong: 50px;
    --glass-saturation: 180%;

    /* Radii & spacing */
    --border-radius-lg: 1.2rem;
    --border-radius-pill: 999px;
    --section-padding: 4rem;

    /* Layout */
    --container-max: 1400px;

    /* Modern gradients */
    --gradient-main-radial: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.15), transparent 60%);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #6366f1 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    --gradient-glass: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

/* Global responsive images */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure inline images don't break */
img:not([width]):not([height]) {
    width: auto;
    max-width: 100%;
}

/* ============================================
   BODY & TYPOGRAFIE
============================================ */

body {
    min-height: 100vh;
    max-width: 100vw;
    font-family: "Poppins", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: 
        radial-gradient(ellipse 1400px 800px at 15% 20%, rgba(99, 102, 241, 0.12), transparent 60%),
        radial-gradient(ellipse 1200px 700px at 85% 80%, rgba(6, 182, 212, 0.1), transparent 60%),
        radial-gradient(ellipse 1000px 600px at 50% 50%, rgba(99, 102, 241, 0.08), transparent 70%),
        radial-gradient(ellipse 800px 500px at 30% 70%, rgba(6, 182, 212, 0.08), transparent 65%),
        linear-gradient(135deg, 
            var(--bg-gradient-start) 0%, 
            var(--bg-800) 25%,
            var(--bg-gradient-start) 50%,
            var(--bg-800) 75%,
            var(--bg-gradient-start) 100%);
    color: var(--text-primary);
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
    padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Flexible typography */
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
    background-attachment: scroll; /* Changed from fixed for better performance */
    /* No contain on body: it would create a containing block and break position:fixed on header */
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle 1000px at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle 800px at 80% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle 600px at 50% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 60%),
        radial-gradient(circle 400px at 70% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    filter: blur(100px);
    opacity: 0.5;
    /* Animation disabled for performance */
    animation: none !important;
}

@keyframes skyFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.85;
        filter: blur(50px);
    }

    50% {
        opacity: 1;
        filter: blur(60px);
    }
}

/* Shimmer effect overlay */
body::after {
    display: none;
}

@keyframes shimmerMove {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Floating particles effect - DISABLED for performance */
body .particles-layer {
    display: none !important;
    /* Animation disabled for performance */
    animation: none !important;
}

/* ============================================
   ANIMATED CLOUDS BACKGROUND
============================================ */
.clouds-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.clouds-layer {
    display: none !important;
}

.cloud {
    display: none !important;
}

.cloud:nth-child(1) {
    display: none !important;
}

.cloud:nth-child(2) {
    width: 400px;
    height: 130px;
    top: 30%;
    left: -30%;
    background: radial-gradient(ellipse at center, rgba(234, 179, 8, 0.1) 0%, rgba(217, 170, 70, 0.06) 50%, transparent);
    animation-duration: 200s;
    animation-delay: -50s;
}

.cloud:nth-child(3) {
    width: 320px;
    height: 95px;
    top: 60%;
    left: -25%;
    background: radial-gradient(ellipse at center, rgba(53, 215, 255, 0.1) 0%, rgba(53, 215, 255, 0.06) 50%, transparent);
    animation-duration: 190s;
    animation-delay: -100s;
}

.cloud:nth-child(4) {
    width: 370px;
    height: 115px;
    top: 80%;
    left: -20%;
    background: radial-gradient(ellipse at center, rgba(234, 179, 8, 0.1) 0%, rgba(217, 170, 70, 0.06) 50%, transparent);
    animation-duration: 195s;
    animation-delay: -150s;
}

@keyframes cloudFloat {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    90% {
        opacity: 0.15;
    }

    100% {
        transform: translateX(120vw) translateY(-20px);
        opacity: 0;
    }
}

/* ============================================
   WATER RIPPLE EFFECT
============================================ */
.water-ripple {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.water-ripple {
    display: none !important;
}

.wave {
    display: none !important;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
}

.wave:nth-child(2) {
    animation-duration: 45s;
    animation-delay: -10s;
    opacity: 0.5;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(234, 179, 8, 0.06) 50%,
            rgba(217, 170, 70, 0.1) 100%);
}

.wave:nth-child(3) {
    animation-duration: 50s;
    animation-delay: -20s;
    opacity: 0.3;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(53, 215, 255, 0.05) 50%,
            rgba(53, 215, 255, 0.08) 100%);
}

@keyframes waveMove {
    0% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(-25%) translateY(-10px);
    }

    100% {
        transform: translateX(-50%) translateY(0);
    }
}

/* ============================================
   FLOATING ORBS ANIMATION
============================================ */
.floating-orbs {
    display: none !important;
}

.orb {
    display: none !important;
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 20s ease-in-out infinite;
}

.orb:nth-child(1) {
    width: 400px;
    height: 400px;
    top: 15%;
    left: 8%;
    background: radial-gradient(circle, rgba(53, 215, 255, 0.12) 0%, rgba(53, 215, 255, 0.08) 40%, transparent 70%);
    animation-duration: 60s;
}

.orb:nth-child(2) {
    width: 450px;
    height: 450px;
    top: 55%;
    right: 8%;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.1) 0%, rgba(217, 170, 70, 0.08) 40%, transparent 70%);
    animation-duration: 70s;
    animation-delay: -20s;
}

.orb:nth-child(3) {
    width: 350px;
    height: 350px;
    bottom: 15%;
    left: 35%;
    background: radial-gradient(circle, rgba(53, 215, 255, 0.1) 0%, rgba(53, 215, 255, 0.06) 40%, transparent 70%);
    animation-duration: 65s;
    animation-delay: -30s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* ============================================
   SPARKLE STARS ANIMATION
============================================ */
.sparkle-stars {
    display: none;
}

.star {
    display: none;
}

.star:nth-child(odd) {
    background: radial-gradient(circle, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8));
}

.star:nth-child(even) {
    background: radial-gradient(circle, rgba(234, 179, 8, 1), rgba(255, 255, 255, 0.8));
}

.star:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.star:nth-child(2) {
    top: 40%;
    left: 85%;
    animation-delay: 0.5s;
}

.star:nth-child(3) {
    top: 60%;
    left: 25%;
    animation-delay: 1s;
}

.star:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 1.5s;
}

.star:nth-child(5) {
    top: 30%;
    left: 50%;
    animation-delay: 2s;
}

.star:nth-child(6) {
    top: 70%;
    left: 60%;
    animation-delay: 2.5s;
}

.star:nth-child(7) {
    top: 15%;
    left: 75%;
    animation-delay: 0.8s;
}

.star:nth-child(8) {
    top: 85%;
    left: 20%;
    animation-delay: 1.8s;
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* ============================================
   FLOATING GEOMETRIC SHAPES
============================================ */
.geometric-shapes {
    display: none !important;
}

.shape {
    display: none !important;
}

.shape-circle {
    width: 200px;
    height: 200px;
    border: 0;
    border-radius: 50%;
    top: 15%;
    right: 10%;
    animation-duration: 30s;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    box-shadow:
        0 0 80px rgba(99, 102, 241, 0.4),
        0 0 40px rgba(6, 182, 212, 0.3),
        inset 0 0 60px rgba(255, 255, 255, 0.15),
        0 25px 70px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateX(25deg);
    filter: brightness(1.1);
    animation: shapeFloat 50s ease-in-out infinite;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 95px solid transparent;
    border-right: 95px solid transparent;
    border-bottom: 165px solid rgba(234, 179, 8, 0.7);
    top: 50%;
    left: 5%;
    animation-duration: 35s;
    animation-delay: -10s;
    filter: drop-shadow(0 0 60px rgba(234, 179, 8, 1)) drop-shadow(0 0 35px rgba(217, 170, 70, 0.9)) drop-shadow(0 0 20px rgba(234, 179, 8, 0.7)) drop-shadow(0 15px 45px rgba(0, 0, 0, 0.5));
    transform: perspective(1000px) rotateY(-20deg);
}

.shape-square {
    width: 150px;
    height: 150px;
    border: 5px solid rgba(53, 215, 255, 0.8);
    transform: rotate(45deg) perspective(1000px) rotateX(20deg);
    bottom: 20%;
    right: 15%;
    animation-duration: 28s;
    animation-delay: -15s;
    box-shadow:
        0 0 70px rgba(53, 215, 255, 1),
        0 0 45px rgba(53, 215, 255, 0.8),
        0 0 25px rgba(53, 215, 255, 0.6),
        inset 0 0 40px rgba(53, 215, 255, 0.7),
        0 15px 50px rgba(0, 0, 0, 0.5);
}

.shape-hexagon {
    width: 130px;
    height: 75.05px;
    background: rgba(234, 179, 8, 0.7);
    position: relative;
    top: 70%;
    left: 40%;
    animation-duration: 32s;
    animation-delay: -20s;
    filter: drop-shadow(0 0 65px rgba(234, 179, 8, 1)) drop-shadow(0 0 40px rgba(217, 170, 70, 0.9)) drop-shadow(0 0 25px rgba(234, 179, 8, 0.7)) drop-shadow(0 15px 50px rgba(0, 0, 0, 0.5));
    transform: perspective(1000px) rotateZ(15deg);
}

.shape-hexagon:before,
.shape-hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 65px solid transparent;
    border-right: 65px solid transparent;
}

.shape-hexagon:before {
    bottom: 100%;
    border-bottom: 37.53px solid rgba(234, 179, 8, 0.7);
}

.shape-hexagon:after {
    top: 100%;
    border-top: 37.53px solid rgba(234, 179, 8, 0.7);
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(0, -50px) rotate(180deg);
    }

    75% {
        transform: translate(-30px, -30px) rotate(270deg);
    }
}

/* ============================================
   METEOR SHOWER EFFECT
============================================ */
.meteor-shower {
    display: none !important;
}

.meteor {
    display: none !important;
}

.meteor:nth-child(odd) {
    background: linear-gradient(to bottom, rgba(53, 215, 255, 0) 0%, rgba(53, 215, 255, 0.9) 40%, rgba(255, 255, 255, 1) 100%);
    box-shadow:
        0 0 25px rgba(53, 215, 255, 1),
        0 0 15px rgba(53, 215, 255, 0.8),
        0 0 40px rgba(53, 215, 255, 0.6),
        0 -50px 30px rgba(53, 215, 255, 0.3);
}

.meteor:nth-child(even) {
    background: linear-gradient(to bottom, rgba(234, 179, 8, 0) 0%, rgba(234, 179, 8, 0.9) 40%, rgba(255, 255, 255, 1) 100%);
    box-shadow:
        0 0 25px rgba(234, 179, 8, 1),
        0 0 15px rgba(217, 170, 70, 0.8),
        0 0 40px rgba(234, 179, 8, 0.6),
        0 -50px 30px rgba(234, 179, 8, 0.3);
}

.meteor:nth-child(1) {
    top: -100px;
    left: 20%;
    animation-delay: 0s;
}

.meteor:nth-child(2) {
    top: -100px;
    left: 50%;
    animation-delay: 2s;
}

.meteor:nth-child(3) {
    top: -100px;
    left: 80%;
    animation-delay: 4s;
}

.meteor:nth-child(4) {
    top: -100px;
    left: 35%;
    animation-delay: 6s;
}

.meteor:nth-child(5) {
    top: -100px;
    left: 65%;
    animation-delay: 8s;
}

@keyframes meteorFall {
    0% {
        transform: translateY(0) translateX(0) rotate(45deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) translateX(-200px) rotate(45deg);
        opacity: 0;
    }
}

/* ============================================
   ENERGY PULSE RINGS
============================================ */
.pulse-rings {
    display: none;
}

.pulse-ring {
    display: none;
}

.pulse-ring:nth-child(1) {
    border: 5px solid rgba(53, 215, 255, 0.9);
    box-shadow:
        0 0 60px rgba(53, 215, 255, 1),
        0 0 40px rgba(53, 215, 255, 0.9),
        0 0 25px rgba(53, 215, 255, 0.7),
        inset 0 0 50px rgba(53, 215, 255, 0.7);
    animation-delay: 0s;
}

.pulse-ring:nth-child(2) {
    border: 5px solid rgba(234, 179, 8, 0.9);
    box-shadow:
        0 0 60px rgba(234, 179, 8, 1),
        0 0 40px rgba(217, 170, 70, 0.9),
        0 0 25px rgba(234, 179, 8, 0.7),
        inset 0 0 50px rgba(234, 179, 8, 0.7);
    animation-delay: 2.5s;
}

.pulse-ring:nth-child(3) {
    border: 5px solid rgba(53, 215, 255, 0.9);
    box-shadow:
        0 0 60px rgba(53, 215, 255, 1),
        0 0 40px rgba(53, 215, 255, 0.9),
        0 0 25px rgba(53, 215, 255, 0.7),
        inset 0 0 50px rgba(53, 215, 255, 0.7);
    animation-delay: 5s;
}

@keyframes pulseExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        width: 1500px;
        height: 1500px;
        opacity: 0;
    }
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.6;
    }

    25% {
        transform: translate(5%, -5%);
        opacity: 0.8;
    }

    50% {
        transform: translate(-3%, 3%);
        opacity: 0.5;
    }

    75% {
        transform: translate(-5%, -3%);
        opacity: 0.9;
    }
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: #ffffff;
}

p {
    margin: 0;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    box-shadow: 0 2px 12px rgba(99, 102, 241, 0.3);
    z-index: 99999;
    transition: width 0.15s ease-out;
    width: 0;
}

/* Sparkle Container */
.sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1), transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleFloat 3s ease-out forwards;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes sparkleFloat {
    0% {
        transform: translateY(0) scale(0);
        opacity: 1;
    }

    50% {
        transform: translateY(-30px) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(-60px) scale(0);
        opacity: 0;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: 2px solid rgba(99, 102, 241, 0.5);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4),
        0 0 40px rgba(6, 182, 212, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 9998;
    animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4),
            0 0 40px rgba(6, 182, 212, 0.3),
            inset 0 1px 2px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6),
            0 0 60px rgba(6, 182, 212, 0.45),
            inset 0 1px 2px rgba(255, 255, 255, 0.3);
    }
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.15) rotate(360deg);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.6),
        0 0 60px rgba(6, 182, 212, 0.5),
        inset 0 2px 3px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Live Stats Badge */
.live-stats-badge {
    display: none !important;
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.4);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 9997;
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.stats-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    font-size: 1.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff9500;
    font-family: 'Inter', monospace;
}

.stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Achievement Badges */
.achievement-badges {
    display: none !important;
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 1rem;
    z-index: 9996;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate(100px, -50%);
    }

    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

.badge-item {
    position: relative;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(251, 191, 36, 0.4);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateX(-10px) scale(1.05);
    border-color: rgba(251, 191, 36, 0.8);
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.3);
}

.badge-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.6));
}

.badge-count {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fbbf24;
}

.badge-item::before {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 1rem);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.95);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    white-space: nowrap;
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.badge-item:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Cursor Effects */
.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 217, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.15s ease-out;
    z-index: 99997;
    mix-blend-mode: difference;
}

.cursor-dot {
    display: none !important;
    position: fixed;
    width: 8px;
    height: 8px;
    background: #ff9500;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    box-shadow: 0 0 15px #ff9500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .live-stats-badge {
        bottom: 6rem;
        left: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .achievement-badges {
        right: 1rem;
        gap: 0.75rem;
    }

    .badge-item {
        padding: 0.75rem;
    }

    .badge-icon {
        font-size: 1.5rem;
    }

    .badge-count {
        font-size: 0.75rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .cursor-follower,
    .cursor-dot {
        display: none;
    }
}

/* Container */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-inline: clamp(1rem, 3vw, 2rem);
}

/* ============================================
   SUCCESS POPUP MODAL
============================================ */

.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.success-popup {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    transform: scale(0.8) translateY(30px);
    animation: popupEnter 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popupEnter {
    to {
        transform: scale(1) translateY(0);
    }
}

.success-popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4),
        0 0 60px rgba(34, 197, 94, 0.3);
    animation: iconBounce 0.6s ease 0.2s;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.success-popup-title {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
}

.success-popup-message {
    color: #cbd5e1;
    font-size: 1.05rem;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.success-popup-details {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.success-popup-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.75rem 0;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.success-popup-detail-icon {
    font-size: 1.25rem;
    min-width: 24px;
}

.success-popup-close {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.success-popup-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.success-popup-close:active {
    transform: translateY(0);
}

/* Eyebrow */

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #35d7ff;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    /* Animation disabled for performance */
    animation: none !important;
}

@keyframes eyebrowGlow {

    0%,
    100% {
        box-shadow: 0 0 25px rgba(99, 102, 241, 0.3),
                    0 4px 16px rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 35px rgba(99, 102, 241, 0.5),
                    0 0 45px rgba(6, 182, 212, 0.3),
                    0 4px 16px rgba(0, 0, 0, 0.2);
    }
}

/* ============================================
   HEADER
============================================ */

.site-header {
    /* CRITICAL: Position MUST be fixed - ABSOLUTE HIGHEST PRIORITY */
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    z-index: 99999 !important;
    
    /* Prevent ANY position changes */
    margin: 0 !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
    
    /* Styling */
    backdrop-filter: blur(var(--glass-blur-strong)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur-strong)) saturate(var(--glass-saturation));
    background: linear-gradient(to bottom,
            rgba(15, 23, 42, 0.75),
            rgba(30, 41, 59, 0.7));
    padding-block: 1.2rem;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 
        0 8px 32px var(--glass-shadow-medium),
        0 4px 16px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    
    /* No animations or transitions */
    transition: none !important;
    animation: none !important;
    
    /* Performance optimizations */
    will-change: transform;
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    isolation: isolate !important;
    contain: layout style paint !important;
    transform-origin: top left !important;
}

/* Override any inline styles or JavaScript modifications */
.site-header[style*="position"],
.site-header[style*="top"],
.site-header[style*="transform"],
.site-header[style*="left"],
.site-header[style*="right"] {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    transform: translateZ(0) !important;
    z-index: 99999 !important;
}

/* Force header to stay fixed - highest priority */
html .site-header,
body .site-header,
* .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    z-index: 99999 !important;
    transform: translateZ(0) !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Ensure header stays fixed even with scrolled class or any other state */
.site-header.scrolled,
.site-header.active,
.site-header.open,
.site-header[style*="position"],
.site-header[style*="top"],
.site-header[style*="transform"] {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    z-index: 99999 !important;
    transform: translateZ(0) !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Override any inline styles that might affect position */
.site-header[style],
.site-header[style*="position: absolute"],
.site-header[style*="position: relative"],
.site-header[style*="position: static"],
.site-header[style*="position: sticky"] {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    z-index: 99999 !important;
    transform: translateZ(0) !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Force header position even if parent has transform/position */
body > .site-header,
body > header.site-header,
html > body > .site-header,
html > body > header.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    z-index: 99999 !important;
    transform: translateZ(0) !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.site-header::before {
    /* Modern indigo glow under the header */
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 30px;
    background:
        radial-gradient(1100px 80px at 50% 50%, rgba(99, 102, 241, 0.15), transparent);
    filter: blur(22px);
    opacity: 0.8;
    pointer-events: none;
    z-index: 999;
    animation: none !important;
}

.site-header::after {
    /* Modern gradient bar under header */
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(99, 102, 241, 0.8) 50%,
            transparent 100%);
    background-size: 100% 100%;
    box-shadow: 0 12px 42px rgba(0, 0, 0, 0.4), 0 6px 20px rgba(99, 102, 241, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: none !important;
    pointer-events: none;
    z-index: 1001;
}

/* Removed rainbow sheen effect */
.site-header .header-sheen {
    display: none !important;
}

@keyframes headerSheen {
    0% {
        transform: translateX(-120%) skewX(-20deg);
        opacity: 0;
    }

    10% {
        opacity: 0.35;
    }

    50% {
        transform: translateX(120%) skewX(-20deg);
        opacity: 0.55;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateX(220%) skewX(-20deg);
        opacity: 0;
    }
}

@keyframes headerPulse {
    0% {
        opacity: 0.88;
        filter: blur(26px) saturate(0.95) brightness(0.98);
        transform: translateY(0);
    }

    45% {
        opacity: 1;
        filter: blur(16px) saturate(1.05) brightness(1.06);
        transform: translateY(-1px);
    }

    100% {
        opacity: 0.9;
        filter: blur(22px) saturate(1) brightness(1);
        transform: translateY(0);
    }
}

@keyframes headerLineFlow {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative !important;
    z-index: 100001;
    transition: none !important;
    animation: none !important;
    /* Ensure container doesn't affect header position */
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    /* Prevent any transforms from parent */
    contain: layout style !important;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: none !important;
    animation: none !important;
}

.logo:hover {
    transform: none !important;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--accent) 100%);
    background-size: 200% 200%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 900;
    font-size: 1.4rem;
    box-shadow:
        0 0 0 2px rgba(99, 102, 241, 0.5),
        0 0 25px rgba(99, 102, 241, 0.6),
        0 8px 28px rgba(99, 102, 241, 0.4),
        0 4px 16px rgba(6, 182, 212, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: none !important;
    position: relative;
    animation: none !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.logo-mark::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    animation: none !important;
    transition: none !important;
    display: none !important;
}

@keyframes logoMarkGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes logoMarkBorder {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.logo:hover .logo-mark {
    box-shadow:
        0 0 0 2px rgba(99, 102, 241, 0.6),
        0 0 20px rgba(99, 102, 241, 0.5),
        0 4px 16px rgba(6, 182, 212, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
    transform: none !important;
}

.logo:hover .logo-mark::before {
    opacity: 0 !important;
}

.logo:hover .logo-text {
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5)) drop-shadow(0 2px 8px rgba(6, 182, 212, 0.3));
    transform: none !important;
}

.logo-text {
    font-weight: 800;
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-primary) 40%, var(--primary-light) 60%, var(--accent) 100%);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.015em;
    animation: none !important;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5)) drop-shadow(0 2px 8px rgba(6, 182, 212, 0.3));
    transition: none !important;
}

@keyframes logoTextShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Navigation */

.main-nav {
    display: flex;
    gap: 1.5rem;
    font-size: 1rem;
    align-items: center;
}

/* Desktop: nav altijd zichtbaar in header, hamburger verborgen */
@media (min-width: 901px) {
    .main-nav {
        display: flex !important;
        position: relative !important;
        right: auto !important;
        transform: none !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        overflow: visible !important;
        flex-direction: row !important;
        visibility: visible !important;
    }

    .main-nav .drawer-lang-wrap {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }
}

.main-nav a {
    text-decoration: none;
    color: var(--text-primary);
    padding: 0.7rem 1.2rem;
    position: relative;
    font-weight: 600;
    border-radius: 12px;
    transition: none !important;
    animation: none !important;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur-light)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur-light)) saturate(var(--glass-saturation));
    box-shadow: 
        0 4px 16px var(--glass-shadow),
        0 2px 8px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.main-nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.2) 0%,
            rgba(6, 182, 212, 0.15) 100%);
    opacity: 0;
    transition: none !important;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: translateX(-50%);
    transition: none !important;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.main-nav a:hover {
    background: var(--glass-light);
    border-color: var(--glass-border-light);
    color: var(--text-primary);
    transform: none !important;
    box-shadow: 
        0 6px 20px var(--glass-shadow-medium),
        0 3px 12px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.main-nav a:hover::before {
    opacity: 0 !important;
}

.main-nav a:hover::after {
    width: 0 !important;
}

/* Language dropdown */

.lang-dropdown {
    position: relative;
}

.lang-dropdown select {
    appearance: none;
    background: var(--glass);
    backdrop-filter: blur(var(--glass-blur-light)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur-light)) saturate(var(--glass-saturation));
    border: 1.5px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.75rem 2.8rem 0.75rem 1.2rem;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 15px var(--glass-shadow),
        0 2px 8px rgba(99, 102, 241, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.08),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.lang-dropdown select:hover {
    background: var(--glass-light);
    border-color: var(--glass-border-light);
    backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation)) !important;
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px var(--glass-shadow-medium),
        0 4px 12px rgba(99, 102, 241, 0.25),
        0 2px 6px rgba(6, 182, 212, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.12),
        inset 0 -1px 2px rgba(0, 0, 0, 0.15);
}

.lang-dropdown select:focus {
    outline: none;
    border-color: var(--glass-border-medium);
    background: var(--glass-light);
    backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation)) !important;
    box-shadow:
        0 0 0 3px rgba(99, 102, 241, 0.2),
        0 8px 30px var(--glass-shadow-medium),
        0 4px 16px rgba(99, 102, 241, 0.3),
        0 0 25px rgba(6, 182, 212, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.12);
}

/* Mobile Menu Toggle (Hamburger) - Licht Blauw */
.mobile-menu-toggle {
    --bar-h: 3.5px;
    --bar-gap: 6px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: var(--bar-gap);
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 999999;
    position: relative;
    transition: none !important;
    animation: none !important;
    flex-shrink: 0;
    pointer-events: auto;
    will-change: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
    order: 999;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: var(--bar-h);
    background: var(--primary-light);
    border-radius: 3px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

.mobile-menu-toggle:hover {
    transform: none !important;
}

.mobile-menu-toggle:hover span {
    background: var(--accent-light);
    box-shadow: 0 3px 12px rgba(99, 102, 241, 0.6),
        0 0 20px rgba(6, 182, 212, 0.4);
}

/* Hamburger animation when menu is open — X centered via CSS vars */
.mobile-menu-toggle.open span:nth-child(1),
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(calc(var(--bar-h) + var(--bar-gap))) rotate(45deg);
    background: var(--primary-light);
}

.mobile-menu-toggle.open span:nth-child(2),
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.open span:nth-child(3),
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(calc(-1 * (var(--bar-h) + var(--bar-gap)))) rotate(-45deg);
    background: var(--primary-light);
}

/* Hide mobile language, show desktop by default */
.mobile-lang {
    display: none;
}

.desktop-lang {
    display: block;
}

.lang-dropdown::after {
    content: '▼';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary-light);
    font-size: 0.7rem;
    filter: drop-shadow(0 0 5px rgba(99, 102, 241, 0.7));
    transition: all 0.3s ease;
}

/* Contact form service select */
#serviceSelect {
    appearance: none;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(var(--glass-blur-light)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur-light)) saturate(var(--glass-saturation));
    border: 2px solid var(--glass-border);
    color: var(--text-primary);
    padding: 1rem 1.2rem;
    border-radius: 1.2rem;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 16px var(--glass-shadow),
        0 2px 8px rgba(99, 102, 241, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.08),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}

#serviceSelect:hover {
    background: var(--glass-light);
    border-color: var(--glass-border-light);
    backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation)) !important;
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px var(--glass-shadow-medium),
        0 4px 12px rgba(99, 102, 241, 0.25),
        0 2px 6px rgba(6, 182, 212, 0.2),
        inset 0 2px 6px rgba(255, 255, 255, 0.12),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);
}

#serviceSelect:focus {
    outline: none;
    border-color: var(--glass-border-medium);
    background: var(--glass-light);
    backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation)) !important;
    box-shadow:
        0 8px 32px var(--glass-shadow-medium),
        0 4px 16px rgba(99, 102, 241, 0.3),
        0 2px 8px rgba(6, 182, 212, 0.25),
        0 0 20px rgba(99, 102, 241, 0.15),
        inset 0 2px 6px rgba(255, 255, 255, 0.12),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Helpers & validation */
.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 0.35rem;
}

.hp-wrapper {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.hp-label {
    display: none;
}

.hp-field {
    opacity: 0;
}

input:invalid,
select:invalid,
textarea:invalid {
    border-color: rgba(255, 99, 99, 0.6);
}

.lang-dropdown:hover::after {
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(53, 215, 255, 0.8));
}

/* Old lang-switch (keeping for compatibility) */
.lang-switch button {
    border: none;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    margin-left: 0.2rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.lang-switch button.active {
    background: rgba(6, 182, 212, 0.16);
    color: #fbbf24;
    transform: translateY(-1px);
}

/* ============================================
   HERO
============================================ */

.hero {
    padding: 8rem 1.5rem 6rem;
    position: relative;
    z-index: 3;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.15) 50%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 20s ease-in-out infinite;
    pointer-events: none;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(53, 215, 255, 0.18), rgba(34, 197, 94, 0.12) 50%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 15s ease-in-out infinite reverse;
    pointer-events: none;
    filter: blur(60px);
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(3rem, 6vw, 5rem);
    justify-content: space-between;
    flex-wrap: nowrap;
}

.hero-text {
    flex: 1 1 50%;
    max-width: 600px;
    min-width: 0;
}

.hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-primary) 40%, var(--primary-light) 60%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 30px rgba(99, 102, 241, 0.4)) drop-shadow(0 2px 15px rgba(6, 182, 212, 0.3));
    /* Animation disabled for performance */
    animation: none !important;
    text-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
}

@keyframes textShine {

    0%,
    100% {
        filter: drop-shadow(0 2px 20px rgba(99, 102, 241, 0.4));
    }

    50% {
        filter: drop-shadow(0 2px 30px rgba(6, 182, 212, 0.6));
    }
}

.hero-subtitle {
    color: var(--text-secondary);
    opacity: 0.95;
    max-width: 560px;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.75;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
}

.hero-media {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    min-width: 0;
}

/* HERO FOTO + PREMIUM GLOW EFFECT */
.hero-photo-blob {
    position: relative;
    padding: 0.8rem;
    border-radius: 2.5rem;
    background: var(--glass-light);
    backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation));
    border: 2px solid var(--glass-border);
    box-shadow:
        0 30px 80px var(--glass-shadow-medium),
        0 20px 50px rgba(99, 102, 241, 0.25),
        0 10px 30px rgba(99, 102, 241, 0.2),
        0 4px 16px var(--glass-shadow),
        0 0 60px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 2px 10px rgba(255, 255, 255, 0.1),
        inset 0 -2px 6px rgba(0, 0, 0, 0.2);
    /* Animation disabled for performance */
    animation: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Reduced transition for performance */
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    /* Performance optimizations */
    will-change: transform;
    contain: layout style paint;
}

/* Flower decorations removed */

.comment-note {
    display: none;
}

.comment-note {
    display: none;
}

.comment-note {
    display: none;
}

/* Subtle bloom on hero image when visible */
.hero-photo-blob .hero-photo {
    transition: transform 520ms cubic-bezier(.22, .9, .3, 1), filter 520ms ease;
}

.hero-photo-blob:hover .hero-photo {
    transform: scale(1.02) rotate(-1.5deg);
    filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.45));
}

/* Keep flower decorations responsive */
@media (max-width: 900px) {
    .flower-layer {
        right: 1rem;
        top: 0.6rem;
        transform: scale(0.86);
    }

    .petal {
        display: none;
    }
}


@keyframes heroGlow {

    0%,
    100% {
        box-shadow:
            0 30px 80px rgba(0, 0, 0, 0.15),
            0 20px 50px rgba(53, 215, 255, 0.3),
            0 10px 30px rgba(255, 255, 255, 0.4),
            0 0 60px rgba(53, 215, 255, 0.25),
            inset 0 2px 8px rgba(255, 255, 255, 0.5),
            inset 0 -2px 4px rgba(53, 215, 255, 0.1);
    }

    50% {
        box-shadow:
            0 30px 80px rgba(0, 0, 0, 0.9),
            0 0 80px rgba(53, 215, 255, 0.7),
            0 0 60px rgba(255, 149, 0, 0.5),
            inset 0 0 40px rgba(53, 215, 255, 0.2);
    }
}

.hero-photo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 1.8rem;
    border: 2px solid rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 0 20px rgba(99, 102, 241, 0.3),
        0 0 40px rgba(99, 102, 241, 0.2),
        0 10px 50px rgba(0, 0, 0, 0.3);
    /* Animation disabled for performance */
    animation: none !important;
}

@keyframes photoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(53, 215, 255, 0.15) 0%,
            rgba(255, 149, 0, 0.1) 50%,
            rgba(53, 215, 255, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-photo::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    /* Animation disabled for performance */
    animation: none !important;
    pointer-events: none;
}

@keyframes shimmerMove {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.hero-photo:hover {
    transform: scale(1.02);
    border-color: rgba(53, 215, 255, 0.8);
    box-shadow: 0 0 40px rgba(53, 215, 255, 0.5);

}

.hero-photo:hover::before {
    opacity: 1;
}

/* ============================================
   BUTTONS
============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2vw, 0.9rem) clamp(1.2rem, 3vw, 1.8rem);
    border-radius: var(--border-radius-pill);
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #0F172A;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    min-height: 44px;
    touch-action: manipulation;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), var(--btn-hover-overlay, rgba(255, 255, 255, 0.04)) 40%, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-primary {
    /* Modern glass button */
    background: var(--glass-light);
    backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation));
    border: 2px solid var(--glass-border-light);
    color: var(--text-primary);
    font-weight: 700;
    box-shadow: 
        0 8px 32px var(--glass-shadow-medium),
        0 4px 16px rgba(99, 102, 241, 0.25),
        0 2px 8px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.btn-primary:hover {
    background: var(--glass-medium) !important;
    border-color: var(--glass-border-medium) !important;
    color: var(--text-primary) !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 16px 40px var(--glass-shadow-medium),
        0 8px 24px rgba(99, 102, 241, 0.35),
        0 4px 12px rgba(6, 182, 212, 0.25),
        0 0 40px rgba(99, 102, 241, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);
    /* Animation disabled for performance */
    animation: none !important;
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
}

@keyframes skyGlow {
    0% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                    0 4px 16px rgba(99, 102, 241, 0.3);
    }
    50% {
        box-shadow: 0 16px 40px rgba(99, 102, 241, 0.5),
                    0 8px 24px rgba(99, 102, 241, 0.4),
                    0 0 50px rgba(6, 182, 212, 0.4);
    }
    100% {
        box-shadow: 0 16px 40px rgba(99, 102, 241, 0.4),
                    0 8px 24px rgba(99, 102, 241, 0.3),
                    0 0 40px rgba(6, 182, 212, 0.3);
    }
}

/* Bottom undershadow / accent bar for .btn-primary */
.btn-primary::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(53, 215, 255, 0.12) 10%, rgba(255, 149, 0, 0.95) 90%);
    box-shadow: 0 6px 18px rgba(255, 149, 0, 0.08);
    transform: translateY(6px);
    opacity: 0;
    transition: transform 240ms ease, opacity 240ms ease, box-shadow 240ms ease;
    pointer-events: none;
}

@keyframes buttonShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 40px rgba(53, 215, 255, 0.25),
                0 8px 20px rgba(255, 255, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    color: #35d7ff;
}

.btn-primary:hover::before {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.22);
}

@keyframes buttonGlow {

    0%,
    100% {
        filter: brightness(1) saturate(1.2);
    }

    50% {
        filter: brightness(1.5) saturate(1.8);
    }
}

@keyframes buttonPulse {

    0%,
    100% {
        box-shadow:
            0 30px 80px rgba(255, 149, 0, 1),
            0 20px 60px rgba(251, 146, 60, 0.9),
            0 0 120px rgba(249, 115, 22, 0.8),
            0 0 80px rgba(255, 149, 0, 0.7),
            inset 0 4px 6px rgba(255, 255, 255, 0.6),
            inset 0 -4px 6px rgba(0, 0, 0, 0.4);
    }

    50% {
        box-shadow:
            0 35px 100px rgba(255, 149, 0, 1),
            0 25px 70px rgba(251, 146, 60, 1),
            0 0 140px rgba(249, 115, 22, 1),
            0 0 80px rgba(255, 149, 0, 0.7),
            inset 0 3px 4px rgba(255, 255, 255, 0.5),
            inset 0 -2px 2px rgba(0, 0, 0, 0.3);
    }
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05),
                inset 0 1px 1px rgba(255, 255, 255, 0.4);
    color: #35d7ff;
}

.btn-ghost:hover {
    background: var(--glass-light);
    border-color: var(--glass-border-light);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px var(--glass-shadow-medium),
        0 6px 20px rgba(99, 102, 241, 0.25),
        0 3px 10px rgba(6, 182, 212, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.12),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
}

.btn-full {
    width: 100%;
}

/* Unified button hover tint and transitions */
.btn {
    transition: transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1),
        box-shadow 300ms cubic-bezier(0.2, 0.9, 0.2, 1),
        background 280ms ease,
        color 180ms ease;
    --btn-hover-overlay: rgba(255, 255, 255, 0.04);
}

/* Per-button hover tint variables */
.btn-primary {
    --btn-hover-overlay: rgba(255, 213, 0, 0.12);
    /* goldish overlay (#ffd500) */
}

.btn-ghost {
    --btn-hover-overlay: rgba(168, 85, 247, 0.10);
}

.btn-whatsapp {
    --btn-hover-overlay: rgba(37, 211, 102, 0.12);
}

/* Gentle hover lift applied to all buttons unless specific hover overrides exist */
.btn:hover {
    transform: translateY(-4px) scale(1.02);
}

/* Improve contrast on hover for ghost buttons */
.btn-ghost:hover {
    color: #35d7ff;
}

/* Ensure primary button keeps high-contrast text */
.btn-primary:hover {
    color: #35d7ff;
    text-shadow: 0 2px 8px rgba(53, 215, 255, 0.2);
}

/* Button entrance and hover animations */
@keyframes btnEntrance {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
        filter: blur(2px) saturate(0.9);
    }

    60% {
        opacity: 1;
        transform: translateY(-6px) scale(1.02);
        filter: blur(0px) saturate(1.05);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px) saturate(1);
    }
}

@keyframes btnHoverPulse {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 30px rgba(255, 149, 0, 0.18);
    }

    50% {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 20px 60px rgba(255, 149, 0, 0.26);
    }

    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 30px rgba(255, 149, 0, 0.18);
    }
}

/* Staggered entrance for hero action buttons (triggered by .visible on the hero text) */
.hero-text .hero-actions .btn {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.js-loaded .hero-text .hero-actions .btn {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
}

.hero-text.visible .hero-actions .btn {
    animation: btnEntrance 620ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.hero-text.visible .hero-actions .btn:nth-child(1) {
    animation-delay: 0.08s;
}

.hero-text.visible .hero-actions .btn:nth-child(2) {
    animation-delay: 0.18s;
}

.hero-text.visible .hero-actions .btn:nth-child(3) {
    animation-delay: 0.28s;
}

/* Hover pulse for primary button (keeps existing color rules) */
.btn-primary:hover {
    /* Animation disabled for performance */
    animation: none !important;
}

/* Slight pop on focus/keyboard navigation */
.btn:focus {
    outline: none;
    box-shadow: 0 8px 30px rgba(53, 215, 255, 0.12);
    transform: translateY(-3px) scale(1.01);
}

/* FINAL OVERRIDE: two-color hover (cyan -> orange) with polished glow + one-shot shimmer */
.btn-primary:hover {
    /* Silkier micro-gradient: mostly cyan with a soft narrow blend to orange */
    background: linear-gradient(90deg,
            #00b4d8 0%,
            #06c2df 38%,
            #ffb23b 62%,
            #ffba08 100%) !important;
    /* keep border dark so no orange rim shows on top/bottom */
    border-color: rgba(2, 18, 40, 0.85) !important;
    color: #ffd500 !important;
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 14px 36px rgba(82, 255, 238, 0.08),
        0 8px 20px rgba(0, 18, 40, 0.10),
        0 0 64px rgba(82, 255, 238, 0.04);
    /* run a shortened borderGlow once on hover */
    /* Animation disabled for performance */
    animation: none !important;
}

/* Specific CTA styling for the hero primary action */
.btn-cta {
    /* slightly larger, more prominent */
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    transform: translateY(0);
    transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 320ms ease, background 300ms ease;
}

/* entrance: gentle pop + glow (with JS); zonder JS blijft CTA zichtbaar */
.hero-text.visible .btn-cta {
    animation: ctaEntrance 720ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
    animation-delay: 0.05s;
}

@keyframes ctaEntrance {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.96) rotate(-1deg);
        filter: blur(2px) saturate(0.9);
    }

    60% {
        opacity: 1;
        transform: translateY(-8px) scale(1.06) rotate(0.6deg);
        filter: blur(0) saturate(1.05);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0) saturate(1);
    }
}

/* Hover state for CTA: two-color micro-gradient with black text, short shimmer and bounce */
.btn-cta:hover {
    background: linear-gradient(90deg, var(--primary) 0%, #06c2df 46%, #ffb249 62%, var(--accent) 100%);
    color: #ffd500 !important;
    border-color: rgba(2, 18, 40, 0.85) !important;
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 18px 48px rgba(82, 255, 238, 0.08), 0 10px 28px rgba(2, 18, 40, 0.12);
    animation: ctaBounce 720ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

/* short bounce to make hover feel lively */
@keyframes ctaBounce {
    0% {
        transform: translateY(0) scale(1);
    }

    30% {
        transform: translateY(-12px) scale(1.07);
    }

    60% {
        transform: translateY(-6px) scale(1.03);
    }

    100% {
        transform: translateY(-10px) scale(1.04);
    }
}

/* short one-shot shimmer tuned for the CTA */
.btn-cta::after {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.65), transparent);
    transform: rotate(25deg);
    pointer-events: none;
    opacity: 0;
}

.btn-cta:hover::after {
    animation: shimmerOnce 0.46s cubic-bezier(0.22, 0.9, 0.3, 1) forwards;
}

/* keep the bottom accent subtle for CTA */
.btn-cta::before {
    height: 6px;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(82, 255, 238, 0.12), rgba(255, 213, 0, 0.95));
    transform: translateY(6px);
    opacity: 0;
}

.btn-cta:hover::before {
    opacity: 0.95;
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(255, 213, 0, 0.14);
}

/* one-shot shimmer on hover (uses ::after). short and subtle */
@keyframes shimmerOnce {
    0% {
        transform: translateX(-120%) translateY(-120%) rotate(45deg);
        opacity: 0;
    }

    28% {
        transform: translateX(-4%) translateY(-4%) rotate(45deg);
        opacity: 0.45;
    }

    100% {
        transform: translateX(120%) translateY(120%) rotate(45deg);
        opacity: 0;
    }
}

.btn-primary::after {
    /* shimmer layer — will animate once on hover; keep white highlight only */
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: rotate(45deg);
    pointer-events: none;
}

.btn-primary:hover::after {
    animation: shimmerOnce 0.48s cubic-bezier(0.22, 0.9, 0.3, 1) forwards;
}

/* animated subtle border/glow that reads like a gold rim */
@keyframes borderGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 213, 0, 0);
    }

    45% {
        box-shadow: 0 0 22px 6px rgba(255, 213, 0, 0.12);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 213, 0, 0);
    }
}

/* keep the undershadow but subtle so hover reads as the two colors */
.btn-primary::before {
    transition: transform 240ms ease, opacity 240ms ease, box-shadow 240ms ease;
    /* bottom accent only: keep small height so orange doesn't peek at top */
    height: 6px;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.btn-primary:hover::before {
    opacity: 0.95;
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(255, 213, 0, 0.14);
}

/* Admin UI global styles */
.admin-container {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(53, 215, 255, 0.25);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    margin: 0 0 2rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.admin-title {
    color: #e2e8f0;
    font-weight: 800;
    font-size: 1.25rem;
}

.admin-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(53, 215, 255, 0.25);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.admin-card h2 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #ff9500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-section {
    margin-bottom: 2rem;
}

.admin-actions {
    display: flex;
    gap: 0.75rem;
}

.admin-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(53, 215, 255, 0.4), rgba(255, 149, 0, 0.35), transparent);
    margin: 0.75rem 0 1.25rem;
}

/* Admin forms */
.admin-card input[type="text"],
.admin-card input[type="url"],
.admin-card input[type="email"],
.admin-card input[type="password"],
.admin-card input[type="file"],
.admin-card select,
.admin-card textarea {
    width: 100%;
    padding: 0.6rem;
    margin-top: 0.3rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 0.5rem;
    color: #fff;
    font-size: 1rem;
}

.admin-card small {
    color: #9ca3af;
    display: block;
    margin-top: 0.3rem;
}

/* Login page polish */
.login-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
    padding: 3rem;
    border-radius: 1.5rem;
    max-width: 420px;
    width: 100%;
    border: 1px solid rgba(255, 149, 0, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.login-box h1 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ffffff;
}

.login-error {
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.4);
    padding: 0.8rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    color: #fca5a5;
}

/* ============================================
   SECTIONS
============================================ */

.section {
    padding: calc(var(--section-padding) + 1rem) 1.5rem;
    position: relative;
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.section-header h2 {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-primary) 30%, var(--primary-light) 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.3;
    position: relative;
    /* Animation disabled for performance */
    animation: none !important;
    filter: drop-shadow(0 4px 20px rgba(99, 102, 241, 0.3));
}

@keyframes gradientTextFlow {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.8), rgba(99, 102, 241, 1), rgba(6, 182, 212, 0.8), transparent);
    background-size: 100% 100%;
    margin: 1rem auto 0;
    border-radius: 3px;
    box-shadow:
        0 0 20px rgba(99, 102, 241, 0.6),
        0 0 10px rgba(99, 102, 241, 0.4),
        0 2px 8px rgba(6, 182, 212, 0.3);
    animation: none !important;
}

@keyframes gradientSlide {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.section-subtitle {
    opacity: 0.85;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #d1d5db;
}

.services-title-with-icons {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.title-icon-group {
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
}

.title-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary-light);
    filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.7)) drop-shadow(0 0 8px rgba(6, 182, 212, 0.5));
    animation: none !important; /* Disabled for performance */
}

.title-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.title-icon:nth-child(3) {
    animation-delay: 1s;
}

.title-icon:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ============================================
   SERVICES GRID  (MET ORANJE GLOW)
============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.2rem, 3vw, 2.2rem);
    margin-top: 2rem;
}

.service-card {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: clamp(1.2rem, 2vw, 1.8rem);

    /* Sky glassmorphism */
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);

    /* Sky border + glow */
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 8px 24px rgba(53, 215, 255, 0.3),
        0 4px 16px rgba(255, 255, 255, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);

    min-height: 260px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Reduced transition for performance */
    overflow: hidden;
    /* Performance optimizations */
    will-change: transform;
    contain: layout style paint;
}

.service-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    filter: drop-shadow(0 0 18px rgba(99, 102, 241, 0.6)) drop-shadow(0 4px 12px rgba(6, 182, 212, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    /* Animation disabled for performance */
    animation: none !important;
}

.service-card-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    /* Animation disabled for performance */
    animation: none !important;
    z-index: -1;
    filter: blur(8px);
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes glowPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.service-card-icon svg {
    width: 100%;
    height: 100%;
}

.service-card-icon-dual {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: auto;
}

.service-card-icon-dual svg {
    width: 2.5rem;
    height: 2.5rem;
}

.icon-arrow {
    font-size: 1.8rem;
    color: var(--primary-light);
    font-weight: bold;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(3deg); /* Reduced transform for performance */
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.7)) drop-shadow(0 0 15px rgba(6, 182, 212, 0.5));
    color: var(--primary-light);
    animation: none !important; /* Disabled for performance */
}

.service-card h3 {
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-primary) 40%, var(--primary-light) 60%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
    position: relative;
    line-height: 1.3;
}

.service-card p {
    font-size: 1.05rem;
    color: #0F172A;
    opacity: 0.85;
    line-height: 1.7;
}

/* Hover: Sky lift */
.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.6);
    box-shadow:
        0 16px 48px rgba(53, 215, 255, 0.25),
        0 12px 32px rgba(255, 255, 255, 0.5),
        0 8px 24px rgba(53, 215, 255, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

/* Extra aura boven de kaart */
.service-card::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 0%,
            rgba(255, 255, 255, 0.4),
            rgba(53, 215, 255, 0.3) 50%,
            transparent 70%);
    opacity: 0;
    transform: scale(1);
    transition: 0.5s ease;
    z-index: -1;
    filter: blur(10px);
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(1.2);
}

/* ============================================
   5-STAPPEN AANPAK
============================================ */

.steps-section {
    padding-top: 0;
}

.steps-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.steps-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 2.5rem;
    max-width: 650px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: clamp(1rem, 2vw, 1.4rem);
    padding: clamp(1.2rem, 2.5vw, 1.8rem) clamp(1.2rem, 3vw, 1.8rem);
    border-radius: var(--border-radius-lg);
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.step-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 1rem 0 0 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    transform: translateX(12px) translateY(-6px);
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(255, 255, 255, 0.07);
    box-shadow:
        0 15px 30px rgba(99, 102, 241, 0.2),
        0 0 40px rgba(6, 182, 212, 0.15);
}

.step-card:hover::after {
    opacity: 1;
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.step-card:hover .step-number::before {
    opacity: 1;
}

@keyframes numberGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ============================================
   CLIENTS SLIDER — Modern Premium Design
============================================ */

.clients-section {
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(53, 215, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 149, 0, 0.1) 0%, transparent 50%),
        linear-gradient(180deg,
            rgba(15, 23, 42, 0.5) 0%,
            rgba(255, 149, 0, 0.06) 50%,
            rgba(15, 23, 42, 0.5) 100%);
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(53, 215, 255, 0.4),
            rgba(255, 149, 0, 0.4),
            transparent);
}

.clients-section .container {
    max-width: 100%;
    padding: 0;
}

.clients-header {
    text-align: center;
    margin-bottom: 5rem;
    padding-top: 4rem;
}

.clients-header .eyebrow {
    margin-bottom: 0.5rem;
}

/* ============================================
   TEAM SECTION
============================================ */
.team-section {
    padding: var(--section-padding) 0;
    background: radial-gradient(circle at 30% 20%, rgba(53, 215, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 149, 0, 0.06) 0%, transparent 50%);
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header .eyebrow {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.team-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--glass);
    backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation));
    border: 2px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 25px var(--glass-shadow),
        0 4px 12px rgba(99, 102, 241, 0.15),
        0 2px 6px rgba(6, 182, 212, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 2px 4px rgba(255, 255, 255, 0.08),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(53, 215, 255, 0.2) 0%,
        rgba(255, 149, 0, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.team-card:hover {
    transform: translateY(-8px);
    background: var(--glass-light);
    border-color: var(--glass-border-light);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
    box-shadow:
        0 16px 40px var(--glass-shadow-medium),
        0 8px 20px rgba(99, 102, 241, 0.25),
        0 4px 12px rgba(6, 182, 212, 0.2),
        0 0 30px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 3px 6px rgba(255, 255, 255, 0.12),
        inset 0 -3px 6px rgba(0, 0, 0, 0.15);
}

.team-card:hover::before {
    opacity: 1;
}

.team-photo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(53, 215, 255, 0.4);
    box-shadow: 0 8px 25px rgba(53, 215, 255, 0.3);
    z-index: 1;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.1);
}

.team-info {
    position: relative;
    z-index: 1;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.team-role {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-email {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.team-email:hover {
    color: var(--accent);
    text-decoration: underline;
}

.team-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
    margin-top: 1rem;
}

.team-phone {
    display: inline-block;
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.team-phone:hover {
    color: var(--accent);
}

.team-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    transition: color 0.2s ease, transform 0.2s ease;
}

.team-linkedin:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.team-loading {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.team-loading::after {
    content: '';
    width: 28px;
    height: 28px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--primary-light);
    border-radius: 50%;
    animation: teamSpin 0.8s linear infinite;
}

@keyframes teamSpin {
    to { transform: rotate(360deg); }
}

.team-grid-single {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.team-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 3rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    padding: var(--section-padding) 0;
    background: radial-gradient(circle at 30% 20%, rgba(53, 215, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 149, 0, 0.06) 0%, transparent 50%);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header .eyebrow {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.faq-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass);
    backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation));
    border: 2px solid var(--glass-border);
    border-radius: 1rem;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 15px var(--glass-shadow),
        0 2px 8px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.08),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-item:hover {
    background: var(--glass-light);
    border-color: var(--glass-border-light);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
    box-shadow:
        0 8px 25px var(--glass-shadow-medium),
        0 4px 12px rgba(99, 102, 241, 0.2),
        0 2px 6px rgba(6, 182, 212, 0.15),
        0 0 20px rgba(99, 102, 241, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 2px 4px rgba(255, 255, 255, 0.12),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
    transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-item[open] .faq-question {
    color: var(--primary);
    border-bottom: 1px solid rgba(53, 215, 255, 0.2);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 3rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .faq-list {
        gap: 0.75rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
        padding-right: 3rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
        font-size: 0.95rem;
    }
}

.clients-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    margin-bottom: 1rem;
}

.clients-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

@keyframes clientsTitleShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.clients-slider {
    overflow: hidden;
    margin-bottom: 3rem;
    position: relative;
    padding: 2rem 0;
}

.clients-slider::before,
.clients-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.clients-slider::before {
    left: 0;
    background: linear-gradient(90deg,
            rgba(15, 23, 42, 1) 0%,
            rgba(15, 23, 42, 0.8) 40%,
            rgba(15, 23, 42, 0) 100%);
}

.clients-slider::after {
    right: 0;
    background: linear-gradient(90deg,
            rgba(15, 23, 42, 0) 0%,
            rgba(15, 23, 42, 0.8) 60%,
            rgba(15, 23, 42, 1) 100%);
}

/* Track (rij logos) */
.clients-track {
    display: flex;
    gap: 2.5rem;
    white-space: nowrap;
    /* Animation disabled for performance - using CSS transform instead */
    animation: none !important;
    will-change: transform;
}

.clients-slider-bottom {
    padding-bottom: 4rem;
}

.clients-slider-bottom .clients-track {
    /* Animation disabled for performance - using CSS transform instead */
    animation: none !important;
}

/* Hover = pauze animatie */
.clients-slider:hover .clients-track {
    animation-play-state: paused;
}

/* Logo card — Premium 3D glassmorphism */
.client-logo-card {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    height: 120px;
    padding: 0;
    border-radius: 1.2rem;

    background: var(--glass-light);
    backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation));

    border: 2px solid var(--glass-border);
    position: relative;

    box-shadow:
        0 10px 40px var(--glass-shadow-medium),
        0 4px 16px rgba(99, 102, 241, 0.2),
        0 2px 8px rgba(6, 182, 212, 0.15),
        0 0 20px rgba(99, 102, 241, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 2px 6px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);

    display: flex;
    justify-content: center;
    align-items: center;

    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
}

/* Animated border gradient */
.client-logo-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg,
            rgba(53, 215, 255, 0.6),
            rgba(255, 149, 0, 0.5),
            rgba(53, 215, 255, 0.6));
    background-size: 200% 200%;
    border-radius: 1.3rem;
    z-index: -1;
    /* Animation disabled for performance */
    animation: none !important;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Glow overlay */
.client-logo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 149, 0, 0.2) 0%,
            transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

@keyframes borderRotate {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Logo image container for consistent sizing */
.client-logo-card>* {
    max-width: 120px;
    max-height: 120px;
}

/* Logo image */
.client-logo-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center;
    border-radius: 1.2rem;
    filter: brightness(1.25) contrast(1.15) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    mix-blend-mode: screen;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
    transform: translateZ(20px);
}

/* Hover effect - Premium 3D lift */
.client-logo-card:hover {
    transform: translateY(-16px) translateZ(30px) scale(1.08) rotateX(5deg);
    background: var(--glass-medium);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
    border-color: var(--glass-border-medium);

    box-shadow:
        0 30px 70px var(--glass-shadow-medium),
        0 15px 50px rgba(99, 102, 241, 0.35),
        0 8px 24px rgba(6, 182, 212, 0.3),
        0 4px 12px rgba(99, 102, 241, 0.25),
        0 0 50px rgba(99, 102, 241, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.client-logo-card:hover::before {
    opacity: 1;
}

.client-logo-card:hover::after {
    opacity: 1;
}

.client-logo-card:hover img {
    filter: brightness(1.4) contrast(1.2) drop-shadow(0 12px 24px rgba(53, 215, 255, 0.5)) drop-shadow(0 8px 20px rgba(255, 149, 0, 0.4));
    transform: translateZ(40px) scale(1.12);
}

/* Text fallback styling (if no image) */
.client-logo-card:not(:has(img)) {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 149, 0, 0.9);
    text-align: center;
    text-shadow: 0 2px 8px rgba(255, 149, 0, 0.3);
}

/* Animaties voor slider */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ============================================
   CONTACT
============================================ */

.contact-inner {
    display: flex;
    align-items: flex-start;
    gap: clamp(2rem, 4vw, 3rem);
    flex-wrap: wrap;
}

.contact-text {
    flex: 1 1 min(100%, 260px);
    max-width: 420px;
}

.contact-form {
    flex: 1 1 min(100%, 280px);
    max-width: 100%;
    padding: 2.5rem;
    background: var(--glass);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    border-radius: 2rem;
    border: 2px solid var(--glass-border);
    box-shadow: 
        0 20px 60px var(--glass-shadow-medium),
        0 12px 32px rgba(99, 102, 241, 0.2),
        0 8px 24px rgba(99, 102, 241, 0.15),
        0 4px 12px var(--glass-shadow),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 2px 8px rgba(255, 255, 255, 0.08),
        inset 0 -2px 6px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .contact-form {
        max-width: 450px;
    }
}

/* Professional contact pills (email + phone) */
.contact-info-box {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    background: var(--glass);
    backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation));
    border: 2px solid var(--glass-border);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    box-shadow: 
        0 8px 24px var(--glass-shadow),
        0 4px 12px rgba(99, 102, 241, 0.15),
        0 2px 6px rgba(99, 102, 241, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.08),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-box .contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--glass-light);
    backdrop-filter: blur(var(--glass-blur-light)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur-light)) saturate(var(--glass-saturation));
    border: 1px solid var(--glass-border);
    color: var(--primary-light);
    font-size: 1.1rem;
    box-shadow: 
        0 4px 12px var(--glass-shadow),
        0 2px 6px rgba(99, 102, 241, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.1),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}

.contact-info-box .contact-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
}

.contact-info-box:hover {
    transform: translateY(-4px) scale(1.02);
    background: var(--glass-light);
    border-color: var(--glass-border-light);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
    box-shadow: 
        0 12px 32px var(--glass-shadow-medium),
        0 8px 20px rgba(99, 102, 241, 0.3),
        0 4px 12px rgba(6, 182, 212, 0.2),
        0 0 30px rgba(99, 102, 241, 0.15),
        inset 0 2px 6px rgba(255, 255, 255, 0.12),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);
}

.js-footer-email,
.js-footer-phone {
    cursor: pointer;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.01em;
}

input,
textarea,
select {
    width: 100%;
    border-radius: 1.2rem;
    border: 2px solid var(--glass-border);
    padding: 1rem 1.2rem;
    background: var(--glass);
    backdrop-filter: blur(var(--glass-blur-light)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur-light)) saturate(var(--glass-saturation));
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 16px var(--glass-shadow),
        0 2px 8px rgba(99, 102, 241, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.08),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--glass-border-medium);
    background: var(--glass-light);
    backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur-medium)) saturate(var(--glass-saturation)) !important;
    box-shadow:
        0 8px 32px var(--glass-shadow-medium),
        0 4px 16px rgba(99, 102, 241, 0.3),
        0 2px 8px rgba(6, 182, 212, 0.2),
        0 0 20px rgba(99, 102, 241, 0.15),
        inset 0 2px 6px rgba(255, 255, 255, 0.12),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.form-feedback {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Service Box Grid styling - Premium Design */
.service-box-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.service-box {
    cursor: pointer;
    position: relative;
    border-radius: 1.2rem;
    background: linear-gradient(135deg,
            rgba(10, 22, 60, 0.8) 0%,
            rgba(22, 47, 74, 0.7) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(53, 215, 255, 0.3);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 110px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(53, 215, 255, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.service-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(53, 215, 255, 0.2) 0%,
            rgba(255, 149, 0, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-box::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(135deg,
            rgba(53, 215, 255, 0.4) 0%,
            rgba(255, 149, 0, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-box:hover {
    border-color: rgba(53, 215, 255, 0.6);
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 15px 45px rgba(53, 215, 255, 0.3),
        0 0 40px rgba(53, 215, 255, 0.25),
        0 0 20px rgba(255, 149, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.service-box:hover::before {
    opacity: 0.7;
}

.service-box:hover::after {
    opacity: 1;
}

.service-box input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.2rem 0.8rem;
    position: relative;
    z-index: 1;
    height: 100%;
}

.service-icon {
    font-size: 2.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    position: relative;
}

.service-icon-group {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.service-icon-small {
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.store-logo {
    width: 1.8rem;
    height: 1.8rem;
    color: #d1d5db;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.tech-logo {
    width: 1.5rem;
    height: 1.5rem;
    color: #d1d5db;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.web-to-app {
    gap: 0.4rem !important;
}

.arrow-icon {
    font-size: 1.2rem;
    color: #00d9ff;
    font-weight: bold;
}

.service-icon::before {
    content: attr(data-icon);
    position: absolute;
    inset: 0;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d1d5db;
    text-align: center;
    transition: all 0.3s ease;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.service-subtitle {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.7;
    display: block;
    margin-top: 0.2rem;
}

.selection-hint {
    font-size: 0.85rem;
    color: #00d9ff;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
}

.optional-label {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 400;
    font-style: italic;
    opacity: 0.8;
}

/* Checked state - Premium Active */
.service-box input[type="radio"]:checked~.service-box-content {
    animation: serviceSelect 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-box input[type="radio"]:checked~.service-box-content .service-icon {
    filter: brightness(1.2) drop-shadow(0 0 25px rgba(53, 215, 255, 0.8)) drop-shadow(0 0 15px rgba(255, 149, 0, 0.5));
    transform: scale(1.15) rotate(5deg);
}

.service-box input[type="radio"]:checked~.service-box-content .service-icon-small {
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(53, 215, 255, 0.8)) drop-shadow(0 0 12px rgba(255, 149, 0, 0.5));
    transform: scale(1.1);
}

.service-box input[type="radio"]:checked~.service-box-content .store-logo {
    color: #00d9ff;
    filter: drop-shadow(0 0 25px rgba(0, 217, 255, 0.9)) drop-shadow(0 0 15px rgba(255, 149, 0, 0.6));
    transform: scale(1.1);
}

.service-box input[type="radio"]:checked~.service-box-content .tech-logo {
    color: #00d9ff;
    filter: drop-shadow(0 0 25px rgba(0, 217, 255, 0.9)) drop-shadow(0 0 15px rgba(255, 149, 0, 0.6));
    transform: scale(1.1);
}

.service-box input[type="radio"]:checked~.service-box-content .arrow-icon {
    color: #ff9500;
    text-shadow: 0 0 20px rgba(255, 149, 0, 0.8);
    transform: scale(1.2);
}

.service-box input[type="radio"]:checked~.service-box-content .service-icon-group {
    animation: iconBounce 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes iconBounce {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.service-box input[type="radio"]:checked~.service-box-content .service-title {
    background: linear-gradient(135deg, #00d9ff 0%, #ff9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(53, 215, 255, 0.3);
}

.service-box:has(input[type="radio"]:checked) {
    border-color: rgba(53, 215, 255, 1);
    background: linear-gradient(135deg,
            rgba(53, 215, 255, 0.2) 0%,
            rgba(22, 47, 74, 0.9) 50%,
            rgba(255, 149, 0, 0.15) 100%);
    box-shadow:
        0 12px 40px rgba(53, 215, 255, 0.5),
        0 0 60px rgba(53, 215, 255, 0.4),
        0 0 30px rgba(255, 149, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.service-box:has(input[type="radio"]:checked)::before {
    opacity: 1;
}

.service-box:has(input[type="radio"]:checked)::after {
    opacity: 1;
    animation: borderPulse 2s ease infinite;
}

@keyframes serviceSelect {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes borderPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Radio buttons styling (legacy) */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    padding: 0.9rem 1.2rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(53, 215, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.radio-label::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(53, 215, 255, 0.1) 0%,
            rgba(255, 149, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.radio-label:hover {
    border-color: rgba(53, 215, 255, 0.4);
    background: rgba(15, 23, 42, 0.8);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(53, 215, 255, 0.2);
}

.radio-label:hover::before {
    opacity: 1;
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-custom {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(53, 215, 255, 0.4);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: rgba(15, 23, 42, 0.8);
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.radio-label input[type="radio"]:checked~.radio-custom {
    border-color: rgba(99, 102, 241, 0.8);
    background: rgba(99, 102, 241, 0.1);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.radio-label input[type="radio"]:checked~.radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.radio-label input[type="radio"]:checked~.radio-text {
    color: var(--primary);
    font-weight: 600;
}

.radio-text {
    font-size: 0.95rem;
    color: #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Form buttons container */
.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--primary) 0%, #25D366 100%);
    border: 2px solid rgba(37, 211, 102, 0.6);
    color: #fff;
    font-weight: 700;
    box-shadow:
        0 15px 40px rgba(99, 102, 241, 0.35),
        0 8px 25px rgba(37, 211, 102, 0.3),
        inset 0 2px 2px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, #128C7E 100%);
    border-color: rgba(37, 211, 102, 0.8);
    transform: translateY(-5px) scale(1.06);
    box-shadow:
        0 18px 50px rgba(37, 211, 102, 0.45),
        0 0 40px rgba(37, 211, 102, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

/* ============================================
     WHATSAPP ANIMATION (PULSE + RING WAVE)
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 50;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: waPulse 2.2s ease-in-out infinite;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35);
    /* Animation disabled for performance */
    animation: none !important;
}

@keyframes waPulse {

    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }

    50% {
        transform: translateY(-2px) scale(1.06);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    }
}

@keyframes waRing {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35);
        opacity: 1;
    }

    100% {
        box-shadow: 0 0 0 24px rgba(34, 197, 94, 0);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    animation-play-state: paused;
}

/* Inline WhatsApp links pulse gently on hover */
.js-whatsapp-link {
    position: relative;
    overflow: hidden;
}

.js-whatsapp-link::after {
    content: '';
    position: absolute;
    left: -120%;
    top: 0;
    bottom: 0;
    width: 120%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-20deg);
    opacity: 0;
}

.js-whatsapp-link:hover::after {
    /* Animation disabled for performance */
    animation: none !important;
}

@keyframes waShine {
    0% {
        left: -120%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}

/* Skip link (accessibility) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 100000;
    padding: 0.75rem 1.25rem;
    background: var(--primary, #6366f1);
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: top 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.skip-link:focus {
    top: 1rem;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* ============================================
   FOOTER
============================================ */

.site-footer {
    margin-top: 5rem;
    padding-top: 5rem;
    padding-bottom: 2rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        linear-gradient(180deg,
            rgba(15, 23, 42, 0.95) 0%,
            rgba(30, 41, 59, 0.98) 100%);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    position: relative;
    box-shadow: 
        0 -15px 50px var(--glass-shadow-medium),
        0 -8px 24px rgba(99, 102, 241, 0.15),
        0 -4px 12px rgba(6, 182, 212, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-top: 1px solid var(--glass-border);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 149, 0, 1) 10%,
            rgba(251, 146, 60, 1) 25%,
            rgba(255, 255, 255, 1) 45%,
            rgba(255, 149, 0, 1) 65%,
            rgba(249, 115, 22, 1) 80%,
            transparent 100%);
    background-size: 200% 100%;
    animation: footerLineFlow 15s linear infinite;
    box-shadow:
        0 0 70px rgba(255, 149, 0, 1),
        0 0 50px rgba(251, 146, 60, 1),
        0 0 35px rgba(249, 115, 22, 0.9),
        0 -3px 25px rgba(255, 149, 0, 0.8);
}

@keyframes footerLineFlow {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--glass);
    backdrop-filter: blur(var(--glass-blur-light)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur-light)) saturate(var(--glass-saturation));
    border-left: 4px solid;
    border-image: linear-gradient(180deg, var(--primary-light), var(--accent)) 1;
    border-radius: 0.75rem;
    box-shadow: 
        0 4px 15px var(--glass-shadow),
        0 2px 8px rgba(99, 102, 241, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.08),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.05rem;
    font-weight: 800;
    background: linear-gradient(135deg, #38bdf8 0%, #60efff 50%, #ff9500 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    filter: drop-shadow(0 0 10px rgba(53, 215, 255, 0.4));
    animation: footerHeadingShimmer 6s ease-in-out infinite;
}

@keyframes footerHeadingShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    padding-left: 1rem;
}

.footer-column ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.footer-column ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
    color: #38bdf8;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-made-with {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Social links: altijd 4 iconen in één rij (4x1) op alle devices */
.social-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.75rem;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
}

.footer-social-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.75rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.footer-social-links .footer-social-link,
.footer-social .footer-social-link {
    flex-shrink: 0 !important;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0 !important;
    border-radius: 50%;
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid rgba(255, 149, 0, 0.2);
    color: #9ca3af;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.4);
    color: #fbbf24;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Footer: show social links as icons only (keep accessible text for screen readers) */
.footer-social-links .footer-social-link,
.footer-social .footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 999px;
    /* Base: light blue subtle shell */
    background: linear-gradient(180deg, rgba(0, 180, 216, 0.06), rgba(0, 180, 216, 0.03));
    border: 1px solid rgba(82, 255, 238, 0.12);
    color: #52ffee;
    /* base icon color */
    /* icon color */
    position: relative;
    overflow: hidden;
    transition: transform 300ms cubic-bezier(.16, .84, .24, 1), box-shadow 300ms ease, background 300ms ease, border-color 300ms ease, color 220ms ease;
}

.footer-social-links .footer-social-link span,
.footer-social .footer-social-link span {
    /* show only icon visually; anchors provide aria-label for accessibility */
    display: none !important;
}

.footer-social-links .footer-social-link:hover svg,
.footer-social .footer-social-link:hover svg {
    transform: scale(1.08);
    filter: drop-shadow(0 6px 20px rgba(255, 213, 0, 0.28));
}

/* Hover color: make social icon buttons warm gold on hover */
/* Hover: warm gold glow with a soft pop animation */
.footer-social-links .footer-social-link:hover,
.footer-social .footer-social-link:hover {
    background: linear-gradient(135deg, rgba(255, 213, 0, 0.16), rgba(255, 213, 0, 0.10));
    border-color: rgba(255, 213, 0, 0.36);
    color: #ffffff;
    /* white icon for crisp contrast */
    transform: translateY(-6px) scale(1.06) rotate(-3deg);
    box-shadow: 0 22px 56px rgba(255, 213, 0, 0.14), 0 10px 30px rgba(0, 0, 0, 0.32);
    animation: social-pop 420ms cubic-bezier(.22, 1, .36, 1);
}

.footer-social-links .footer-social-link:hover svg,
.footer-social .footer-social-link:hover svg {
    filter: drop-shadow(0 10px 30px rgba(255, 213, 0, 0.42));
}

/* Focus (keyboard) - visible ring and same pop */
.footer-social-links .footer-social-link:focus,
.footer-social .footer-social-link:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 213, 0, 0.12), 0 10px 30px rgba(255, 213, 0, 0.08);
    transform: translateY(-4px) scale(1.04);
}

/* sheen sweep and soft inner ring for hover polish */
.footer-social-links .footer-social-link::after,
.footer-social .footer-social-link::after {
    content: '';
    position: absolute;
    left: -120%;
    top: -40%;
    width: 260%;
    height: 180%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(0) rotate(25deg);
    transition: transform 520ms cubic-bezier(.22, .9, .3, 1), opacity 320ms ease;
    pointer-events: none;
    opacity: 0;
}

.footer-social-links .footer-social-link::before,
.footer-social .footer-social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(255, 213, 0, 0);
    transition: box-shadow 420ms cubic-bezier(.2, .9, .2, 1), transform 420ms cubic-bezier(.2, .9, .2, 1);
    pointer-events: none;
}

.footer-social-links .footer-social-link:hover::after,
.footer-social .footer-social-link:hover::after {
    transform: translateX(120%) rotate(25deg);
    opacity: 0.95;
}

.footer-social-links .footer-social-link:hover::before,
.footer-social .footer-social-link:hover::before {
    box-shadow: 0 16px 40px rgba(255, 213, 0, 0.12), 0 6px 18px rgba(255, 213, 0, 0.06);
}

@keyframes social-pop {
    0% {
        transform: translateY(0) scale(1);
    }

    60% {
        transform: translateY(-10px) scale(1.12);
    }

    100% {
        transform: translateY(-6px) scale(1.08);
    }
}

/* Subtle continuous float on large screens to draw attention */
@media (min-width: 960px) {

    .footer-social-links .footer-social-link,
    .footer-social .footer-social-link {
        transition: transform 420ms cubic-bezier(.2, .9, .2, 1), box-shadow 420ms ease;
    }

    .footer-social-links .footer-social-link.animate-float,
    .footer-social .footer-social-link.animate-float {
        animation: social-float 6s ease-in-out infinite;
    }

    @keyframes social-float {
        0% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(-4px) scale(1.01);
        }

        100% {
            transform: translateY(0) scale(1);
        }
    }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {

    .footer-social-links .footer-social-link,
    .footer-social .footer-social-link,
    .footer-social-links .footer-social-link.animate-float,
    .footer-social .footer-social-link.animate-float {
        animation: none !important;
        transition: none !important;
    }
}

.footer-made-with .heart {
    color: #f43f5e;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }
}

/* Responsive footer */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }

    .footer-social {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .service-box-group {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
    }

    .service-box-content {
        padding: 1.2rem 0.8rem;
        gap: 0.6rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-title {
        font-size: 0.85rem;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 50;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

/* WhatsApp links/buttons (inline & bottom) */
a.js-whatsapp-link,
.btn.js-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: #22c55e;
    /* WhatsApp green */
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.18);
    transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn.js-whatsapp-link {
    border-color: transparent;
}

a.js-whatsapp-link:hover,
.btn.js-whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.22);
    filter: brightness(0.98);
}

/* Ensure icons inside the link stay white */
a.js-whatsapp-link img,
.btn.js-whatsapp-link img {
    filter: none;
    opacity: 1;
}

/* ===========================
   GOOGLE TRANSLATE VERBORGEN
   =========================== */

/* Verberg container */
#google_translate_element {
    display: none !important;
}

/* Verberg banner, menu, frames, logo popup */
.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
.goog-logo-link,
.goog-te-spinner,
.goog-te-ftab,
.skiptranslate,
img[src*="translate.google.com"],
img[src*="translate_24dp.png"],
a[href*="translate.google.com"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Verwijder extra ruimte bovenaan */
body {
    top: 0 !important;
}

/* VERBERG ALLE IFRAMES DIE GOOGLE TOEVOEGT */
iframe[src*="translate"],
iframe.goog-te-banner-frame,
iframe.goog-te-menu-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    border: none !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}


/* ============================================
   ANIMATIONS (data-animate)
   Zonder JS: alles direct zichtbaar (opacity 1).
   Met JS: .js-loaded wordt gezet, dan fade-in bij scroll.
============================================ */

[data-animate] {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.js-loaded [data-animate] {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.js-loaded [data-animate].visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered animation delays */
.services-grid [data-animate]:nth-child(1) {
    transition-delay: 0.1s;
}

.services-grid [data-animate]:nth-child(2) {
    transition-delay: 0.2s;
}

.services-grid [data-animate]:nth-child(3) {
    transition-delay: 0.3s;
}

.services-grid [data-animate]:nth-child(4) {
    transition-delay: 0.4s;
}

.steps-list [data-animate]:nth-child(1) {
    transition-delay: 0.1s;
}

.steps-list [data-animate]:nth-child(2) {
    transition-delay: 0.2s;
}

.steps-list [data-animate]:nth-child(3) {
    transition-delay: 0.3s;
}

.steps-list [data-animate]:nth-child(4) {
    transition-delay: 0.4s;
}

.steps-list [data-animate]:nth-child(5) {
    transition-delay: 0.5s;
}

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

@media (max-width: 900px) {
    .hero-inner {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 2rem;
        align-items: center;
    }

    .hero-text {
        flex: 1 1 50%;
        max-width: none;
    }

    .hero-media {
        flex: 1 1 50%;
        justify-content: center;
        margin-top: 0;
    }

    .contact-inner {
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    /* Mobile hero: stacked column, text first */
    .hero {
        padding: 3rem 1rem 2rem;
    }

    .hero-inner {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }

    .hero-text {
        flex: none;
        max-width: 100%;
        padding: 0;
    }

    .hero-text h1 {
        font-size: clamp(1.6rem, 7vw, 2.1rem);
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .hero-media {
        flex: none;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 0;
        justify-content: center;
    }

    .hero-photo-blob {
        border-radius: 1rem;
        padding: 0.5rem;
        max-width: 260px;
        margin: 0 auto;
    }

    .hero-photo {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        border-radius: 0.8rem;
        display: block;
        margin: 0;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        margin-bottom: 0;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 48px;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        border-radius: 0.75rem;
    }

    /* Reduce visual noise on mobile */
    body::before,
    .clouds-layer,
    .floating-orbs,
    .water-ripple,
    .sparkle-stars {
        display: none !important;
    }
}

/* ============================================
   MOBILE POLISH (SMALL DEVICES)
============================================ */
@media (max-width: 480px) {
    .site-header,
    .site-header.scrolled,
    .site-header.active,
    .site-header.open {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding-block: 0.8rem;
        z-index: 99999 !important;
        transform: translateZ(0) !important;
    }

    .header-inner {
        gap: 1rem;
    }

    .logo {
        gap: 0.6rem;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 1.1rem;
    }

    .logo-text {
        font-size: 1.05rem;
    }

    .main-nav {
        gap: 0.6rem;
        font-size: 0.9rem;
        flex-wrap: wrap;
    }

    .main-nav a {
        padding: 0.5rem 0.8rem;
        border-radius: 10px;
    }

    .hero {
        padding: 3.5rem 1rem 2.5rem;
    }

    .hero-text h1 {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 0.8rem 1rem;
    }

    /* Ensure hero media is visible and nicely scaled on small screens */
    .hero {
        z-index: 3;
    }

    .hero-media {
        flex: 1 1 50%;
        display: flex;
        width: auto;
        align-self: center;
        z-index: 4;
        position: relative;
        margin-top: 0;
        justify-content: center;
    }

    .hero-photo-blob {
        padding: 0.4rem;
        border-radius: 1.2rem;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(6, 182, 212, 0.1) 50%);
        box-shadow: none;
        max-width: 100%;
    }

    .hero-photo {
        width: 100%;
        max-width: 100%;
        display: block;
        margin: 0;
        border-radius: 12px;
        border: 1px solid rgba(99, 102, 241, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        transform: none;
        animation: none;
    }

    .hero-photo-blob {
        border-radius: 1.4rem;
    }

    .section {
        padding: 3.5rem 1rem;
    }

    .section-header h2 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .clients-header {
        margin-bottom: 2.2rem;
    }

    .clients-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .clients-subtitle {
        font-size: 0.95rem;
    }

    .clients-track {
        gap: 1.2rem;
    }

    .client-logo-card {
        width: 90px;
        min-width: 90px;
        max-width: 90px;
        height: 90px;
        border-radius: 1rem;
    }

    .client-logo-card>* {
        max-width: 90px;
        max-height: 90px;
    }

    .client-logo-card img {
        width: 90px;
        height: 90px;
        border-radius: 1rem;
    }

    .contact-inner {
        gap: 1.5rem;
    }

    input,
    textarea {
        font-size: 0.95rem;
        padding: 0.8rem 0.9rem;
    }

    .site-footer {
        padding-top: 3.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ============================================
   WELCOME ANIMATION OVERLAY – volledig hele website bedekken
============================================ */

/* Overlay standaard verborgen – alleen tonen als JS body.welcome-overlay-active zet (voorkomt witte pagina als script.js niet laadt) */
#welcomeOverlay {
    display: none !important;
}
body.welcome-overlay-active #welcomeOverlay {
    display: flex !important;
}

/* Tijdens welkom: alleen overlay zichtbaar; rest van pagina verborgen */
body.welcome-overlay-active > *:not(#welcomeOverlay) {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.01s step-end;
}

/* Na welkom: website opent met 1s fade-in */
body.welcome-done > * {
    opacity: 1;
    transition: opacity 1s ease-out;
}

.welcome-overlay-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 120% 80% at 50% 0%, rgba(56, 189, 248, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 100% 100%, rgba(255, 149, 0, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse 70% 50% at 0% 100%, rgba(34, 197, 94, 0.08) 0%, transparent 45%),
        linear-gradient(180deg, rgba(6, 22, 42, 0.97) 0%, rgba(10, 35, 65, 0.96) 50%, rgba(8, 28, 52, 0.97) 100%);
    pointer-events: none;
}

.welcome-timer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.welcome-timer-fill {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #38bdf8, #22d3ee);
    animation: welcomeTimerFill 8s linear forwards;
}

@keyframes welcomeTimerFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

.welcome-overlay {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 999999 !important;
    overflow: hidden;
    pointer-events: auto;
    animation: welcomeOverlayFade 8s ease-out forwards;
}

.welcome-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem;
    max-width: 92%;
    border-radius: 1.5rem;
    background: rgba(15, 35, 55, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset, 0 24px 56px rgba(0, 0, 0, 0.4), 0 0 60px rgba(56, 189, 248, 0.06);
    animation: welcomeContentAnimate 1.2s ease-out 0.3s both;
}

.welcome-text {
    font-size: clamp(2.75rem, 9vw, 5.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 45%, #22d3ee 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0.06em;
    filter: drop-shadow(0 0 18px rgba(56, 189, 248, 0.5))
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.85))
            drop-shadow(0 0 1px rgba(0, 0, 0, 0.9));
    animation: welcomeTextGlow 2s ease-in-out 0.8s both;
}

.welcome-subtitle {
    font-size: clamp(1.1rem, 2.8vw, 1.7rem);
    font-weight: 600;
    color: #f1f5f9;
    margin: 0.4em 0 0 0;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 16px rgba(56, 189, 248, 0.25);
    animation: welcomeSubtitleFade 0.8s ease-out 0.3s both;
}

.welcome-tagline {
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 500;
    color: rgba(148, 163, 184, 0.95);
    margin: 0.5em 0 0 0;
    letter-spacing: 0.05em;
    animation: welcomeSubtitleFade 0.8s ease-out 0.4s both;
}

.welcome-lang-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 1.75rem 0 0.75rem 0;
    animation: welcomeLangFade 0.8s ease-out 1.5s both;
}

.welcome-logo-anim {
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #38bdf8 0%, #22d3ee 50%, #fbbf24 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 0.35rem 0;
    filter: drop-shadow(0 0 28px rgba(56, 189, 248, 0.5)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7));
    animation: welcomeLogoSpin 1.5s ease-out 0.5s both;
}

.welcome-lang-selector {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
    animation: welcomeLangFade 0.8s ease-out 1.5s both;
}

.welcome-lang-btn {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.28);
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: rgba(226, 232, 240, 0.95);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.welcome-lang-btn:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.5);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.2);
    color: #fff;
}

.welcome-lang-btn.active {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.28), rgba(34, 211, 238, 0.22));
    border-color: rgba(56, 189, 248, 0.6);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.25), 0 4px 14px rgba(0, 0, 0, 0.2);
    color: #fff;
    transform: scale(1.05);
}

.welcome-lang-btn:focus-visible,
.welcome-skip:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: 3px;
}

.welcome-skip {
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(148, 163, 184, 0.9);
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 999px;
    cursor: pointer;
    animation: welcomeLangFade 0.8s ease-out 2s both;
}

.welcome-skip:hover {
    color: #e2e8f0;
    border-color: rgba(148, 163, 184, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

.welcome-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(53, 215, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 15%;
    animation: particleFloat1 6s ease-in-out infinite;
}

.particle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 80%;
    animation: particleFloat2 7s ease-in-out infinite;
}

.particle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 10%;
    animation: particleFloat3 8s ease-in-out infinite;
}

.particle:nth-child(4) {
    width: 70px;
    height: 70px;
    bottom: 20%;
    left: 10%;
    animation: particleFloat4 6.5s ease-in-out infinite;
}

.particle:nth-child(5) {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    animation: particleFloat5 5s ease-in-out infinite;
}

.particle:nth-child(6) {
    width: 90px;
    height: 90px;
    top: 15%;
    left: 60%;
    animation: particleFloat6 7.5s ease-in-out infinite;
}

.particle:nth-child(7) {
    width: 65px;
    height: 65px;
    bottom: 30%;
    right: 20%;
    animation: particleFloat7 6s ease-in-out infinite;
}

.particle:nth-child(8) {
    width: 75px;
    height: 75px;
    top: 60%;
    left: 30%;
    animation: particleFloat8 8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .welcome-overlay,
    .welcome-content,
    .welcome-text,
    .welcome-subtitle,
    .welcome-tagline,
    .welcome-lang-label,
    .welcome-logo-anim,
    .welcome-lang-selector,
    .welcome-lang-btn,
    .welcome-skip {
        animation-duration: 0.01ms !important;
        animation-delay: 0s !important;
        transition-duration: 0.01ms !important;
    }
    .welcome-timer-fill {
        animation-duration: 8s;
    }
    .particle {
        animation: none !important;
        opacity: 0.2;
    }
}

/* Keyframes for overlay fade out */
@keyframes welcomeOverlayFade {
    0%, 55% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* Keyframes for content: alleen binnenkomen, daarna zichtbaar blijven tot overlay weg is */
@keyframes welcomeContentAnimate {
    0% {
        transform: scale(0.8) translateY(30px);
        opacity: 0;
    }
    20% {
        transform: scale(1.05) translateY(0);
        opacity: 1;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Keyframes for text glow (met leesbare schaduw) */
@keyframes welcomeTextGlow {
    0% {
        filter: drop-shadow(0 0 18px rgba(56, 189, 248, 0.5))
                drop-shadow(0 2px 4px rgba(0, 0, 0, 0.85))
                drop-shadow(0 0 1px rgba(0, 0, 0, 0.9));
    }
    100% {
        filter: drop-shadow(0 0 26px rgba(56, 189, 248, 0.65))
                drop-shadow(0 2px 4px rgba(0, 0, 0, 0.85))
                drop-shadow(0 0 1px rgba(0, 0, 0, 0.9));
    }
}

@keyframes welcomeTextShimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Keyframes for subtitle fade in */
@keyframes welcomeSubtitleFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

@keyframes welcomeLogoSpin {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    70% {
        transform: scale(1.08);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes welcomeLangFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes particleFloat1 {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }

    50% {
        transform: translate(30px, -40px);
        opacity: 0.6;
    }
}

@keyframes particleFloat2 {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.4;
    }

    50% {
        transform: translate(-40px, 30px);
        opacity: 0.7;
    }
}

@keyframes particleFloat3 {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }

    50% {
        transform: translate(-30px, 50px);
        opacity: 0.5;
    }
}

@keyframes particleFloat4 {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.4;
    }

    50% {
        transform: translate(50px, -30px);
        opacity: 0.6;
    }
}

@keyframes particleFloat5 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(20px, 20px) scale(1.3);
        opacity: 0.8;
    }
}

@keyframes particleFloat6 {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }

    50% {
        transform: translate(-25px, -35px);
        opacity: 0.6;
    }
}

@keyframes particleFloat7 {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.4;
    }

    50% {
        transform: translate(35px, 25px);
        opacity: 0.7;
    }
}

@keyframes particleFloat8 {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }

    50% {
        transform: translate(-20px, -45px);
        opacity: 0.5;
    }
}

/* (Welcome overlay enhancements removed) */

/* ============================================
   EXTRA BEAUTIFUL ENHANCEMENTS
============================================ */

/* Floating animation for hero photo */
.hero-photo {
    animation: heroPhotoFloat 6s ease-in-out infinite !important;
}

@keyframes heroPhotoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Enhanced glow for buttons on hover */
.btn-primary:active {
    transform: translateY(-1px) scale(0.98) !important;
    box-shadow:
        0 8px 18px rgba(2, 18, 40, 0.42),
        0 6px 14px rgba(255, 149, 0, 0.28),
        0 0 46px rgba(255, 140, 60, 0.22);
    animation: buttonRipple 0.48s ease-out;
}

/* Smooth link hover animations */
.main-nav a {
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 70%;
}

/* Glowing logo effect */
.logo:hover .logo-mark {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.5), 0 0 60px rgba(6, 182, 212, 0.4);
}

.logo-mark {
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Enhanced form focus states */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    transform: translateY(-3px) !important;
}

/* Card entrance animations */
.service-card,
.step-card {
    animation: cardEntrance 0.6s ease-out backwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Social icons: theme colors (no rainbow) */
.social-links a:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(6, 182, 212, 0.2));
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.4);
}

/* Show original brand colors on hover/focus for social icons */
.footer-social-link[aria-label="YouTube"]:hover svg,
.social-links a[aria-label="YouTube"]:hover svg,
.footer-social-link[aria-label="YouTube"]:focus svg,
.social-links a[aria-label="YouTube"]:focus svg {
    color: #FF0000;
    /* YouTube red */
    filter: drop-shadow(0 6px 18px rgba(255, 0, 0, 0.18));
}

.footer-social-link[aria-label="Instagram"]:hover svg,
.social-links a[aria-label="Instagram"]:hover svg,
.footer-social-link[aria-label="Instagram"]:focus svg,
.social-links a[aria-label="Instagram"]:focus svg {
    color: #E1306C;
    /* Instagram magenta */
    filter: drop-shadow(0 6px 18px rgba(225, 48, 108, 0.16));
}

.footer-social-link[aria-label="Facebook"]:hover svg,
.social-links a[aria-label="Facebook"]:hover svg,
.footer-social-link[aria-label="Facebook"]:focus svg,
.social-links a[aria-label="Facebook"]:focus svg {
    color: #1877F2;
    /* Facebook blue */
    filter: drop-shadow(0 6px 18px rgba(24, 119, 242, 0.14));
}

.footer-social-link[aria-label="TikTok"]:hover svg,
.social-links a[aria-label="TikTok"]:hover svg,
.footer-social-link[aria-label="TikTok"]:focus svg,
.social-links a[aria-label="TikTok"]:focus svg {
    color: #69C9D0;
    /* TikTok cyan accent */
    filter: drop-shadow(0 6px 18px rgba(105, 201, 208, 0.14));
}

/* Ensure transition is smooth */
.footer-social-link svg,
.social-links a svg {
    transition: color 220ms ease, filter 220ms ease, transform 220ms ease;
}

/* Heartbeat animation for heart emoji */
.heart {
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    10%,
    30% {
        transform: scale(1.1);
    }

    20%,
    40% {
        transform: scale(0.9);
    }
}

/* Footer glow effect */
.site-footer {
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            rgba(53, 215, 255, 0.6) 20%,
            rgba(168, 85, 247, 0.6) 40%,
            rgba(236, 72, 153, 0.6) 60%,
            rgba(251, 191, 36, 0.6) 80%,
            transparent);
    animation: borderFlow 5s linear infinite;
}

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

    100% {
        transform: translateX(100%);
    }
}

/* WhatsApp button enhanced pulse */
.whatsapp-float {
    animation: whatsappBounce 2s ease-in-out infinite;
}

@keyframes whatsappBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Enhanced scroll progress bar */
.scroll-progress-bar {
    height: 6px !important;
    box-shadow:
        0 3px 20px rgba(168, 85, 247, 0.8),
        0 0 40px rgba(53, 215, 255, 0.6),
        0 0 60px rgba(236, 72, 153, 0.4) !important;
}

/* ============================================
   📱 MOBILE RESPONSIVE STYLES
============================================ */

/* Tablet & Small Desktop */
@media (max-width: 1024px) {
    .container {
        padding-inline: 2rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .services-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Ensure header stays fixed on tablets */
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        transform: translateZ(0) !important;
    }
}

/* Hamburger + drawer alleen onder 600px */
@media (max-width: 600px) {
    .site-header {
        padding-block: 1rem;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        contain: none !important;
        overflow: visible !important;
    }

    /* Body ruimte onder vaste header zodat inhoud niet onder header schuift */
    body {
        padding-top: 72px !important;
        overscroll-behavior-x: none;
        overflow-x: hidden !important;
        touch-action: pan-y;
        max-width: 100vw;
    }

    .header-inner {
        padding-inline: 1rem;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        --bar-h: 3px;
        --bar-gap: 6px;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--bar-gap);
        min-width: 48px;
        min-height: 48px;
        padding: 12px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 12px;
        cursor: pointer;
        pointer-events: auto !important;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        order: 999;
        z-index: 999999;
    }

    .mobile-menu-toggle:hover {
        background: rgba(255, 255, 255, 0.16);
        border-color: rgba(255, 255, 255, 0.22);
    }

    .mobile-menu-toggle:active {
        transform: scale(0.96);
    }

    .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: var(--bar-h);
        background: currentColor;
        border-radius: 3px;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    }

    .mobile-menu-toggle.open span:nth-child(1),
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(calc(var(--bar-h) + var(--bar-gap))) rotate(45deg);
    }

    .mobile-menu-toggle.open span:nth-child(2),
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-toggle.open span:nth-child(3),
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(calc(-1 * (var(--bar-h) + var(--bar-gap)))) rotate(-45deg);
    }

    .header-inner {
        position: relative;
        z-index: 10001;
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .header-inner .logo {
        flex-shrink: 0;
    }

    .desktop-lang {
        display: none;
    }

    .main-nav {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        transform: translateX(100%) !important;
        width: min(88%, 340px) !important;
        height: 100vh !important;
        height: 100dvh !important;
        padding: 1rem !important;
        padding-top: 5.5rem !important;
        padding-bottom: 1.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        background: linear-gradient(180deg, rgba(10, 24, 55, 0.98) 0%, rgba(6, 16, 42, 0.99) 100%) !important;
        backdrop-filter: blur(28px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
        box-shadow: -16px 0 48px rgba(0, 0, 0, 0.4), inset 1px 0 0 rgba(255, 255, 255, 0.08) !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        z-index: 99998 !important;
        pointer-events: none !important;
        visibility: hidden !important;
        transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s linear 0.35s !important;
    }

    .main-nav.open,
    .main-nav.active {
        transform: translateX(0) !important;
        pointer-events: auto !important;
        visibility: visible !important;
        transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s linear 0s !important;
    }

    /* Shared styling for dropdown items (alleen nav links) */
    .main-nav a {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0.95rem 1rem;
        margin: 0;
        font-size: 1.05rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.95);
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: background 0.2s ease, border-color 0.2s ease;
        box-sizing: border-box;
    }

    /* Language switch inside drawer – fits well on mobile */
    .main-nav .drawer-lang-wrap {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 0;
        margin-bottom: 0.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .main-nav .drawer-lang-label {
        font-size: 0.85rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
    }

    .main-nav .drawer-lang-select {
        width: 100%;
        min-height: 48px;
        padding: 0.6rem 2.25rem 0.6rem 0.75rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
        color: rgba(255, 255, 255, 0.95);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgba(255,255,255,0.8)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
    }

    .main-nav .drawer-lang-select:focus {
        outline: none;
        border-color: rgba(255, 255, 255, 0.35);
    }

    .main-nav a {
        justify-content: center;
        text-decoration: none !important;
        touch-action: manipulation;
    }

    .main-nav a:hover,
    .main-nav a:active {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.25);
    }

    .main-nav a::before,
    .main-nav a::after {
        display: none !important;
    }

    .main-nav.open::after,
    .main-nav.active::before {
        content: '';
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        z-index: -1;
        pointer-events: auto;
    }

}

/* Mobile - Landscape & Portrait Tablets */
@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
    }

    body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: none;
        touch-action: pan-y;
        max-width: 100vw;
    }

    /* Prevent zoom on input focus (iOS) – min 16px on form fields */
    input:not([type="submit"]):not([type="button"]),
    select,
    textarea {
        font-size: 16px !important;
        min-height: 48px;
        padding: 0.75rem 1rem;
    }

    textarea {
        min-height: 120px;
    }

    .btn, .hero-actions .btn, .contact-form button[type="submit"] {
        min-height: 48px;
        padding: 0.875rem 1.25rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .container {
        padding-inline: 1rem;
        max-width: 100%;
    }

    /* Hero Section */
    .hero-section {
        min-height: 80vh;
        padding: 6rem 0 4rem;
    }

    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-section .subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .cta-button,
    .hero-buttons .secondary-button {
        width: 100%;
        justify-content: center;
    }

    /* ===== MOBILE NAVIGATION (drawer + hamburger only under 600px; 601–768 shows nav bar) ===== */

    /* Welcome overlay: z-index onder header (9998 < 99999) zodat header zichtbaar blijft */

    /* Services Grid (768px) */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
    }

    /* Clients Logos */
    .clients-logos-track {
        animation-duration: 40s;
    }

    /* Contact Form */
    #contact-form {
        padding: 2rem 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-links {
        align-items: center;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 6rem;
        right: 1rem;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ==================================================
   EXTRA MOBILE POLISH (global overrides for <=900px)
   - Improves typography, spacing, buttons, forms, cards
   - Keeps hero image visible, simplifies decorations
================================================== */
@media (max-width: 900px) {

    html,
    body {
        font-size: 16px;
    }

    /* Container padding for mobile
       keep consistent narrow gutters */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 980px;
    }

    /* Make buttons easier to tap */
    .btn {
        min-height: 44px;
        padding: 0.7rem 1rem;
        font-size: 1rem;
        border-radius: 0.75rem;
        touch-action: manipulation;
    }

    /* Primary CTA emphasis */
    .btn-primary {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    }

    /* Service cards: stack and center */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.25rem;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .service-card h3 {
        font-size: 1.05rem;
        margin: 0 0 0.25rem 0;
    }

    .service-card p {
        font-size: 0.95rem;
        margin: 0;
    }

    /* Forms: bigger fields and full width */
    input,
    textarea,
    select {
        width: 100%;
        padding: 0.9rem 0.9rem;
        border-radius: 0.6rem;
        font-size: 1rem;
    }

    .form-buttons .btn-full {
        width: 100%;
    }

    /* Footer: simplified and centered */
    .site-footer .footer-content {
        text-align: center;
    }

    /* Reduce decorative noise */
    body::before {
        opacity: 0.25;
        filter: blur(24px);
    }

    /* Make client logos smaller and scrollable */
    .clients-track .client-logo-card {
        width: 80px;
        height: 80px;
    }

    /* Improve spacing for steps and sections */
    .section {
        padding: 2.5rem 0.75rem;
    }

    /* Make social icons easier to tap */
    .social-icons a {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

}

/* 601px–900px: nav zichtbaar, hamburger verborgen, taalwisselaar zichtbaar */
@media (min-width: 601px) and (max-width: 900px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    .main-nav .drawer-lang-wrap {
        display: none !important;
    }

    .desktop-lang {
        display: block !important;
    }

    .main-nav {
        display: flex !important;
        position: relative !important;
        transform: none !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }

    .main-nav a {
        display: inline-flex !important;
        padding: 0.5rem 0.75rem !important;
    }
}

/* Mobile - Small Phones */
@media (max-width: 480px) {
    .container {
        padding-inline: 1rem;
    }

    /* Typography - toto.nl clean & readable */
    h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
    }

    h2 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
    }

    h3 {
        font-size: 1.375rem !important;
        line-height: 1.4 !important;
        font-weight: 600 !important;
    }

    p {
        font-size: 1rem;
        line-height: 1.65;
    }

    /* Hero: stacked on small phones */
    .hero {
        padding: 2.5rem 1rem 3rem;
        min-height: auto;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        align-items: center;
    }

    .hero-text {
        order: 1;
        max-width: 100%;
    }

    .hero-media {
        order: 2;
        margin-bottom: 0;
        width: 100%;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-photo-blob {
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: clamp(1.5rem, 5.5vw, 2rem) !important;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
        opacity: 0.95;
    }

    .eyebrow {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
    }

    /* Buttons: touch-friendly */
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 12px;
        font-weight: 600;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 48px;
        justify-content: center;
    }

    /* Service Cards - toto.nl clean card layout */
    .services-grid {
        gap: 1.25rem;
        padding: 0;
    }

    .service-card {
        padding: 2.5rem 2rem;
        text-align: center;
        border-radius: 1.25rem;
    }

    .service-card-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 1.5rem;
    }

    .service-card h3 {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 1rem;
        line-height: 1.65;
        opacity: 0.9;
    }

    /* Steps - Compacter en mooier */
    .steps-section {
        padding: 3rem 0;
    }

    .steps-list {
        gap: 1.25rem;
    }

    .step-card {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .step-number {
        font-size: 1.75rem;
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .step-card h3 {
        font-size: 1.125rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }

    /* Clients Section */
    .clients-section {
        padding: 3rem 0;
    }

    .clients-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    /* Contact Form - Mooiere spacing */
    .contact-inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .contact-text {
        text-align: center;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 10px;
    }

    /* Footer - Beter leesbaar */
    .footer-content {
        text-align: center;
        gap: 2.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    /* Social media: 4x1 op mobile (zelfde als desktop) */
    .footer-social-links {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.75rem;
        margin: 0 auto;
        width: 100%;
    }

    .footer-column ul li {
        margin-bottom: 0.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        gap: 2rem;
        text-align: center;
        padding: 2.5rem 1.5rem;
        width: 100% !important;
        background: linear-gradient(180deg,
                rgba(10, 22, 60, 0.95) 0%,
                rgba(5, 15, 40, 0.98) 100%);
        border-top: 1px solid rgba(53, 215, 255, 0.2);
    }

    .footer-bottom>p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
        order: 2;
    }

    .footer-social {
        width: 100% !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
        order: 1;
    }

    .footer-made-with {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
    }

    .footer-made-with .heart {
        color: #ef4444;
        animation: heartbeat 1.5s ease-in-out infinite;
        display: inline-block;
    }

    .social-links {
        justify-content: center !important;
        flex-wrap: nowrap !important;
        gap: 0.75rem;
        width: 100% !important;
        display: flex !important;
        margin: 0 auto !important;
        padding: 0 0.5rem;
    }

    .social-links a {
        width: 48px;
        height: 48px;
        background: rgba(53, 215, 255, 0.1);
        border: 1px solid rgba(53, 215, 255, 0.3);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }

    .social-links a:hover,
    .social-links a:active {
        background: rgba(53, 215, 255, 0.2);
        border-color: rgba(53, 215, 255, 0.5);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 20px rgba(53, 215, 255, 0.3);
    }

    .social-links a svg {
        width: 22px;
        height: 22px;
        color: #38bdf8;
    }

    @keyframes heartbeat {

        0%,
        100% {
            transform: scale(1);
        }

        25% {
            transform: scale(1.1);
        }

        50% {
            transform: scale(1);
        }

        75% {
            transform: scale(1.15);
        }
    }

    /* Animations - Reduce on mobile */
    .floating-orbs,
    .sparkle-stars,
    .cursor-follower,
    .cursor-dot,
    .geometric-shapes,
    .meteor-shower {
        display: none !important;
    }

    /* Section spacing - toto.nl clean */
    .section {
        padding: 3.5rem 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.0625rem;
        line-height: 1.65;
        max-width: 100%;
        opacity: 0.9;
    }

    /* Smooth scroll behavior */
    html {
        scroll-behavior: smooth;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Ensure header stays fixed on touch devices */
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        transform: translateZ(0) !important;
    }

    /* Larger touch targets */
    a,
    button,
    .cta-button,
    .secondary-button {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    .service-card:hover,
    .process-step:hover {
        transform: none;
    }

    /* Keep active states */
    .service-card:active,
    .process-step:active {
        transform: scale(0.98);
    }
}

/* Landscape orientation specific */
@media (max-width: 896px) and (orientation: landscape) {
    /* Ensure header stays fixed in landscape */
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        transform: translateZ(0) !important;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 3rem 0 2rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }
}

/* Ultra-wide mobile (landscape) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    /* Ensure header stays fixed in landscape tablets */
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        transform: translateZ(0) !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* ============================================
   Mobile / Small-screen adjustments
   - Full-width, touch-friendly controls
   - Stack service grid
   - Reduce / disable heavy animations on small screens
============================================ */

@media (max-width: 900px) {
    /* Ensure header stays fixed on medium screens */
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        transform: translateZ(0) !important;
    }
    
    :root {
        --section-padding: 2rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
    }

    .hero-section {
        padding: 2.2rem 0 1.6rem;
    }

    .hero-section h1 {
        font-size: 1.9rem;
        line-height: 1.12;
    }

    .hero-section p,
    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        transform: none !important;
        margin-bottom: 0.6rem;
        padding: 1rem;
    }

    /* Buttons become block-level and larger touch targets */
    .btn,
    .btn-cta,
    .btn-primary {
        width: 100%;
        display: block;
        padding: 0.9rem 1rem;
        font-size: 1rem;
        border-radius: 0.75rem;
        min-width: 0;
    }

    .btn+.btn {
        margin-top: 0.6rem;
    }

    /* Social 4x1: touch-vriendelijk maar passend in één rij */
    .footer-social-links .footer-social-link,
    .footer-social .footer-social-link {
        width: 48px;
        height: 48px;
    }

    /* Contact pills stack or wrap to keep readable */
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        align-items: stretch;
    }

    .contact-info-box {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.6rem 0.85rem;
    }

    /* Reduce heavy drop-shadows and long animations on small screens */
    .btn-primary,
    .btn-cta,
    .footer-social-links .footer-social-link,
    .service-card,
    .process-step {
        transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
    }

    .animate-float,
    .social-float,
    .btn-cta.animate,
    .service-card.animate {
        animation: none !important;
    }

}

/* Zeer kleine schermen: social 4x1 met minimale grootte zodat 4 altijd in één rij passen */
@media (max-width: 360px) {
    .footer-social-links,
    .social-links {
        flex-wrap: nowrap !important;
        gap: 0.35rem !important;
    }
    .footer-social-links .footer-social-link,
    .footer-social .footer-social-link,
    .social-links a {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        flex-shrink: 0 !important;
    }
    .footer-social-links .footer-social-link svg,
    .footer-social .footer-social-link svg,
    .social-links a svg {
        width: 18px !important;
        height: 18px !important;
    }
}

@media (max-width: 480px) {
    /* Ensure header stays fixed on small phones */
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        transform: translateZ(0) !important;
    }
    
    .hero-section {
        padding: 1.4rem 0 1rem;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    /* Make large hero photos visible on small screens but scaled down */
    .hero-photo {
        display: block;
        width: min(92%, 420px);
        max-width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 1.1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
        margin: 0.6rem auto 0;
    }

    /* Social 4x1: kleinere knoppen + kleine gap zodat 4 iconen in één rij passen */
    .footer-social-links,
    .social-links {
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
    }
    .footer-social-links .footer-social-link,
    .footer-social .footer-social-link {
        width: 44px;
        height: 44px;
        flex-shrink: 0 !important;
    }
    .footer-social-links .footer-social-link svg,
    .footer-social .footer-social-link svg {
        width: 20px;
        height: 20px;
    }
    .social-links a {
        width: 44px !important;
        height: 44px !important;
        flex-shrink: 0 !important;
    }
    .social-links a svg {
        width: 20px;
        height: 20px;
    }

/* Alternatieve 4x1 grid-layout voor social icons */
.socials {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* altijd 4 kolommen */
    gap: 12px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.socials .icon {
    aspect-ratio: 1 / 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(18px, 5vw, 28px);
}

    /* Stack contact info vertically for narrow screens */
    .contact-info-box {
        flex-direction: row;
        align-items: center;
    }

    /* Ensure header stays compact */
    .site-header {
        padding: 0.5rem 1rem;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        transform: translateZ(0) !important;
    }
}

/* Zorg dat in het hamburgermenu altijd naar het laatste item gescrold kan worden
   (ook op kleine schermen met browserbalk / notch). */
@media (max-width: 900px) {
    body .main-nav {
        max-height: 110vh !important;
        height: auto !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: max(2.5rem, env(safe-area-inset-bottom, 24px)) !important;
    }
}

/* Respect reduced-motion on all small screens */
@media (prefers-reduced-motion: reduce) {

    .animate-float,
    .social-float,
    .btn-cta,
    .service-card,
    .process-step {
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================
   Mobile: preserve desktop look but stay touch-friendly
   - keep desktop visuals (gradients, shadows)
   - stack layout where necessary, increase tap targets
============================================ */
@media (max-width: 900px) {
    body {
        padding-top: 72px;
        /* slightly smaller header on mobile */
    }

    .site-header {
        padding-block: 0.8rem;
        border-bottom-width: 1px;
        backdrop-filter: blur(14px) saturate(140%);
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        transform: translateZ(0) !important;
    }

    .header-inner {
        gap: 1rem;
        padding: 0 1rem;
        align-items: center;
    }

    /* Hero section: keep same structure but stacked and centered */
    .hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-section .hero-content {
        max-width: 820px;
        width: 100%;
    }

    .hero-photo-blob .hero-photo,
    .hero-photo {
        width: min(92%, 520px);
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        transform: none;
    }

    /* CTA buttons: keep desktop styles but larger touch area */
    .btn,
    .btn-cta {
        padding: 0.9rem 1.4rem;
        font-size: 1rem;
        border-radius: 0.9rem;
    }

    /* Services: keep card visual but stacked with subtle gap */
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    /* Slightly reduce decorative animations on coarse pointers */
    @media (hover: none) and (pointer: coarse) {

        .hero-photo-blob .hero-photo,
        .logo-mark,
        .header-sheen {
            transition: transform 200ms ease, opacity 200ms ease;
        }
    }
}