/* ============================================================
   DEGEN CAR DETAIL — Premium CSS
   Huisstijl: Blauw & Zwart met 3D Animaties
   ============================================================ */

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* Page load - no flash of invisible text */
body { opacity: 1; transition: none; }
body.page-loaded { animation: pageIn 0.4s ease; }
@keyframes pageIn { from { opacity: 0.3; } to { opacity: 1; } }

:root {
    /* Brand Blues */
    --blue: #1E6FD9;
    --blue-light: #4A90E2;
    --blue-bright: #60A5FA;
    --blue-dark: #1555A8;
    --blue-glow: rgba(30, 111, 217, 0.4);
    --blue-subtle: rgba(30, 111, 217, 0.08);
    --blue-border: rgba(30, 111, 217, 0.2);

    /* Blacks */
    --black: #050508;
    --black-light: #0A0A10;
    --black-card: #0F0F18;
    --black-card-hover: #141420;
    --black-border: #1A1A2E;

    /* Whites */
    --white: #F0F2F5;
    --white-dim: #A0A8B8;
    --grey: #6B7280;

    /* Fonts */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --heading-transform: uppercase;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    /* Motion */
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    perspective: 1200px;
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== WATER DROPLET BACKGROUND (Ceramic Coating Effect) ===== */
.bg-particles {
    position: fixed; inset: 0; z-index: 0;
    pointer-events: none; overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.6), rgba(30, 111, 217, 0.2));
    box-shadow: 0 0 8px rgba(30, 111, 217, 0.15), inset 0 -2px 4px rgba(255,255,255,0.15);
    opacity: 0;
    animation: dropletSlide ease-in infinite;
}

/* Water droplets fall, land on hydrophobic surface, bead up, then slide away fast */
@keyframes dropletSlide {
    0% { transform: translateY(-20px) scale(0.3); opacity: 0; border-radius: 50%; }
    /* Falling phase */
    12% { transform: translateY(40vh) scale(0.8, 1.1); opacity: 0.6; border-radius: 48% 48% 52% 52%; }
    /* Impact — droplet flattens on surface */
    16% { transform: translateY(42vh) scale(1.4, 0.6); opacity: 0.7; border-radius: 40% 40% 50% 50%; }
    /* Hydrophobic bead-up — snaps back into tight ball */
    22% { transform: translateY(40vh) scale(0.85, 1.1); opacity: 0.75; border-radius: 50%; }
    26% { transform: translateY(40vh) scale(1.0); opacity: 0.7; border-radius: 50%; }
    /* Wobble on surface */
    32% { transform: translateY(40vh) scale(1.05, 0.95); opacity: 0.65; border-radius: 50%; }
    38% { transform: translateY(40vh) scale(0.95, 1.05); opacity: 0.6; border-radius: 50%; }
    /* Gravity wins — fast slide off the coated surface */
    50% { transform: translateY(42vh) scale(0.95, 1.05); opacity: 0.55; border-radius: 48% 48% 52% 52%; }
    75% { transform: translateY(85vh) scale(0.7, 1.4); opacity: 0.3; border-radius: 42% 42% 50% 50%; }
    100% { transform: translateY(110vh) scale(0.5, 1.5); opacity: 0; border-radius: 38% 38% 50% 50%; }
}

.particle:nth-child(1) { width: 6px; height: 6px; left: 8%; animation-duration: 9s; animation-delay: 0s; }
.particle:nth-child(2) { width: 10px; height: 10px; left: 22%; animation-duration: 7s; animation-delay: 2s; }
.particle:nth-child(3) { width: 5px; height: 5px; left: 38%; animation-duration: 11s; animation-delay: 1s; }
.particle:nth-child(4) { width: 8px; height: 8px; left: 52%; animation-duration: 8s; animation-delay: 4s; }
.particle:nth-child(5) { width: 7px; height: 7px; left: 67%; animation-duration: 10s; animation-delay: 0.5s; }
.particle:nth-child(6) { width: 12px; height: 12px; left: 82%; animation-duration: 6.5s; animation-delay: 3s; }
.particle:nth-child(7) { width: 4px; height: 4px; left: 14%; animation-duration: 12s; animation-delay: 5s; }
.particle:nth-child(8) { width: 9px; height: 9px; left: 58%; animation-duration: 7.5s; animation-delay: 1.5s; }
.particle:nth-child(9) { width: 6px; height: 6px; left: 92%; animation-duration: 9.5s; animation-delay: 6s; }
.particle:nth-child(10) { width: 11px; height: 11px; left: 45%; animation-duration: 8.5s; animation-delay: 3.5s; }

/* ===== HEADER / NAVIGATION ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--black-border);
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(5, 5, 8, 0.96);
    border-bottom-color: var(--blue-border);
    box-shadow: 0 4px 30px rgba(30, 111, 217, 0.08);
}

.header__inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto; padding: 18px 24px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem; font-weight: 700;
    color: var(--white); letter-spacing: 1px;
    transition: transform var(--transition);
}

.logo:hover { transform: scale(1.03); color: var(--white); }
.logo span { color: var(--blue); }

.nav { display: flex; align-items: center; gap: 24px; }

.nav > a, .nav__dropdown > .nav__dropdown-trigger {
    color: var(--white-dim); font-size: 0.82rem; font-weight: 400;
    letter-spacing: 0.5px; text-transform: uppercase;
    position: relative; transition: all var(--transition);
    padding: 4px 0; cursor: pointer;
    background: none; border: none; font-family: var(--font-body);
}

.nav a {
    color: var(--white-dim); font-size: 0.82rem; font-weight: 400;
    letter-spacing: 0.5px; text-transform: uppercase;
    position: relative; transition: all var(--transition);
    padding: 4px 0;
}

/* Dropdown Menu */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-trigger {
    display: flex; align-items: center; gap: 5px;
}

.nav__dropdown-trigger svg {
    width: 12px; height: 12px; transition: transform var(--transition);
}

.nav__dropdown:hover .nav__dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav__dropdown-menu {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: rgba(10, 10, 18, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--blue-border);
    border-radius: 10px;
    padding: 12px 0;
    opacity: 0; visibility: hidden;
    transition: all var(--transition);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(30, 111, 217, 0.08);
    z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav__dropdown-menu a {
    display: block; padding: 10px 24px;
    font-size: 0.82rem !important; text-transform: uppercase;
    letter-spacing: 0.5px; white-space: nowrap;
}

.nav__dropdown-menu a::after { display: none; }

.nav__dropdown-menu a:hover {
    background: var(--blue-subtle);
    color: var(--blue);
}

.nav a::after {
    content: ''; position: absolute; bottom: -2px; left: 50%;
    width: 0; height: 2px;
    background: var(--blue);
    transition: all var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav a:hover, .nav a.active { color: var(--white); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.nav__cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    padding: 10px 28px !important; border-radius: 6px; font-weight: 600 !important;
    text-transform: uppercase !important; font-size: 0.82rem !important;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px var(--blue-glow);
    transition: all var(--transition) !important;
}

.nav__cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px var(--blue-glow) !important;
}

.nav__cta::after { display: none !important; }

/* Mobile menu */
.menu-toggle {
    display: none; background: none; border: none;
    cursor: pointer; padding: 8px; z-index: 1001;
}

.menu-toggle span {
    display: block; width: 26px; height: 2px;
    background: var(--white); margin: 6px 0;
    transition: all var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 40px; font-size: 0.88rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    border-radius: 6px; cursor: pointer;
    transition: all var(--transition); border: none;
    font-family: var(--font-body);
    position: relative; overflow: hidden;
}

.btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0; transition: opacity var(--transition);
}

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

.btn--primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 20px var(--blue-glow);
}

.btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px var(--blue-glow);
    color: var(--white);
}

.btn--outline {
    background: transparent; color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
}

.btn--outline:hover {
    border-color: var(--blue); color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(30, 111, 217, 0.15);
}

.btn--dark {
    background: var(--black); color: var(--white);
    border: 1px solid var(--black-border);
}

.btn--dark:hover {
    background: var(--black-light); color: var(--blue);
    transform: translateY(-3px);
    border-color: var(--blue-border);
}

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

.btn--white:hover {
    transform: translateY(-3px); color: var(--black);
    box-shadow: 0 12px 40px rgba(255,255,255,0.2);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    justify-content: center; text-align: center;
    position: relative; overflow: hidden;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(30, 111, 217, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(96, 165, 250, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(30, 111, 217, 0.03) 0%, var(--black) 70%);
}

.hero__3d-scene {
    position: absolute; inset: 0;
    overflow: hidden;
}

/* ===== STICKY OFFERTE KNOP (zijkant) ===== */
.sticky-cta {
    position: fixed;
    right: 0; top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex; align-items: center; gap: 8px;
    padding: 12px 16px;
    background: var(--blue);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px 0 0 8px;
    box-shadow: -4px 4px 20px rgba(30, 111, 217, 0.3);
    transition: all var(--transition);
    writing-mode: horizontal-tb;
    text-decoration: none;
}

.sticky-cta:hover {
    padding-right: 24px;
    box-shadow: -6px 6px 30px rgba(30, 111, 217, 0.5);
    color: #fff;
}

.sticky-cta svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .sticky-cta {
        top: auto; bottom: 20px; right: 20px;
        transform: none;
        border-radius: 8px;
        padding: 14px 18px;
    }
    .sticky-cta span { display: none; }
}

/* === Shine Sweep removed — clean hero === */
.hero__ring {
    display: none;
}

.hero__ring::before,
.hero__ring::after {
    display: none;
}

/* === Coating Protection Layer (subtle expanding rings) === */
.hero__ring-2 {
    position: absolute; top: 50%; left: 50%;
    width: 300px; height: 300px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(30, 111, 217, 0.06);
    border-radius: 50%;
    animation: coatingExpand 6s ease-out infinite;
}

.hero__ring-2::before {
    content: ''; position: absolute;
    inset: -60px;
    border: 1px solid rgba(30, 111, 217, 0.04);
    border-radius: 50%;
    animation: coatingExpand 6s ease-out infinite 2s;
}

.hero__ring-2::after {
    content: ''; position: absolute;
    inset: -120px;
    border: 1px solid rgba(30, 111, 217, 0.02);
    border-radius: 50%;
    animation: coatingExpand 6s ease-out infinite 4s;
}

@keyframes coatingExpand {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.6; }
    70% { opacity: 0.15; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* === Water Beading Droplets (hydrophobic effect) === */
.hero__orb {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.35), rgba(96, 165, 250, 0.15) 50%, rgba(30, 111, 217, 0.05));
    box-shadow:
        0 2px 8px rgba(0,0,0,0.3),
        inset 0 -3px 6px rgba(30, 111, 217, 0.15),
        inset 0 2px 4px rgba(255,255,255,0.2),
        0 0 15px rgba(30, 111, 217, 0.1);
    animation: waterBead ease-in-out infinite;
    backdrop-filter: blur(1px);
}

/* Individual droplets with different sizes/positions/timings */
.hero__orb--1 {
    width: 18px; height: 18px; top: 18%; left: 12%;
    animation-duration: 5s;
}

.hero__orb--2 {
    width: 12px; height: 12px; top: 30%; right: 18%;
    animation-duration: 4s; animation-delay: 1.2s;
}

.hero__orb--3 {
    width: 24px; height: 24px; bottom: 28%; left: 22%;
    animation-duration: 6s; animation-delay: 0.5s;
}

.hero__orb--4 {
    width: 10px; height: 10px; top: 22%; right: 28%;
    animation-duration: 3.5s; animation-delay: 2.5s;
}

.hero__orb--5 {
    width: 16px; height: 16px; bottom: 22%; right: 12%;
    animation-duration: 5.5s; animation-delay: 0.8s;
}

/* Droplet falls onto coated surface, flattens on impact, beads up hydrophobically, slides away */
@keyframes waterBead {
    0% { transform: translateY(-60px) scale(0.4); opacity: 0; border-radius: 50%; }
    /* Falling */
    20% { transform: translateY(0) scale(0.9, 1.1); opacity: 0.7; border-radius: 48% 48% 52% 52%; }
    /* Impact — flattens */
    25% { transform: translateY(2px) scale(1.5, 0.5); opacity: 0.8; border-radius: 45% 45% 50% 50%; }
    /* Hydrophobic bead-up — snaps into tight sphere */
    32% { transform: translateY(-2px) scale(0.8, 1.15); opacity: 0.85; border-radius: 50%; }
    38% { transform: translateY(0) scale(1.0); opacity: 0.8; border-radius: 50%; }
    /* Sitting on surface, slight wobble */
    45% { transform: translateY(0) scale(1.06, 0.94); opacity: 0.75; border-radius: 50%; }
    52% { transform: translateY(0) scale(0.94, 1.06); opacity: 0.7; border-radius: 50%; }
    /* Starts sliding — fast and accelerating */
    65% { transform: translateY(15px) scale(0.9, 1.1); opacity: 0.5; border-radius: 46% 46% 52% 52%; }
    85% { transform: translateY(70px) scale(0.7, 1.4); opacity: 0.25; border-radius: 40% 40% 50% 50%; }
    100% { transform: translateY(120px) scale(0.5, 1.5); opacity: 0; border-radius: 35% 35% 50% 50%; }
}

/* ===== PAGE-SPECIFIC HERO ANIMATIONS ===== */

/* --- PPF: Shield layers building up --- */
.hero-ppf .hero__shield {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    border: 1px solid rgba(30, 111, 217, 0.1);
    animation: shieldLayer 5s ease-in-out infinite;
}
.hero-ppf .hero__shield--1 { width: 180px; height: 260px; animation-delay: 0s; }
.hero-ppf .hero__shield--2 { width: 220px; height: 300px; animation-delay: 0.8s; border-radius: 14px; }
.hero-ppf .hero__shield--3 { width: 260px; height: 340px; animation-delay: 1.6s; border-radius: 16px; }
.hero-ppf .hero__shield--4 { width: 300px; height: 380px; animation-delay: 2.4s; border-radius: 18px; }

.hero-ppf .hero__shield-glow {
    position: absolute; top: 50%; left: 50%;
    width: 140px; height: 220px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(30, 111, 217, 0.08) 0%, transparent 70%);
    animation: shieldPulse 4s ease-in-out infinite;
}

@keyframes shieldLayer {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); border-color: rgba(30, 111, 217, 0.02); }
    30% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); border-color: rgba(30, 111, 217, 0.15); }
    60% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.05); border-color: rgba(30, 111, 217, 0.08); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.15); border-color: rgba(30, 111, 217, 0.01); }
}

@keyframes shieldPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}

/* --- Polijsten: Shine reveal — dof naar glans --- */
.hero-polijsten .hero__gloss-wipe {
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(96, 165, 250, 0.04) 42%, rgba(255,255,255,0.06) 48%, rgba(96, 165, 250, 0.04) 54%, transparent 66%);
    animation: glossWipe 6s ease-in-out infinite;
}

.hero-polijsten .hero__swirl {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
    animation: swirlFade ease-in-out infinite;
}
.hero-polijsten .hero__swirl--1 { width: 80px; height: 40px; top: 25%; left: 20%; transform: rotate(-15deg); animation-duration: 8s; }
.hero-polijsten .hero__swirl--2 { width: 60px; height: 30px; top: 40%; right: 25%; transform: rotate(25deg); animation-duration: 7s; animation-delay: 2s; }
.hero-polijsten .hero__swirl--3 { width: 100px; height: 50px; bottom: 30%; left: 35%; transform: rotate(-8deg); animation-duration: 9s; animation-delay: 1s; }
.hero-polijsten .hero__swirl--4 { width: 50px; height: 25px; top: 55%; right: 35%; transform: rotate(18deg); animation-duration: 6s; animation-delay: 3s; }
.hero-polijsten .hero__swirl--5 { width: 70px; height: 35px; bottom: 40%; right: 18%; transform: rotate(-22deg); animation-duration: 10s; animation-delay: 0.5s; }

.hero-polijsten .hero__gloss-spot {
    position: absolute; top: 50%; left: 50%;
    width: 300px; height: 300px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
    animation: glossPulse 5s ease-in-out infinite;
}

@keyframes glossWipe {
    0% { left: -100%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

@keyframes swirlFade {
    0%, 100% { opacity: 0.4; border-color: rgba(255, 255, 255, 0.05); }
    40% { opacity: 0; border-color: rgba(255, 255, 255, 0); }
    60% { opacity: 0; }
}

@keyframes glossPulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.3); }
}

/* --- Motorfietsen: Chrome reflections shifting across surface --- */
.hero-motor .hero__chrome-reflect {
    position: absolute;
    background: linear-gradient(135deg, transparent 20%, rgba(255,255,255,0.05) 45%, rgba(96, 165, 250, 0.08) 50%, rgba(255,255,255,0.05) 55%, transparent 80%);
    animation: chromeShift ease-in-out infinite;
}
.hero-motor .hero__chrome-reflect--1 {
    width: 500px; height: 300px; top: 10%; left: -200px;
    transform: rotate(-20deg);
    animation-duration: 7s;
}
.hero-motor .hero__chrome-reflect--2 {
    width: 400px; height: 200px; bottom: 15%; right: -200px;
    transform: rotate(15deg);
    animation-duration: 9s; animation-delay: 3s;
}

.hero-motor .hero__exhaust {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.12), rgba(30, 111, 217, 0.03) 60%, transparent);
    filter: blur(2px);
    animation: exhaustPuff ease-out infinite;
}
.hero-motor .hero__exhaust--1 { width: 30px; height: 30px; bottom: 35%; right: 12%; animation-duration: 4s; }
.hero-motor .hero__exhaust--2 { width: 45px; height: 45px; bottom: 38%; right: 10%; animation-duration: 4s; animation-delay: 0.5s; }
.hero-motor .hero__exhaust--3 { width: 60px; height: 60px; bottom: 40%; right: 8%; animation-duration: 4s; animation-delay: 1s; }
.hero-motor .hero__exhaust--4 { width: 40px; height: 40px; bottom: 36%; right: 14%; animation-duration: 4s; animation-delay: 2s; }

.hero-motor .hero__heat-line {
    position: absolute;
    width: 1px;
    background: linear-gradient(to top, rgba(96, 165, 250, 0.15), transparent);
    animation: heatRise linear infinite;
}
.hero-motor .hero__heat-line--1 { height: 60px; bottom: 30%; left: 30%; animation-duration: 3s; }
.hero-motor .hero__heat-line--2 { height: 80px; bottom: 28%; left: 35%; animation-duration: 3.5s; animation-delay: 0.8s; }
.hero-motor .hero__heat-line--3 { height: 50px; bottom: 32%; left: 40%; animation-duration: 2.8s; animation-delay: 1.5s; }
.hero-motor .hero__heat-line--4 { height: 70px; bottom: 29%; left: 45%; animation-duration: 3.2s; animation-delay: 0.4s; }

@keyframes chromeShift {
    0% { transform: rotate(-20deg) translateX(-100%); opacity: 0; }
    20% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { transform: rotate(-20deg) translateX(calc(100vw + 200px)); opacity: 0; }
}

@keyframes exhaustPuff {
    0% { transform: translate(0, 0) scale(0.3); opacity: 0; }
    15% { opacity: 0.5; }
    100% { transform: translate(80px, -60px) scale(2.5); opacity: 0; }
}

@keyframes heatRise {
    0% { transform: translateY(0) scaleX(1); opacity: 0; }
    20% { opacity: 0.4; }
    50% { transform: translateY(-40px) scaleX(1.5); opacity: 0.3; }
    100% { transform: translateY(-100px) scaleX(0.5); opacity: 0; }
}

/* --- Overige Diensten: Floating sparks / particles --- */
.hero-overig .hero__spark {
    position: absolute;
    width: 4px; height: 4px;
    background: rgba(96, 165, 250, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(30, 111, 217, 0.4), 0 0 20px rgba(30, 111, 217, 0.2);
}
.hero-overig .hero__spark--1 { top: 20%; left: 15%; animation: sparkFloat1 6s ease-in-out infinite; }
.hero-overig .hero__spark--2 { top: 35%; right: 20%; animation: sparkFloat2 5s ease-in-out infinite 1s; width: 6px; height: 6px; }
.hero-overig .hero__spark--3 { bottom: 30%; left: 25%; animation: sparkFloat3 7s ease-in-out infinite 0.5s; width: 3px; height: 3px; }
.hero-overig .hero__spark--4 { top: 50%; right: 30%; animation: sparkFloat1 5.5s ease-in-out infinite 2s; }
.hero-overig .hero__spark--5 { bottom: 25%; right: 15%; animation: sparkFloat2 6.5s ease-in-out infinite 1.5s; width: 5px; height: 5px; }
.hero-overig .hero__spark--6 { top: 25%; left: 55%; animation: sparkFloat3 4.5s ease-in-out infinite 3s; width: 3px; height: 3px; }

.hero-overig .hero__tool-ring {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(30, 111, 217, 0.08);
}
.hero-overig .hero__tool-ring--1 { width: 250px; height: 250px; animation: toolRingSpin 20s linear infinite; }
.hero-overig .hero__tool-ring--2 { width: 350px; height: 350px; animation: toolRingSpin 30s linear infinite reverse; }

@keyframes sparkFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(15px, -25px) scale(1.5); opacity: 0.9; }
    50% { transform: translate(-10px, -40px) scale(1); opacity: 0.5; }
    75% { transform: translate(20px, -15px) scale(1.3); opacity: 0.7; }
}
@keyframes sparkFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    30% { transform: translate(-20px, -30px) scale(1.6); opacity: 0.8; }
    60% { transform: translate(10px, -50px) scale(0.8); opacity: 0.4; }
}
@keyframes sparkFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
    40% { transform: translate(25px, -20px) scale(1.8); opacity: 0.9; }
    70% { transform: translate(-15px, -35px) scale(0.6); opacity: 0.3; }
}
@keyframes toolRingSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* --- Detailen op Locatie: Ripple rings (like water drop cleaning) --- */
.hero-locatie .hero__ripple {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(30, 111, 217, 0.12);
    animation: rippleExpand 4s ease-out infinite;
}
.hero-locatie .hero__ripple--1 { width: 60px; height: 60px; animation-delay: 0s; }
.hero-locatie .hero__ripple--2 { width: 60px; height: 60px; animation-delay: 0.8s; }
.hero-locatie .hero__ripple--3 { width: 60px; height: 60px; animation-delay: 1.6s; }
.hero-locatie .hero__ripple--4 { width: 60px; height: 60px; animation-delay: 2.4s; }
.hero-locatie .hero__ripple--5 { width: 60px; height: 60px; animation-delay: 3.2s; }

.hero-locatie .hero__drop {
    position: absolute; top: 50%; left: 50%;
    width: 8px; height: 8px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.6), rgba(30, 111, 217, 0.2));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: dropPulse 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(30, 111, 217, 0.3);
}

.hero-locatie .hero__foam {
    position: absolute;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), rgba(96, 165, 250, 0.1));
    box-shadow: inset 0 -2px 4px rgba(255,255,255,0.1);
}
.hero-locatie .hero__foam--1 { top: 22%; left: 18%; animation: foamFloat 7s ease-in-out infinite; }
.hero-locatie .hero__foam--2 { top: 35%; right: 22%; animation: foamFloat 5s ease-in-out infinite 1.5s; width: 16px; height: 16px; }
.hero-locatie .hero__foam--3 { bottom: 30%; left: 30%; animation: foamFloat 6s ease-in-out infinite 0.8s; width: 10px; height: 10px; }
.hero-locatie .hero__foam--4 { top: 28%; right: 35%; animation: foamFloat 8s ease-in-out infinite 2.2s; width: 14px; height: 14px; }
.hero-locatie .hero__foam--5 { bottom: 25%; right: 20%; animation: foamFloat 5.5s ease-in-out infinite 3s; width: 9px; height: 9px; }

@keyframes rippleExpand {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; border-color: rgba(30, 111, 217, 0.2); }
    100% { transform: translate(-50%, -50%) scale(8); opacity: 0; border-color: rgba(30, 111, 217, 0); }
}

@keyframes dropPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.4; }
}

@keyframes foamFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    30% { transform: translate(10px, -15px) scale(1.2); opacity: 0.6; }
    60% { transform: translate(-8px, -25px) scale(0.9); opacity: 0.4; }
}

/* --- Dealers: Infinity Loop --- */
.hero-dealer .infinity-anim {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 280px; height: 120px;
}
.hero-dealer .inf-track {
    position: absolute; inset: 0;
}
.hero-dealer .inf-track::before,
.hero-dealer .inf-track::after {
    content: ''; position: absolute;
    width: 95px; height: 95px;
    border: 1px solid rgba(30, 111, 217, 0.08);
    border-radius: 50%; top: 50%;
    transform: translateY(-50%);
}
.hero-dealer .inf-track::before { left: 15px; }
.hero-dealer .inf-track::after { right: 15px; }
.hero-dealer .inf-dot {
    position: absolute; width: 10px; height: 10px;
    background: rgba(74, 144, 226, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(30, 111, 217, 0.5), 0 0 32px rgba(30, 111, 217, 0.2);
    animation: dealerInfLoop 5s linear infinite;
}
.hero-dealer .inf-dot--2 {
    animation-delay: -2.5s; opacity: 0.4;
    width: 7px; height: 7px;
}
.hero-dealer .inf-trail {
    position: absolute; width: 5px; height: 5px;
    background: rgba(74, 144, 226, 0.25);
    border-radius: 50%;
    animation: dealerInfLoop 5s linear infinite;
}
.hero-dealer .inf-trail--1 { animation-delay: -0.2s; opacity: 0.35; }
.hero-dealer .inf-trail--2 { animation-delay: -0.4s; opacity: 0.2; }
.hero-dealer .inf-trail--3 { animation-delay: -0.6s; opacity: 0.1; }
@keyframes dealerInfLoop {
    0% { left: 65px; top: 12px; }
    12.5% { left: 25px; top: 35px; }
    25% { left: 25px; top: 78px; }
    37.5% { left: 65px; top: 100px; }
    50% { left: 140px; top: 100px; }
    62.5% { left: 240px; top: 78px; }
    75% { left: 240px; top: 35px; }
    87.5% { left: 195px; top: 12px; }
    100% { left: 65px; top: 12px; }
}

/* --- Projecten: Prism Light Split --- */
.hero-projecten .prism-anim {
    position: absolute; inset: 0; overflow: hidden;
}
.hero-projecten .prism-beam {
    position: absolute; left: -15%; top: 50%;
    width: 50%; height: 2px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
    animation: prismBeamIn 8s ease-in-out infinite;
}
.hero-projecten .prism-core {
    position: absolute; top: 50%; left: 45%;
    width: 28px; height: 40px;
    transform: translate(-50%, -50%) rotate(30deg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.hero-projecten .prism-ray {
    position: absolute; left: 50%; top: 50%;
    height: 1px; transform-origin: left center;
    animation: prismRaySpread 8s ease-in-out infinite;
}
.hero-projecten .prism-ray--1 { width: 300px; background: linear-gradient(90deg, rgba(220,60,60,0.25), transparent); transform: rotate(-15deg); animation-delay: 0.1s; }
.hero-projecten .prism-ray--2 { width: 320px; background: linear-gradient(90deg, rgba(220,160,30,0.25), transparent); transform: rotate(-5deg); animation-delay: 0.2s; }
.hero-projecten .prism-ray--3 { width: 310px; background: linear-gradient(90deg, rgba(60,220,60,0.25), transparent); transform: rotate(5deg); animation-delay: 0.3s; }
.hero-projecten .prism-ray--4 { width: 290px; background: linear-gradient(90deg, rgba(60,100,220,0.25), transparent); transform: rotate(15deg); animation-delay: 0.4s; }
.hero-projecten .prism-ray--5 { width: 280px; background: linear-gradient(90deg, rgba(140,60,220,0.25), transparent); transform: rotate(25deg); animation-delay: 0.5s; }
@keyframes prismBeamIn { 0%,100%{opacity:0;left:-30%} 30%{opacity:1;left:0%} 70%{opacity:1;left:0%} 90%{opacity:0} }
@keyframes prismRaySpread { 0%,20%{opacity:0;width:0} 40%{opacity:0.6} 70%{opacity:0.6} 100%{opacity:0} }

/* --- Certificeringen: Heartbeat Pulse --- */
.hero-cert .heartbeat-anim {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; max-width: 500px; height: 2px;
    background: rgba(30, 111, 217, 0.08);
    overflow: hidden;
}
.hero-cert .hb-pulse {
    position: absolute; top: 50%; left: -25%;
    width: 25%; height: 80px;
    transform: translateY(-50%);
    animation: hbSweep 4s linear infinite;
}
.hero-cert .hb-pulse svg {
    width: 100%; height: 100%;
}
.hero-cert .hb-pulse polyline {
    fill: none; stroke: rgba(74, 144, 226, 0.5);
    stroke-width: 2;
}
.hero-cert .hb-glow {
    position: absolute; top: 50%; left: -5%;
    width: 10px; height: 10px;
    background: rgba(74, 144, 226, 0.7);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 16px rgba(30, 111, 217, 0.5), 0 0 32px rgba(30, 111, 217, 0.2);
    animation: hbDot 4s linear infinite;
}
@keyframes hbSweep { 0%{left:-25%} 100%{left:100%} }
@keyframes hbDot { 0%{left:-5%} 100%{left:105%} }

/* --- Over Ons: Aurora Borealis --- */
.hero-overons .aurora-anim {
    position: absolute; inset: 0; overflow: hidden;
}
.hero-overons .aurora-band {
    position: absolute; bottom: 0; width: 200%; height: 60%;
    filter: blur(40px); opacity: 0.35;
}
.hero-overons .aurora-band--1 {
    background: linear-gradient(90deg, transparent, rgba(30,111,217,0.35), rgba(96,165,250,0.15), rgba(30,200,180,0.25), transparent);
    animation: auroraShift 10s ease-in-out infinite;
}
.hero-overons .aurora-band--2 {
    background: linear-gradient(90deg, transparent, rgba(100,80,220,0.25), rgba(30,111,217,0.2), transparent);
    animation: auroraShift 14s ease-in-out infinite reverse;
    bottom: 10%; height: 50%;
}
.hero-overons .aurora-band--3 {
    background: linear-gradient(90deg, transparent, rgba(30,200,160,0.15), rgba(74,144,226,0.15), transparent);
    animation: auroraShift 12s ease-in-out infinite 2s;
    bottom: 20%; height: 40%;
}
@keyframes auroraShift { 0%{transform:translateX(-30%) scaleY(1)} 50%{transform:translateX(10%) scaleY(1.3)} 100%{transform:translateX(-30%) scaleY(1)} }

/* --- Contact: Coating Shine Sweep --- */
.hero-contact .shine-anim {
    position: absolute; inset: 0; overflow: hidden;
}
.hero-contact .shine-anim::after {
    content: ''; position: absolute;
    top: 0; left: -120%; width: 60%; height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(74,144,226,0.05) 42%, rgba(255,255,255,0.08) 48%, rgba(74,144,226,0.05) 54%, transparent 66%);
    animation: contactShineSweep 4s ease-in-out infinite;
}
@keyframes contactShineSweep { 0%{left:-120%} 100%{left:120%} }

/* --- Offerte: Floating Particles --- */
.hero-offerte .particles-anim {
    position: absolute; inset: 0; overflow: hidden;
}
.hero-offerte .p-dot {
    position: absolute; border-radius: 50%;
    background: rgba(74, 144, 226, 0.5);
    box-shadow: 0 0 10px rgba(30, 111, 217, 0.3);
}
.hero-offerte .p-dot--1 { width: 5px; height: 5px; top: 18%; left: 12%; animation: offerteFloat1 7s ease-in-out infinite; }
.hero-offerte .p-dot--2 { width: 7px; height: 7px; top: 38%; left: 65%; animation: offerteFloat2 6s ease-in-out infinite 1s; }
.hero-offerte .p-dot--3 { width: 4px; height: 4px; top: 65%; left: 28%; animation: offerteFloat3 8s ease-in-out infinite 0.5s; }
.hero-offerte .p-dot--4 { width: 6px; height: 6px; top: 28%; left: 82%; animation: offerteFloat1 6.5s ease-in-out infinite 2s; }
.hero-offerte .p-dot--5 { width: 5px; height: 5px; top: 55%; left: 48%; animation: offerteFloat2 7.5s ease-in-out infinite 1.5s; }
.hero-offerte .p-dot--6 { width: 4px; height: 4px; top: 75%; left: 72%; animation: offerteFloat3 5.5s ease-in-out infinite 3s; }
.hero-offerte .p-dot--7 { width: 6px; height: 6px; top: 42%; left: 18%; animation: offerteFloat1 5s ease-in-out infinite 0.8s; }
.hero-offerte .p-dot--8 { width: 3px; height: 3px; top: 82%; left: 55%; animation: offerteFloat2 6s ease-in-out infinite 2.5s; }
@keyframes offerteFloat1 { 0%,100%{transform:translate(0,0) scale(1);opacity:0.3} 25%{transform:translate(15px,-30px) scale(1.5);opacity:0.9} 50%{transform:translate(-10px,-50px) scale(1);opacity:0.5} 75%{transform:translate(20px,-20px) scale(1.3);opacity:0.7} }
@keyframes offerteFloat2 { 0%,100%{transform:translate(0,0);opacity:0.4} 30%{transform:translate(-25px,-35px) scale(1.6);opacity:0.8} 60%{transform:translate(12px,-55px) scale(0.8);opacity:0.4} }
@keyframes offerteFloat3 { 0%,100%{transform:translate(0,0);opacity:0.2} 40%{transform:translate(28px,-25px) scale(1.8);opacity:0.9} 70%{transform:translate(-18px,-40px) scale(0.6);opacity:0.3} }

/* ===== END PAGE-SPECIFIC HERO ANIMATIONS ===== */

.hero__content {
    position: relative; z-index: 2; padding: 0 24px;
    transform-style: preserve-3d;
}

.hero__badge {
    display: inline-block; padding: 10px 28px;
    border: 1px solid var(--blue-border); border-radius: 30px;
    font-size: 0.73rem; text-transform: uppercase;
    letter-spacing: 4px; color: var(--blue);
    margin-bottom: 36px;
    background: var(--blue-subtle);
    backdrop-filter: blur(10px);
    animation: badgeFadeIn 1s ease forwards;
    opacity: 0;
}

@keyframes badgeFadeIn {
    from { opacity: 0; transform: translateY(20px) rotateX(15deg); }
    to { opacity: 1; transform: translateY(0) rotateX(0); }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    font-weight: 700; line-height: 1.05;
    margin-bottom: 28px; color: var(--white);
    text-transform: uppercase; letter-spacing: 3px;
    animation: heroTitleIn 1.2s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.hero__title span {
    display: block;
    background: var(--blue);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes heroTitleIn {
    from { opacity: 0; transform: translate3d(0, 50px, -100px); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero__subtitle {
    font-size: 1.15rem; color: var(--white-dim);
    max-width: 620px; margin: 0 auto 44px;
    font-weight: 300; line-height: 1.8;
    animation: heroSubIn 1.2s ease forwards;
    opacity: 0; animation-delay: 0.5s;
}

@keyframes heroSubIn {
    from { opacity: 0; transform: translate3d(0, 30px, -50px); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero__buttons {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    animation: heroBtnIn 1.2s ease forwards;
    opacity: 0; animation-delay: 0.8s;
}

@keyframes heroBtnIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
    position: absolute; bottom: 60px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; color: var(--grey); font-size: 0.72rem;
    letter-spacing: 3px; text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--blue), transparent);
    animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    20% { opacity: 1; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    80% { opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
    min-height: 50vh; display: flex; align-items: center;
    justify-content: center; text-align: center;
    position: relative; overflow: hidden;
    padding-top: 100px;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(30, 111, 217, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(96, 165, 250, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(30, 111, 217, 0.03) 0%, var(--black) 70%);
}

.page-hero__content {
    position: relative; z-index: 2;
    animation: heroTitleIn 1s ease forwards;
    opacity: 0;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700; margin-bottom: 16px;
    text-transform: uppercase; letter-spacing: 2px;
}

.page-hero__title span {
    background: var(--blue);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero__subtitle {
    font-size: 1.1rem; color: var(--white-dim);
    max-width: 550px; margin: 0 auto;
    font-weight: 300;
}

/* Hero Background Image */
.page-hero__bg {
    position: absolute; inset: 0; z-index: 0;
    overflow: hidden;
}
.page-hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    opacity: 0.25;
    filter: brightness(0.6);
}
.page-hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(5,5,8,0.3) 0%, rgba(5,5,8,0.7) 60%, var(--black) 100%);
}

/* ===== SECTIONS (general) ===== */
section { padding: 120px 0; position: relative; z-index: 1; }

.section__label {
    display: inline-block; font-size: 0.73rem;
    text-transform: uppercase; letter-spacing: 4px;
    color: var(--blue); margin-bottom: 16px;
    position: relative; padding-left: 40px;
}

.section__label::before {
    content: ''; position: absolute; left: 0; top: 50%;
    width: 28px; height: 1px;
    background: var(--blue);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700; margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 2px;
    line-height: 1.15;
}

.section__subtitle {
    font-size: 1.05rem; color: var(--white-dim);
    max-width: 600px; font-weight: 300; line-height: 1.8;
}

.section__header { margin-bottom: 72px; }
.section__header--center { text-align: center; }
.section__header--center .section__label { padding-left: 0; }
.section__header--center .section__label::before { display: none; }
.section__header--center .section__subtitle { margin: 0 auto; }

/* ===== 3D CARD COMPONENT ===== */
.card-3d {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    padding: 44px 36px;
    position: relative; overflow: hidden;
    transition: all var(--transition-slow);
    transform-style: preserve-3d;
    transform: perspective(800px) rotateX(0) rotateY(0);
    will-change: transform, box-shadow;
}

.card-3d::before {
    content: ''; position: absolute; top: 0; left: -100%; right: 0;
    height: 3px; width: 100%;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    transition: none;
}

.card-3d::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(30, 111, 217, 0.06) 0%, transparent 60%);
    opacity: 0; transition: opacity var(--transition);
    pointer-events: none;
}

.card-3d:hover {
    border-color: var(--blue-border);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(30, 111, 217, 0.08);
}

/* Coating shine sweep across top of card on hover */
.card-3d:hover::before { animation: cardShineSweep 1.2s ease forwards; }
.card-3d:hover::after { opacity: 1; }

@keyframes cardShineSweep {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Glow dot on card hover */
.card-3d__glow {
    position: absolute; width: 200px; height: 200px;
    background: radial-gradient(circle, var(--blue-glow), transparent 70%);
    border-radius: 50%; pointer-events: none;
    opacity: 0; transition: opacity var(--transition);
    transform: translate(-50%, -50%);
}

.card-3d:hover .card-3d__glow { opacity: 0.4; }

/* ===== SERVICE CARDS ===== */
.services__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card__icon {
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--blue-subtle), rgba(30, 111, 217, 0.15));
    border: 1px solid var(--blue-border);
    border-radius: 14px; margin-bottom: 28px;
    transition: all var(--transition);
    transform-style: preserve-3d;
}

.card-3d:hover .service-card__icon {
    transform: translateZ(20px) scale(1.05);
    box-shadow: 0 0 30px var(--blue-glow);
    border-color: var(--blue);
}

.service-card__icon svg { width: 28px; height: 28px; color: var(--blue); }

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.35rem; font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase; letter-spacing: 1.5px;
    transition: transform var(--transition);
}

.card-3d:hover .service-card__title { transform: translateZ(10px); }

.service-card__desc {
    color: var(--white-dim); font-size: 0.95rem;
    line-height: 1.7; margin-bottom: 24px;
}

.service-card__list { list-style: none; }

.service-card__list li {
    padding: 7px 0; color: var(--white-dim);
    font-size: 0.9rem; display: flex; align-items: flex-start; gap: 12px;
}

.service-card__list li::before {
    content: ''; width: 6px; height: 6px; min-width: 6px;
    background: var(--blue); border-radius: 50%;
    margin-top: 9px;
    box-shadow: 0 0 8px var(--blue-glow);
}

.service-card__link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 24px; font-size: 0.88rem; font-weight: 500;
    color: var(--blue); text-transform: uppercase;
    letter-spacing: 1px; transition: all var(--transition);
}

.service-card__link:hover { gap: 14px; color: var(--blue); }

/* ===== ABOUT SECTION ===== */
.about__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}

.about__image {
    aspect-ratio: 4/5; background: var(--black-card);
    border-radius: 12px; overflow: hidden; position: relative;
    border: 1px solid var(--black-border);
    transform-style: preserve-3d;
    transition: all var(--transition-slow);
}

.about__image:hover {
    transform: perspective(800px) rotateY(-5deg) rotateX(3deg);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(30, 111, 217, 0.1);
}

.about__image-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--black-card), #12121F);
    color: var(--grey); font-size: 0.85rem;
    flex-direction: column; gap: 12px;
}

.about__image-placeholder svg { opacity: 0.3; }

.about__stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px; margin-top: 40px;
}

.stat {
    padding: 24px; background: var(--black-card);
    border: 1px solid var(--black-border); border-radius: 10px;
    transition: all var(--transition);
    transform-style: preserve-3d;
}

.stat:hover {
    border-color: var(--blue-border);
    transform: translateY(-4px) translateZ(10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 1.6rem; font-weight: 700;
    background: var(--blue);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat__label {
    font-size: 0.85rem; color: var(--white-dim); margin-top: 4px;
}

/* ===== PROCESS SECTION ===== */
.process__steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
    position: relative;
}

.process__steps::before {
    content: ''; position: absolute;
    top: 45px; left: 12.5%; right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-border), var(--blue-border), transparent);
}

.process-step {
    text-align: center; position: relative;
    transition: all var(--transition);
}

.process-step:hover { transform: translateY(-8px); }

.process-step__number {
    width: 70px; height: 70px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-heading);
    font-size: 1.5rem; font-weight: 700;
    color: var(--blue);
    border: 2px solid var(--blue-border);
    border-radius: 50%;
    background: var(--black);
    position: relative; z-index: 1;
    transition: all var(--transition);
}

.process-step:hover .process-step__number {
    border-color: var(--blue);
    box-shadow: 0 0 30px var(--blue-glow);
    transform: scale(1.1) rotateY(180deg);
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: var(--white);
}

.process-step__title {
    font-family: var(--font-heading);
    font-size: 1.15rem; font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase; letter-spacing: 1px;
}

.process-step__desc {
    font-size: 0.9rem; color: var(--white-dim); line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery__item {
    aspect-ratio: 16/10; background: var(--black-card);
    border-radius: 10px; overflow: hidden;
    border: 1px solid var(--black-border);
    position: relative; cursor: pointer;
    transition: all var(--transition-slow);
    transform-style: preserve-3d;
}

.gallery__item:hover {
    border-color: var(--blue-border);
    transform: perspective(600px) rotateY(-3deg) scale(1.03);
    box-shadow: 20px 10px 40px rgba(0,0,0,0.5), 0 0 30px rgba(30, 111, 217, 0.1);
    z-index: 2;
}

.gallery__item--large {
    grid-column: span 2; grid-row: span 2;
    aspect-ratio: auto;
}

.gallery__item-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--black-card), #12121F);
    color: var(--grey); font-size: 0.82rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}

.testimonial__stars {
    display: flex; gap: 4px; margin-bottom: 20px;
}

.testimonial__stars svg { width: 18px; height: 18px; color: var(--blue); }

.testimonial__text {
    font-size: 1rem; color: var(--white-dim);
    line-height: 1.8; margin-bottom: 28px;
    font-style: italic;
}

.testimonial__author { font-weight: 600; font-size: 0.95rem; }
.testimonial__car { font-size: 0.85rem; color: var(--grey); margin-top: 2px; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    padding: 100px 0; text-align: center;
    position: relative; overflow: hidden;
}

.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0,0,0,0.2) 0%, transparent 50%);
}

.cta-banner__content { position: relative; z-index: 1; }

.cta-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--white); font-weight: 700;
    margin-bottom: 16px;
}

.cta-banner__text {
    color: rgba(255,255,255,0.8); font-size: 1.1rem;
    margin-bottom: 36px; max-width: 520px;
    margin-left: auto; margin-right: auto;
}

/* ===== CONTACT ===== */
.contact__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
}

.contact__info-item {
    display: flex; gap: 18px; margin-bottom: 36px;
}

.contact__info-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-subtle), rgba(30, 111, 217, 0.12));
    border: 1px solid var(--blue-border);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}

.contact__info-item:hover .contact__info-icon {
    box-shadow: 0 0 25px var(--blue-glow);
    transform: rotateY(180deg);
}

.contact__info-icon svg { width: 22px; height: 22px; color: var(--blue); }

.contact__info-label {
    font-size: 0.78rem; color: var(--grey);
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.contact__info-value { font-size: 1rem; }

.contact form { display: flex; flex-direction: column; gap: 20px; }

.form-group label {
    display: block; font-size: 0.78rem;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--grey); margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 15px 20px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 8px; color: var(--white);
    font-family: var(--font-body); font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 20px rgba(30, 111, 217, 0.15);
}

.form-group textarea { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== PAKKETTEN / PRICING ===== */
.packages__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}

.package {
    position: relative;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    padding: 44px 36px;
    transition: all var(--transition);
}

.package:hover {
    border-color: var(--blue-border);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(30, 111, 217, 0.08);
}

.package__header {
    margin-bottom: 28px; padding-bottom: 28px;
    border-bottom: 1px solid var(--black-border);
}

.package--featured {
    transform: scale(1.04);
    border-color: var(--blue-border);
    box-shadow: 0 0 50px rgba(30, 111, 217, 0.1);
}

.package--featured .card-3d {
    border-color: var(--blue-border);
    box-shadow: 0 0 50px rgba(30, 111, 217, 0.1);
}

.package__badge {
    position: absolute; top: -14px; left: 50%;
    transform: translateX(-50%); z-index: 2;
    background: var(--blue);
    color: var(--white); padding: 6px 24px;
    border-radius: 20px; font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 2px;
    font-weight: 600;
    box-shadow: 0 4px 20px var(--blue-glow);
}

.package__title {
    font-family: var(--font-heading);
    font-size: 1.5rem; font-weight: 700;
    margin-bottom: 8px;
}

.package__price {
    font-family: var(--font-heading);
    font-size: 1.6rem; font-weight: 700;
    color: var(--blue);
    margin-top: 12px;
}
.package--featured .package__price {
    color: var(--white);
}

.package__subtitle {
    color: var(--white-dim); font-size: 0.95rem;
    margin-bottom: 28px; line-height: 1.6;
}

.package__price {
    font-family: var(--font-heading);
    font-size: 1.2rem; font-weight: 600;
    color: var(--blue);
    margin-bottom: 28px; padding-bottom: 28px;
    border-bottom: 1px solid var(--black-border);
}

.package__features, .package__list { list-style: none; margin-bottom: 32px; }

.package__features li, .package__list li {
    padding: 8px 0; color: var(--white-dim);
    font-size: 0.92rem; display: flex; align-items: center; gap: 12px;
}

.package__list li::before {
    content: ''; width: 8px; height: 8px; flex-shrink: 0;
    border-radius: 50%;
    background: var(--blue);
}

.package__features li svg {
    width: 18px; height: 18px; color: var(--blue); flex-shrink: 0;
}

/* ===== FAQ ACCORDION ===== */
.faq__list {
    max-width: 800px; margin: 0 auto;
}

.faq__item {
    margin-bottom: 12px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    transition: all var(--transition);
    overflow: hidden;
}

.faq__item:hover {
    border-color: var(--blue-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.faq__item.faq--open {
    border-color: var(--blue-border);
    box-shadow: 0 12px 30px rgba(30,111,217,0.15);
}

.faq__question {
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
    padding: 28px 32px;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
    transition: color 0.3s ease;
}

.faq__question:hover {
    color: var(--blue);
}

.faq__question::after {
    content: '';
    width: 12px; height: 12px;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq--open .faq__question::after {
    transform: rotate(-135deg);
}

.faq__answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.faq--open .faq__answer-wrap {
    max-height: 400px;
}

.faq__answer {
    color: var(--white-dim);
    font-size: 0.95rem; line-height: 1.8;
    padding: 0 32px 28px 32px;
    margin: 0;
}

/* ===== MAP ===== */
.contact__map {
    margin-top: 48px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--black-border);
    position: relative;
}

.contact__map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    filter: grayscale(1) invert(1) contrast(1.1) brightness(0.7) hue-rotate(180deg);
    transition: filter 0.4s ease;
}

.contact__map:hover iframe {
    filter: grayscale(0.4) invert(1) contrast(1.05) brightness(0.75) hue-rotate(180deg);
}

.contact__map-label {
    position: absolute;
    bottom: 12px; left: 12px;
    background: rgba(5,5,8,0.85);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--white-dim);
    pointer-events: none;
    border: 1px solid var(--black-border);
}

/* ===== CALLBACK FORM ===== */
.callback-form {
    max-width: 700px; margin: 0 auto;
}

.callback-form__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

/* ===== FEATURE BLOCKS ===== */
.features__grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-block {
    display: flex; gap: 24px; padding: 36px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    transition: all var(--transition);
    transform-style: preserve-3d;
}

.feature-block:hover {
    border-color: var(--blue-border);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(30, 111, 217, 0.05);
}

.feature-block__icon {
    width: 52px; height: 52px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--blue-subtle);
    border: 1px solid var(--blue-border);
    border-radius: 12px;
}

.feature-block__icon svg { width: 24px; height: 24px; color: var(--blue); }

.feature-block__title {
    font-family: var(--font-heading);
    font-size: 1.15rem; font-weight: 600;
    margin-bottom: 8px;
}

.feature-block__desc {
    color: var(--white-dim); font-size: 0.92rem; line-height: 1.7;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative; padding-left: 50px;
}

.timeline::before {
    content: ''; position: absolute;
    left: 20px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue-border), var(--blue), var(--blue-border));
}

.timeline__item {
    position: relative; margin-bottom: 48px;
    padding-left: 32px;
}

.timeline__item::before {
    content: ''; position: absolute;
    left: -38px; top: 8px;
    width: 16px; height: 16px;
    border: 2px solid var(--blue);
    border-radius: 50%;
    background: var(--black);
    transition: all var(--transition);
}

.timeline__item:hover::before {
    background: var(--blue);
    box-shadow: 0 0 20px var(--blue-glow);
}

.timeline__title {
    font-family: var(--font-heading);
    font-size: 1.2rem; font-weight: 600;
    margin-bottom: 8px;
}

.timeline__desc {
    color: var(--white-dim); font-size: 0.95rem; line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black-light);
    border-top: 1px solid var(--black-border);
    padding: 72px 0 32px;
    position: relative; z-index: 1;
}

.footer__grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 48px; margin-bottom: 48px;
}

.footer__brand-desc {
    color: var(--white-dim); font-size: 0.9rem;
    line-height: 1.7; margin-top: 16px; max-width: 360px;
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1rem; font-weight: 600;
    margin-bottom: 20px; color: var(--blue);
    text-transform: uppercase; letter-spacing: 1.5px;
}

.footer__links { list-style: none; }
.footer__links li { margin-bottom: 12px; }

.footer__links a {
    color: var(--white-dim); font-size: 0.9rem;
    transition: all var(--transition);
    position: relative;
}

.footer__links a:hover { color: var(--blue); padding-left: 8px; }

.footer__bottom {
    border-top: 1px solid var(--black-border);
    padding-top: 24px; text-align: center;
    color: var(--grey); font-size: 0.85rem;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed !important;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
}

.floating-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 14px;
    background: linear-gradient(180deg, var(--blue), var(--blue-dark));
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    text-decoration: none;
    border-radius: 10px 0 0 10px;
    box-shadow: -4px 0 24px rgba(30,111,217,0.35);
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.floating-cta a:hover {
    padding-left: 18px;
    box-shadow: -6px 0 35px rgba(30,111,217,0.5);
}

.floating-cta a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .floating-cta {
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
    .floating-cta a {
        padding: 12px 8px;
        font-size: 0.65rem;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translate3d(0, 40px, -30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.fade-in-left {
    opacity: 0;
    transform: translate3d(-60px, 0, -30px) rotateY(5deg);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0);
}

.fade-in-right {
    opacity: 0;
    transform: translate3d(60px, 0, -30px) rotateY(-5deg);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.85) translate3d(0, 20px, -50px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== SECTION BACKGROUNDS ===== */
.section--dark {
    background: var(--black-light);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
}

.section--glow {
    position: relative;
    overflow: hidden;
}

.section--glow::before {
    content: ''; position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, rgba(30, 111, 217, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Subtle coating shine sweep across sections */
.section--glow::after {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,0.01) 45%,
        rgba(96, 165, 250, 0.02) 50%,
        rgba(255,255,255,0.01) 55%,
        transparent 60%
    );
    animation: sectionShineSweep 12s ease-in-out infinite;
    pointer-events: none;
}

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

/* ===== OFFERTE BUILDER ===== */
.quote-builder { max-width: 900px; margin: 0 auto; }

.quote-step {
    margin-bottom: 48px; padding: 40px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    transition: all var(--transition);
}

.quote-step:hover { border-color: var(--blue-border); }

.quote-step__number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--blue);
    color: var(--white); font-weight: 700; font-size: 0.9rem;
    margin-bottom: 16px;
}

.quote-step__title {
    font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 600;
    margin-bottom: 8px;
}

.quote-step__desc {
    color: var(--white-dim); font-size: 0.92rem;
    margin-bottom: 24px;
}

.quote-options {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.quote-option {
    position: relative; cursor: pointer;
}

.quote-option input[type="checkbox"],
.quote-option input[type="radio"] {
    position: absolute; opacity: 0; width: 0; height: 0;
}

.quote-option__card {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px 24px;
    background: var(--black-light);
    border: 2px solid var(--black-border);
    border-radius: 10px;
    transition: all var(--transition);
    cursor: pointer; min-height: 80px;
}

.quote-option input:checked + .quote-option__card {
    border-color: var(--blue);
    background: rgba(30, 111, 217, 0.08);
    box-shadow: 0 0 25px rgba(30, 111, 217, 0.12);
}

.quote-option__card:hover {
    border-color: var(--blue-border);
    transform: translateY(-2px);
}

.quote-option__check {
    width: 24px; height: 24px; min-width: 24px;
    border: 2px solid var(--black-border);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
    margin-top: 2px;
}

.quote-option input:checked + .quote-option__card .quote-option__check {
    background: var(--blue);
    border-color: var(--blue);
}

.quote-option__check svg {
    width: 14px; height: 14px; color: var(--white);
    opacity: 0; transition: opacity var(--transition);
}

.quote-option input:checked + .quote-option__card .quote-option__check svg {
    opacity: 1;
}

.quote-option__info h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem; font-weight: 600;
    margin-bottom: 4px;
}

.quote-option__info p {
    color: var(--white-dim); font-size: 0.85rem; line-height: 1.5;
}

.quote-option__price {
    color: var(--blue); font-size: 0.8rem;
    font-weight: 500; margin-top: 4px;
}

/* Quote Summary */
.quote-summary {
    padding: 40px;
    background: linear-gradient(135deg, rgba(30, 111, 217, 0.08), rgba(30, 111, 217, 0.03));
    border: 1px solid var(--blue-border);
    border-radius: 12px;
    position: sticky; top: 100px;
}

.quote-summary__title {
    font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--blue-border);
}

.quote-summary__items { list-style: none; margin-bottom: 24px; }

.quote-summary__items li {
    padding: 10px 0;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(30, 111, 217, 0.1);
    font-size: 0.92rem;
}

.quote-summary__items li:last-child { border-bottom: none; }

.quote-summary__empty {
    color: var(--grey); font-size: 0.9rem;
    font-style: italic; text-align: center;
    padding: 20px 0;
}

.quote-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: flex-start;
}

/* ===== PROJECT GRID ===== */
.projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-slow);
    transform-style: preserve-3d;
}

.project-card:hover {
    border-color: var(--blue-border);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 30px rgba(30, 111, 217, 0.08);
}

.project-card__image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--black-card), #12121F);
    display: flex; align-items: center; justify-content: center;
    color: var(--grey); font-size: 0.82rem;
    overflow: hidden;
}

.project-card__image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-card__image img {
    transform: scale(1.08);
}

.project-card__content {
    padding: 24px;
}

.project-card__tag {
    display: inline-block; padding: 4px 14px;
    background: var(--blue-subtle);
    border: 1px solid var(--blue-border);
    border-radius: 20px; font-size: 0.72rem;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--blue); margin-bottom: 12px;
}

.project-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem; font-weight: 600;
    margin-bottom: 8px;
}

.project-card__desc {
    color: var(--white-dim); font-size: 0.88rem;
    line-height: 1.6;
}

/* ===== PROJECT CAROUSEL ===== */
.project-carousel {
    margin-bottom: 80px;
}
.project-carousel:last-child {
    margin-bottom: 0;
}
.project-carousel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.project-carousel__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: var(--heading-transform);
    letter-spacing: 1px;
}
.project-carousel__title span {
    color: var(--blue);
}
.project-carousel__nav {
    display: flex;
    gap: 12px;
}
.project-carousel__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--black-border);
    background: var(--black-card);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.project-carousel__btn:hover {
    border-color: var(--blue);
    background: var(--blue-subtle);
    color: var(--blue);
}
.project-carousel__btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.project-carousel__btn svg {
    width: 20px;
    height: 20px;
}
.project-carousel__track-wrap {
    overflow: hidden;
    border-radius: 12px;
}
.project-carousel__track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
}
.project-carousel__track:active {
    cursor: grabbing;
}
.project-carousel__slide {
    min-width: calc(33.333% - 16px);
    flex-shrink: 0;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition);
}
.project-carousel__slide:hover {
    border-color: var(--blue-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(30, 111, 217, 0.06);
}
.project-carousel__image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--black-card), #12121F);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.project-carousel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.project-carousel__slide:hover .project-carousel__image img {
    transform: scale(1.06);
}
.project-carousel__placeholder {
    color: var(--grey);
    font-size: 0.82rem;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.project-carousel__placeholder svg {
    width: 40px;
    height: 40px;
    opacity: 0.4;
}
.project-carousel__info {
    padding: 24px;
}
.project-carousel__slide-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.project-carousel__slide-desc {
    color: var(--white-dim);
    font-size: 0.85rem;
    line-height: 1.6;
}
.project-carousel__slide-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--blue-subtle);
    border: 1px solid var(--blue-border);
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue);
    margin-bottom: 12px;
}
.project-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.project-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--black-border);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.project-carousel__dot--active {
    background: var(--blue);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 900px) {
    .project-carousel__slide {
        min-width: calc(50% - 12px);
    }
}
@media (max-width: 600px) {
    .project-carousel__slide {
        min-width: 100%;
    }
    .project-carousel__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ===== CERTIFICATION BADGES ===== */
.cert-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cert-card {
    text-align: center; padding: 48px 32px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    transition: all var(--transition);
}

.cert-card:hover {
    border-color: var(--blue-border);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cert-card__icon {
    width: 80px; height: 80px; margin: 0 auto 24px;
    display: flex; align-items: center; justify-content: center;
    background: var(--blue-subtle);
    border: 1px solid var(--blue-border);
    border-radius: 50%;
    transition: all var(--transition);
}

.cert-card:hover .cert-card__icon {
    box-shadow: 0 0 30px var(--blue-glow);
    transform: rotateY(180deg) scale(1.1);
}

.cert-card__icon svg { width: 36px; height: 36px; color: var(--blue); }

.cert-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem; font-weight: 600;
    margin-bottom: 8px;
}

.cert-card__desc {
    color: var(--white-dim); font-size: 0.9rem; line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .process__steps { grid-template-columns: repeat(2, 1fr); }
    .process__steps::before { display: none; }
    .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__item--large { grid-column: span 2; grid-row: span 1; }
    .packages__grid { grid-template-columns: repeat(2, 1fr); }
    .features__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav {
        display: none; flex-direction: column;
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(5, 5, 8, 0.98);
        backdrop-filter: blur(20px);
        justify-content: center; align-items: center;
        gap: 16px; padding: 24px;
        overflow-y: auto;
        z-index: 1000;
    }
    .nav.active { display: flex; }
    .nav a { font-size: 1.05rem; }
    .menu-toggle { display: block; }

    /* Dropdown als platte lijst tonen op mobiel */
    .nav__dropdown {
        display: contents;
    }
    .nav__dropdown-trigger { display: none !important; }
    .nav__dropdown-menu {
        display: contents;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .nav__dropdown-menu a {
        font-size: 1.05rem !important;
        text-align: center;
        padding: 4px 0;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Offerte CTA knop prominent in mobiel menu */
    .nav .nav__cta {
        margin-top: 12px;
        padding: 14px 36px !important;
        font-size: 0.95rem !important;
        width: auto;
        display: inline-flex !important;
        justify-content: center;
    }

    .quote-options { grid-template-columns: 1fr; }
    .quote-layout { grid-template-columns: 1fr; }
    .quote-summary { position: static; }
    .projects__grid { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr; }

    .hero__ring, .hero__ring-2 { display: none; }

    .about__grid { grid-template-columns: 1fr; gap: 40px; }
    .services__grid { grid-template-columns: 1fr; }
    .process__steps { grid-template-columns: 1fr; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: 1fr; }
    .gallery__item--large { grid-column: span 1; }
    .contact__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .packages__grid { grid-template-columns: 1fr; }
    .package--featured { transform: none; }

    section { padding: 80px 0; }
    .page-hero { min-height: 40vh; }
}

@media (max-width: 480px) {
    .about__stats { grid-template-columns: 1fr; }
    .hero__title { font-size: 2.2rem; }
    .btn { padding: 14px 28px; font-size: 0.82rem; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    padding: 40px 0;
    background: var(--black-light);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
}

.trust-bar__items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white-dim);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.trust-bar__item svg {
    width: 22px;
    height: 22px;
    color: var(--blue);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-bar__items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .trust-bar__item {
        font-size: 0.8rem;
    }
}

/* ===== MOBILE FOOTER CTA BUTTONS ===== */
.footer__mobile-cta {
    display: none;
    transition: transform 0.3s ease;
}
@media (max-width: 768px) {
    .footer__mobile-cta {
        display: flex; gap: 12px;
        margin-top: 24px;
    }
    .footer__mobile-cta a {
        flex: 1; display: flex; align-items: center; justify-content: center;
        gap: 8px; padding: 14px 16px;
        border-radius: 10px; font-family: var(--font-body);
        font-size: 0.85rem; font-weight: 600;
        text-transform: uppercase; letter-spacing: 1px;
        transition: all 0.3s ease; text-decoration: none;
    }
    .footer__mobile-cta .footer__cta-call {
        background: var(--blue); color: white;
    }
    .footer__mobile-cta .footer__cta-call:hover {
        background: var(--blue-dark);
    }
    .footer__mobile-cta .footer__cta-whatsapp {
        background: #25D366; color: white;
    }
    .footer__mobile-cta .footer__cta-whatsapp:hover {
        background: #1da851;
    }
    .footer__mobile-cta svg {
        width: 18px; height: 18px;
    }
}

/* ===== Before & After Slider ===== */
.ba-slider-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--black-border);
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
}

.ba-slider__before,
.ba-slider__after {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.ba-slider__before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-slider__after {
    z-index: 1;
}

.ba-slider__before img,
.ba-slider__after img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.ba-slider__placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--black-light), var(--black));
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.ba-slider__placeholder--after {
    background: linear-gradient(135deg, var(--black), #0a1628);
}

.ba-slider__label {
    position: absolute;
    bottom: 16px;
    padding: 6px 16px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    z-index: 5;
}

.ba-slider__before .ba-slider__label {
    left: 16px;
}

.ba-slider__after .ba-slider__label {
    right: 16px;
}

.ba-slider__handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ba-slider__line {
    flex: 1;
    width: 3px;
    background: var(--blue);
    box-shadow: 0 0 12px var(--blue-glow);
}

.ba-slider__circle {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--blue);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 20px var(--blue-glow), 0 4px 16px rgba(0,0,0,0.4);
    flex-shrink: 0;
    color: #fff;
    transition: transform 0.2s;
}

.ba-slider:hover .ba-slider__circle {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .ba-slider-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ===== MOBILE PERFORMANCE & CONVERSIE ===== */

/* Snellere tap response op mobiel */
a, button, .btn, .nav__cta, .wizard__option, .quote-option__card {
    -webkit-tap-highlight-color: rgba(30, 111, 217, 0.15);
}

/* Betere tap targets (min 48px) */
@media (max-width: 768px) {
    .nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer__links a {
        display: inline-block;
        min-height: 44px;
        line-height: 44px;
    }
    .faq__question {
        min-height: 48px;
        padding: 16px 20px;
    }

    /* Hero kleiner op mobiel voor snellere impact */
    .hero { min-height: 90vh; }
    .hero__title { font-size: 2rem; }
    .hero__subtitle { font-size: 1rem; }
    .hero__buttons { flex-direction: column; gap: 12px; width: 100%; padding: 0 20px; }
    .hero__buttons .btn { width: 100%; text-align: center; justify-content: center; }

    /* Floating CTA op mobiel: onderaan vast */
    .floating-cta {
        top: auto !important; bottom: 80px; right: 12px;
    }
    .floating-cta a {
        writing-mode: horizontal-tb;
        transform: none;
        padding: 12px 16px;
        border-radius: 50px;
        font-size: 0;
    }
    .floating-cta a svg { width: 22px; height: 22px; }
    .floating-cta a span { display: none; }

    /* Footer mobile CTA sticky aan onderkant */
    .footer__mobile-cta {
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 998;
        margin: 0;
        padding: 10px 16px;
        background: rgba(5, 5, 8, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid var(--blue-border);
        gap: 10px;
    }

    /* Ruimte voor de sticky footer balk */
    body { padding-bottom: 72px; }

    /* Verberg particles op mobiel voor performance */
    .bg-particles { display: none; }

    /* Minder zware animaties op mobiel */
    .hero__ring-2 { display: none; }
    .section--glow::after { display: none; }
}


/* ===== IMAGE FITTING ===== */
.about__image img,
.image-section img,
.hero-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.image-section {
    width: 100%;
    overflow: hidden;
    margin: 0;
}
.image-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .image-section img { height: 250px; }
    .about__grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}
