:root {
            --bg: #fafafa;
            --bg-dark: #0f0f0f;
            --text: #1a1a1a;
            --text-light: #666666;
            --accent: #b3944d;
            --accent-light: #d4b76a;
            --white: #ffffff;
            --gray: #e5e5e5;
            --gray-dark: #d0d0d0;
            --error: #dc2626;
            --success: #16a34a;
            --beige-subtle: rgba(179, 148, 77, 0.07);
        }
        .footer-logo-link {
            display: block;
            text-decoration: none;
        }
        .footer-logo-img {
            height: 200px;
            width: auto;
            display: block;
            filter: brightness(0) invert(1);
            transition: transform 0.3s ease;
        }
        .footer-logo-link:hover .footer-logo-img {
            transform: scale(1.05);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            overflow-x: clip;
        }
        html.lenis,
        html.lenis body {
            height: auto;
        }
        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }
        .lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }
        .lenis.lenis-stopped {
            overflow: hidden;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .skip-link {
            position: fixed;
            top: 0.75rem;
            left: 0.75rem;
            z-index: 2000;
            padding: 0.75rem 1rem;
            background: var(--bg-dark);
            color: var(--white);
            text-decoration: none;
            transform: translateY(-200%);
        }
        .skip-link:focus {
            transform: translateY(0);
        }
        :where(a, button, input, select, textarea):focus-visible {
            outline: 3px solid var(--accent-light);
            outline-offset: 3px;
        }
        ::selection {
            background: var(--accent);
            color: var(--text);
        }

        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 2px;
            background: var(--accent);
            z-index: 10001;
            width: 0%;
            transition: width 0.1s linear;
        }

        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 48px;
            height: 48px;
            background: var(--text);
            color: var(--white);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 99;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .back-to-top:hover {
            background: var(--accent);
            color: var(--text);
            transform: translateY(-4px);
        }

        /* ============ NAVIGATION ============ */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            height: 80px;
            padding: 0 4vw;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: transparent;
        }
        nav.scrolled {
            background: rgba(250, 250, 250, 0.92);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            padding: 1rem 4vw;
            box-shadow: 0 1px 30px rgba(0, 0, 0, 0.04);
        }
        .logo {
            position: relative;
            display: flex;
            align-items: center;
            text-decoration: none;
            z-index: 101;
        }
        .nav-logo-img {
            height: 100px !important;
            width: auto !important;
            display: block;
            transition: transform 0.3s ease;
        }
        .logo:hover .nav-logo-img {
            transform: scale(1.05);
        }
        .logo-text {
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--text);
            white-space: nowrap;
        }
        .logo-gold {
            color: var(--accent);
        }
        .footer-logo-text {
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--white);
            display: block;
        }
        .footer-logo-text .logo-gold {
            color: var(--accent);
        }
        .footer-brand p {
            margin-top: 2rem;
        }
        @media (max-width: 768px) {
            .logo-text {
                font-size: 1.25rem;
            }
            .nav-phone {
                font-size: 0.75rem;
            }
            .nav-phone {
                font-size: 0.75rem;
            }
            .mobile-sticky-cta {
                display: none !important;
            }
        }
        .logo span {
            font-weight: 400;
            color: var(--text-light);
            font-size: 0.9375rem;
            transition: color 0.4s ease;
        }
        nav.scrolled .logo {
            font-size: 1.0625rem;
        }
        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
            height: 100%;
        }
        .nav-links>li {
            position: relative;
            display: flex;
            align-items: center;
            height: 100%;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-size: 0.8125rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            position: relative;
            padding: 0.25rem 0;
            transition: color 0.3s ease;
            cursor: pointer;
            white-space: nowrap;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a.active {
            color: var(--accent);
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.25rem;
        }
        .nav-links a.active::after {
            width: 0;
        }

        /* ── TWEE-KOLOMS DROPDOWN ── */
        .nav-dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--white);
            border: 1px solid var(--gray);
            border-radius: 0;
            width: 720px;
            display: flex;
            flex-direction: row;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.28s ease, transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 24px 56px rgba(0, 0, 0, 0.09);
            z-index: 102;
            overflow: hidden;
        }
        /* ═══════════ FIX: Dropdown alleen tonen bij expliciete hover/focus op de link, of als het menu zelf wordt gehoverd ═══════════ */
        .nav-links > li > a:hover ~ .nav-dropdown,
        .nav-links > li > a:focus ~ .nav-dropdown,
        .nav-dropdown:hover {
            opacity: 1;
            pointer-events: all;
            transform: translateX(-50%) translateY(0);
        }

        /* Linkerkolom */
        .dropdown-left {
            flex: 0 0 250px;
            padding: 0.75rem 0;
            border-right: 1px solid var(--gray);
            display: flex;
            flex-direction: column;
            background: var(--white);
        }
        .dropdown-left .dropdown-item {
            display: block;
            padding: 0.9rem 1.5rem;
            font-size: 0.8125rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            color: var(--text);
            text-decoration: none;
            transition: all 0.22s ease;
            position: relative;
            border: none;
            border-left: 2px solid transparent;
            background: transparent;
            text-align: left;
            cursor: pointer;
            font-family: inherit;
            line-height: 1.4;
            white-space: nowrap;
        }
        .dropdown-left .dropdown-item:hover,
        .dropdown-left .dropdown-item.hovered {
            color: var(--accent);
            background: var(--beige-subtle);
            border-left-color: var(--accent);
        }
        .dropdown-left .dropdown-item::after {
            display: none;
        }

        /* Rechterkolom */
        .dropdown-right {
            flex: 1;
            padding: 1.25rem 1.5rem;
            background: #fdfdfd;
            opacity: 0;
            transform: translateX(6px);
            transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 250px;
            pointer-events: none;
            overflow-y: auto;
        }.nav-dropdown:hover .dropdown-right.visible,
.nav-links > li:hover .dropdown-right.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
}

        /* Verticale lijst voor bouwtekeningen */
        .dropdown-right .dropdown-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .dropdown-right .dropdown-list a {
            display: block;
            padding: 0.8rem 1rem;
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            color: var(--text);
            text-decoration: none;
            transition: all 0.22s ease;
            line-height: 1.4;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            border-radius: 0;
            background: transparent;
        }
        .dropdown-right .dropdown-list a:last-child {
            border-bottom: none;
        }
        .dropdown-right .dropdown-list a:hover {
            color: var(--accent);
            background: var(--beige-subtle);
        }
        .dropdown-right .dropdown-list a .list-item-title {
            display: block;
            font-weight: 600;
            font-size: 0.8rem;
            margin-bottom: 0.15rem;
            letter-spacing: 0.01em;
            color: var(--text);
            transition: color 0.22s ease;
        }
        .dropdown-right .dropdown-list a:hover .list-item-title {
            color: var(--accent);
        }
        .dropdown-right .dropdown-list a .list-item-desc {
            display: block;
            font-size: 0.7rem;
            color: var(--text-light);
            font-weight: 400;
            line-height: 1.5;
            transition: color 0.22s ease;
        }
        .dropdown-right .dropdown-list a:hover .list-item-desc {
            color: var(--text);
        }
        .dropdown-right .dropdown-list a::after {
            display: none;
        }

        /* Rechterkolom: tekstueel paneel */
        .dropdown-right .dropdown-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            min-height: 200px;
        }
        .dropdown-right .dropdown-info p {
            font-size: 0.875rem;
            color: var(--text-light);
            line-height: 1.75;
            margin-bottom: 1.5rem;
            max-width: 380px;
        }
        .dropdown-right .dropdown-info .dropdown-cta-btn {
            display: inline-flex;
            align-items: center;
            padding: 0.8rem 1.75rem;
            background: var(--accent);
            color: var(--white);
            text-decoration: none;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            width: fit-content;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }
        .dropdown-right .dropdown-info .dropdown-cta-btn:hover {
            background: var(--text);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        .dropdown-right .dropdown-info .dropdown-cta-btn::after {
            display: none;
        }

        /* Nav CTA button */
        .nav-cta {
            padding: 0.75rem 1.75rem;
border: none;
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(196, 163, 90, 0.25);
            position: relative;
            overflow: hidden;
            white-space: nowrap;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .nav-cta:hover {
transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(196, 163, 90, 0.35);
        }
        .nav-phone {
            display: none;
            align-items: center;
            text-decoration: none;
            color: var(--accent);
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .nav-phone:hover {
            color: var(--accent-light);
        }

        /* Menu toggle (hamburger) */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 101;
            background: none;
            border: none;
            padding: 0.5rem;
        }
        .menu-toggle span {
            display: block;
            width: 24px;
            height: 1.5px;
            background: var(--text);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform-origin: center;
        }
        .menu-toggle.active span:nth-child(1) {
            transform: translateY(3.75px) rotate(45deg);
        }
        .menu-toggle.active span:nth-child(2) {
            transform: translateY(-3.75px) rotate(-45deg);
        }

        /* ── MOBIEL NAVIGATIE ── */
        .mobile-nav {
            position: fixed;
            inset: 0;
            background: rgba(15, 15, 15, 0.97);
            z-index: 99;
            display: flex;
            flex-direction: column;
            padding: 0;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            overflow-y: auto;
            visibility: hidden;
        }
        .mobile-nav.active {
            opacity: 1;
            pointer-events: all;
            visibility: visible;
        }
        .mobile-nav-header {
            padding: 1.5rem 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-shrink: 0;
        }
        .mobile-nav-title {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
        }
        .mobile-nav-items {
            padding: 1rem 1.5rem 3rem;
            flex: 1;
        }
        .mobile-nav-link {
            display: flex;
            align-items: center;
            padding: 1rem 0.5rem;
            font-size: 1.0625rem;
            font-weight: 600;
            color: var(--white);
            text-decoration: none;
            letter-spacing: -0.02em;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: color 0.3s ease, padding 0.3s ease;
        }
        .mobile-nav-link:hover {
            color: var(--accent);
            padding-left: 1rem;
        }
        .mobile-nav-cat {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 1rem 0.5rem;
            font-size: 1.0625rem;
            font-weight: 600;
            color: var(--white);
            background: none;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-family: inherit;
            cursor: pointer;
            text-align: left;
            transition: color 0.3s ease;
        }
        .mobile-nav-cat svg {
            transition: transform 0.3s ease;
            color: var(--accent);
        }
        .mobile-nav-cat[aria-expanded="true"] svg {
            transform: rotate(180deg);
        }
        .mobile-nav-cat:hover {
            color: var(--accent);
        }
        .mobile-nav-sublist {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s ease;
        }
        .mobile-nav-sublist.open {
            max-height: 1000px;
        }
        .mobile-nav-subcat {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 0.75rem 0.5rem 0.75rem 1.5rem;
            font-size: 0.9375rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            background: none;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            font-family: inherit;
            cursor: pointer;
            text-align: left;
            transition: color 0.3s ease;
        }
        .mobile-nav-subcat svg {
            transition: transform 0.3s ease;
            color: rgba(255, 255, 255, 0.4);
        }
        .mobile-nav-subcat[aria-expanded="true"] svg {
            transform: rotate(90deg);
        }
        .mobile-nav-subcat:hover {
            color: var(--accent);
        }
        .mobile-nav-subitems {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        .mobile-nav-subitems.open {
            max-height: 600px;
        }
        .mobile-nav-subitems a {
            display: block;
            padding: 0.65rem 0.5rem 0.65rem 2.5rem;
            font-size: 0.875rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }
        .mobile-nav-subitems a:hover {
            color: var(--accent);
            padding-left: 3rem;
        }
        .mobile-nav-direct {
            display: block;
            padding: 0.75rem 0.5rem 0.75rem 1.5rem;
            font-size: 0.9375rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }
        .mobile-nav-direct:hover {
            color: var(--accent);
            padding-left: 2rem;
        }
        .mobile-nav-close {
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.25rem;
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }
        .mobile-nav-close:hover {
            opacity: 1;
        }
        .mobile-nav a:first-child,
        .mobile-nav .mobile-nav-link:first-child,
        .mobile-nav .mobile-nav-cat:first-child {
            transition-delay: 0.05s;
        }
        .mobile-nav a:nth-child(13) {
            transition-delay: 0.65s;
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 100px 4vw 0;
            position: relative;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            opacity: 0.48;
            transform: scale(1.02);
            filter: blur(0px);
            transition: filter 1.5s ease;
        }
        .hero-bg.loaded img {
            filter: blur(0px);
        }
        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(250, 250, 250, 0.98) 0%, rgba(250, 250, 250, 0.88) 42%, rgba(250, 250, 250, 0.2) 72%, rgba(250, 250, 250, 0.08) 100%);
        }
        .hero-inner {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 5;
        }
        .hero-label {
            font-size: 0.625rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: #b3944d;
            margin-bottom: 2rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 1rem;
            opacity: 0;
        }
        .hero-label::before {
            content: '';
            width: 40px;
            height: 1px;
            background: #b3944d;
        }
        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 5.5rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.035em;
            max-width: 950px;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(40px);
            position: relative;
            z-index: 5;
        }
        .hero h1 em {
            font-style: normal;
            color: var(--accent);
        }
        .hero p {
            font-size: 1.125rem;
            color: var(--text-light);
            max-width: 520px;
            line-height: 1.7;
            font-weight: 400;
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            z-index: 5;
        }
        .hero-cta-group {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            z-index: 5;
        }
        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background: var(--text);
            color: var(--white);
            text-decoration: none;
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }
        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: left 0.6s ease;
        }
        .hero-cta:hover::before {
            left: 100%;
        }
        .hero-cta:hover {
            background: var(--accent);
            color: var(--text);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(196, 163, 90, 0.25);
        }
        .hero-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            border: 1px solid var(--text);
            color: var(--text);
            text-decoration: none;
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }
        .hero-cta-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--text);
            transition: width 0.4s ease;
            z-index: -1;
        }
        .hero-cta-secondary:hover {
            color: var(--white);
            border-color: var(--text);
        }
        .hero-cta-secondary:hover::before {
            width: 100%;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 3rem;
            font-size: 0.8125rem;
            color: var(--text-light);
            opacity: 0;
            transform: translateY(20px);
            position: relative;
            z-index: 5;
        }
        @media (max-width: 767px) {
            .hero h1,
            .hero p,
            .hero-cta-group,
            .hero-badge {
                opacity: 1;
                transform: none;
            }
        }
        .hero-badge span {
            display: inline-block;
            width: 6px;
            height: 6px;
            background: var(--success);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(0.8);
            }
        }
        .hero-scroll {
            position: absolute;
            bottom: 3rem;
            left: 4vw;
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.6875rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-light);
            z-index: 5;
            opacity: 0;
        }
        .hero-scroll-line {
            width: 48px;
            height: 1px;
            background: var(--gray-dark);
            position: relative;
            overflow: hidden;
        }
        .hero-scroll-line::after {
            content: '';
            position: absolute;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--accent);
            animation: scrollLine 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
        }
        @keyframes scrollLine {
            0% {
                left: -100%;
            }
            50% {
                left: 100%;
            }
            100% {
                left: 100%;
            }
        }
        .hero-visual {
            position: absolute;
            right: -8%;
            top: 50%;
            transform: translateY(-50%);
            width: 50vw;
            height: 50vw;
            max-width: 650px;
            max-height: 650px;
            pointer-events: none;
            opacity: 0;
            z-index: 2;
        }
        .hero-visual svg {
            width: 100%;
            height: 100%;
            animation: slowRotate 60s linear infinite;
        }
        .hero-visual svg circle,
        .hero-visual svg line {
            stroke: var(--accent);
            stroke-width: 1.5;
        }
        @keyframes slowRotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Sections */
        section {
            padding: 10rem 4vw;
            max-width: 1400px;
            margin: 0 auto;
        }
        .section-label {
            font-size: 0.6875rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 2rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .section-label::before {
            content: '';
            width: 32px;
            height: 1px;
            background: var(--accent);
        }
        .section-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.25;
            margin-bottom: 4rem;
            max-width: 650px;
            word-spacing: 0.1em;
        }

        /* USP Strip */
        .usp-strip {
            background: var(--white);
            border-top: 1px solid rgba(196, 163, 90, 0.15);
            border-bottom: 1px solid var(--gray);
            padding: 5rem 4vw;
            position: relative;
            overflow: hidden;
            max-width: 100%;
        }
        .usp-strip-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            justify-content: center;
        }
        .usp-item {
            text-align: center;
            padding: 2rem 1rem;
            border-radius: 12px;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            border: 1px solid transparent;
        }
        .usp-item:hover {
            background: #fafafa;
            transform: translateY(-8px);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.04);
            border-color: var(--gray);
        }
        .usp-icon-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            margin-bottom: 1.5rem;
            border-radius: 50%;
            background: rgba(196, 163, 90, 0.08);
            color: var(--accent);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .usp-item:hover .usp-icon-wrapper {
            background: var(--accent);
            color: var(--white);
            transform: scale(1.1) rotate(5deg);
        }
        .usp-item h4 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
            color: var(--text);
        }
        .usp-item p {
            font-size: 0.9375rem;
            color: var(--text-light);
            line-height: 1.7;
            transition: color 0.3s ease;
        }
        .usp-item:hover p {
            color: var(--text);
        }

        /* Proces */
        .proces {
            background: var(--white);
            max-width: 100%;
            padding: 10rem 4vw;
        }
        .proces-inner {
            max-width: 1400px;
            margin: 0 auto;
        }
        .proces-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }
        .proces-step {
            text-align: center;
            padding: 2rem 1.5rem;
            border: 1px solid var(--gray);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: var(--white);
            position: relative;
        }
        .proces-step:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
            border-color: var(--gray-dark);
        }
        .proces-step-num {
            font-size: 0.6875rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            color: var(--accent);
            margin-bottom: 1rem;
            display: block;
        }
        .proces-step h4 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
            color: var(--text);
        }
        .proces-step p {
            font-size: 0.9375rem;
            color: var(--text-light);
            line-height: 1.7;
        }
        @media (max-width: 768px) {
            .proces-steps {
                grid-template-columns: 1fr;
            }
        }

        /* Project Categorieën */
        .project-categorieen {
            background: var(--bg-dark);
            color: var(--white);
            max-width: 100%;
            padding: 10rem 4vw;
            position: relative;
            overflow: hidden;
        }
        .project-categorieen::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 10% 20%, rgba(196, 163, 90, 0.04) 0%, transparent 40%);
            pointer-events: none;
        }
        .project-categorieen-inner {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        .project-categorieen .section-label {
            color: var(--accent);
        }
        .project-categorieen .section-title {
            color: var(--white);
            max-width: 800px;
            margin-bottom: 6rem;
        }
        .categorieen-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            align-items: stretch;
            justify-content: center;
        }
        .categorie-card {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
            transform-style: preserve-3d;
            background: #1a1a1a;
            display: flex;
            flex-direction: column;
            height: 100%;
            text-decoration: none;
            color: inherit;
        }
        .categorie-image-wrapper {
            position: absolute;
            inset: 0;
        }
        .categorie-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1), filter 0.8s ease;
            filter: grayscale(40%) brightness(0.7);
        }
        .categorie-card:hover .categorie-image {
            transform: scale(1.12);
            filter: grayscale(0%) brightness(0.9);
        }
        .categorie-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            z-index: 2;
            pointer-events: none;
        }
        .content-inner {
            background: rgba(15, 15, 15, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 1.75rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 2px solid transparent;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateY(20px);
            opacity: 0.85;
            min-height: auto;
        }
        .categorie-card:hover .content-inner {
            transform: translateY(0);
            background: rgba(15, 15, 15, 0.9);
            border-bottom-color: var(--accent);
            opacity: 1;
        }
        .categorie-num {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--accent);
            margin-bottom: 0.75rem;
            display: block;
        }
        .categorie-card h3 {
            font-size: 1.125rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            line-height: 1.4;
            color: var(--white);
            margin-bottom: 0;
            text-transform: uppercase;
            word-spacing: 0.1em;
        }
        .categorie-card h3 small {
            display: block;
            font-size: 0.8125rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 0.5rem;
            letter-spacing: 0.03em;
            text-transform: none;
        }
        .categorie-cta {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .categorie-cta span {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            color: rgba(255, 255, 255, 0.8);
        }
        .categorie-card:hover .categorie-cta {
            opacity: 1;
            transform: translateY(0);
        }
        .categorie-card:hover {
            border-color: rgba(196, 163, 90, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(196, 163, 90, 0.15);
            transform: translateY(-4px);
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            padding: 2rem;
            visibility: hidden;
        }
        .modal-overlay.active {
            opacity: 1;
            pointer-events: all;
            visibility: visible;
        }
        .modal-content {
            background: var(--white);
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(40px) scale(0.95);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid var(--gray);
        }
        .modal-overlay.active .modal-content {
            transform: translateY(0) scale(1);
        }
        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 40px;
            background: var(--bg);
            border: 1px solid var(--gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }
        .modal-close:hover {
            background: var(--accent);
            border-color: var(--accent);
        }
        .modal-header {
            padding: 2.5rem 2.5rem 1.5rem;
            border-bottom: 1px solid var(--gray);
        }
        .modal-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }
        .modal-header p {
            color: var(--text-light);
            font-size: 0.9375rem;
            line-height: 1.6;
        }
        .modal-body {
            padding: 2.25rem 2.5rem;
        }
        .modal-body ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        .modal-body li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.9375rem;
            color: var(--text);
            line-height: 1.7;
        }
        .modal-footer {
            padding: 1.5rem 2.5rem 2.5rem;
        }
        .modal-footer .btn {
            width: 100%;
            text-align: center;
        }
        .modal-price {
            display: inline-block;
            background: rgba(196, 163, 90, 0.1);
            color: var(--accent);
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* Trust Section */
        .trust-section {
            background: #0a0a0a;
            color: var(--white);
            max-width: 100%;
            padding: 6rem 4vw;
            position: relative;
            overflow: hidden;
        }
        .trust-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at top, rgba(197, 160, 89, 0.04) 0%, transparent 60%),
                radial-gradient(ellipse at bottom, rgba(197, 160, 89, 0.03) 0%, transparent 60%);
            pointer-events: none;
        }
        .trust-inner {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            text-align: center;
        }
        .trust-section .section-label {
            justify-content: center;
        }
        .trust-section .section-title {
            color: var(--white);
            max-width: 900px;
            margin: 0 auto 5.5rem;
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            line-height: 1.35;
            word-spacing: 0.1em;
        }
        .trust-subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.5);
            max-width: 650px;
            margin: 0 auto 4.5rem;
            font-weight: 400;
            letter-spacing: 0.02em;
            line-height: 1.7;
        }
        .trust-note {
            max-width: 760px;
            margin: 1.5rem auto 0;
            color: rgba(255, 255, 255, 0.62);
            font-size: 0.75rem;
            line-height: 1.6;
        }
        .logo-ticker-wrapper {
            position: relative;
            overflow: hidden;
            width: 100%;
            mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        }
        .logo-ticker-track {
            display: flex;
            align-items: center;
            gap: 4rem;
            width: max-content;
            will-change: transform;
        }
        .logo-item {
            flex-shrink: 0;
            cursor: pointer;
            outline: none;
            transition: transform 0.3s ease;
        }
        .logo-item:hover {
            transform: translateY(-2px);
        }
        .logo-item img {
            height: 80px;
            width: auto;
            object-fit: contain;
            filter: grayscale(1) brightness(1.2) contrast(0.8);
            transition: all 0.4s ease;
            display: block;
        }
        .logo-item:hover img {
            filter: grayscale(0) brightness(1) contrast(1) drop-shadow(0 0 15px var(--accent));
        }

        /* Diensten */
        .diensten {
            background: var(--white);
            padding: clamp(6.5rem, 7vw, 8rem) 4vw;
        }
        .diensten .section-title {
            margin-bottom: 2.5rem;
        }
        .diensten-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            justify-content: center;
        }
        .dienst-card {
            display: flex;
            flex-direction: column;
            padding: 2.5rem;
            border: 1px solid var(--gray);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            background: var(--white);
        }
        .dienst-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .dienst-card::after {
            content: '';
            position: absolute;
            top: 2.25rem;
            right: 2.25rem;
            width: 46px;
            height: 46px;
            border: 1px solid rgba(196, 163, 90, 0.34);
            background-image:
                linear-gradient(rgba(196, 163, 90, 0.2) 1px, transparent 1px),
                linear-gradient(90deg, rgba(196, 163, 90, 0.2) 1px, transparent 1px);
            background-size: 11px 11px;
            opacity: 0.65;
            pointer-events: none;
        }
        .dienst-card:hover {
            border-color: var(--gray-dark);
            transform: translateY(-8px);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
        }
        .dienst-card:hover::before {
            transform: scaleX(1);
        }
        .dienst-num {
            font-size: 0.6875rem;
            color: var(--accent);
            margin-bottom: 1.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
        }
        .dienst-card h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
            line-height: 1.4;
            word-spacing: 0.1em;
        }
        .dienst-card p {
            font-size: 0.9375rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* Prijzen */
        .prijzen {
            background: var(--bg);
            max-width: 100%;
            padding: clamp(6.5rem, 7vw, 8rem) 4vw;
        }
        .prijzen-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .prijzen .section-title {
            margin-bottom: 2.5rem;
        }
        .dienst-link {
            display: inline-flex;
            gap: 0.45rem;
            align-items: center;
            margin-top: auto;
            padding-top: 1.4rem;
            padding-bottom: 0.25rem;
            border-bottom: 1px solid var(--accent);
            color: var(--text);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-decoration: none;
            text-transform: uppercase;
        }
        .prijzen-intro {
            max-width: 760px;
            margin: 0 0 1.5rem;
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.8;
        }
        .prijzen-toggle {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 1rem;
            margin-bottom: 3rem;
            font-size: 0.875rem;
            color: var(--text-light);
        }
        .toggle-switch {
            position: relative;
            width: 52px;
            height: 44px;
            background: transparent;
            border: none;
            border-radius: 22px;
            cursor: pointer;
        }
        .toggle-switch::before {
            content: '';
            position: absolute;
            top: 9px;
            left: 2px;
            width: 48px;
            height: 26px;
            background: var(--gray-dark);
            border-radius: 13px;
            transition: background 0.3s ease;
        }
        .toggle-switch.active::before {
            background: var(--accent);
        }
        .toggle-switch::after {
            content: '';
            position: absolute;
            top: 12px;
            left: 5px;
            width: 20px;
            height: 20px;
            background: var(--white);
            border-radius: 50%;
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .toggle-switch.active::after {
            transform: translateX(22px);
        }
        .prijzen-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            align-items: stretch;
            margin-bottom: 3rem;
            justify-content: center;
        }
        .prijs-card {
            background: var(--white);
            border: 1px solid var(--gray);
            padding: 2.5rem 2.5rem;
            position: relative;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }
        .prijs-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 28px 56px rgba(0, 0, 0, 0.08);
            border-color: var(--gray-dark);
        }
        .prijs-card.featured {
            border: 2px solid var(--accent);
            transform: scale(1.03);
            z-index: 2;
            box-shadow: 0 20px 40px rgba(196, 163, 90, 0.1);
        }
        .prijs-card.featured:hover {
            transform: scale(1.03) translateY(-10px);
        }
        .prijs-badge {
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: var(--text);
            font-size: 0.6875rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 0.5rem 1.5rem;
        }
        .prijs-code {
            color: var(--accent-dark, #9a7a35);
            font-size: 0.6875rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-align: center;
            text-transform: uppercase;
            margin-bottom: 0.65rem;
        }
        .prijs-name {
            font-size: 1.45rem;
            font-weight: 750;
            margin-bottom: 0.8rem;
            text-align: center;
            line-height: 1.25;
            letter-spacing: -0.02em;
        }
        .prijs-for {
            min-height: 4.7rem;
            margin: 0 0 1.75rem;
            color: var(--text-light);
            font-size: 0.875rem;
            line-height: 1.65;
            text-align: center;
        }
        .prijs-for strong {
            color: var(--text);
        }
        .prijs-amount {
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            text-align: center;
            margin-bottom: 0.75rem;
            line-height: 1.1;
        }
        .prijs-amount .period {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-light);
        }
        .prijs-sub {
            text-align: center;
            font-size: 0.8125rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.5;
        }
        .prijs-amount.is-quote {
            max-width: 13ch;
            margin-right: auto;
            margin-left: auto;
            font-size: clamp(1.9rem, 3vw, 2.7rem);
            line-height: 1.12;
        }
        .prijs-scope-label {
            padding-bottom: 0.75rem;
            border-bottom: 1px solid var(--gray);
            color: var(--text);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        .prijs-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }
        .prijs-features li {
            min-height: 3.45rem;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(16, 16, 16, 0.08);
            font-size: 0.875rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            color: var(--text);
            line-height: 1.55;
        }
        .prijs-features li::before {
            flex: 0 0 1.3rem;
            width: 1.3rem;
            height: 1.3rem;
            margin-top: 0.05rem;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.72rem;
            font-weight: 800;
        }
        .prijs-features li.included::before {
            content: '\2713';
            background: rgba(196, 163, 90, 0.18);
            color: #765a1d;
        }
        .prijs-features li.not-included {
            color: var(--text-light);
        }
        .prijs-features li.not-included::before {
            content: '\2014';
            background: rgba(16, 16, 16, 0.06);
            color: var(--text-light);
        }
        .prijs-exclusion {
            min-height: 5.5rem;
            margin: 0;
            padding: 1rem;
            background: var(--bg);
            color: var(--text-light);
            font-size: 0.78rem;
            line-height: 1.6;
        }
        .prijs-exclusion strong {
            color: var(--text);
        }
        .prijs-btn {
            display: block;
            width: 100%;
            min-height: 44px;
            margin-top: 2.5rem;
            padding: 1rem;
            background: var(--text);
            color: var(--white);
            border: none;
            font-family: inherit;
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }
        .prijs-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }
        .prijs-btn:hover::before {
            left: 100%;
        }
        .prijs-btn:hover {
            background: var(--accent);
            color: var(--text);
        }
        .prijs-disclaimer {
            margin-top: 6rem;
            text-align: center;
            font-size: 0.8125rem;
            color: var(--text-light);
            line-height: 1.7;
        }
        .garantie-blok {
            max-width: 700px;
            margin: 5rem auto 0;
            padding: 2rem 2.5rem;
            background: rgba(196, 163, 90, 0.08);
            border-left: 4px solid var(--accent);
            font-size: 1rem;
            color: var(--text);
            line-height: 1.6;
            font-weight: 500;
        }
        .garantie-blok strong {
            color: var(--accent);
        }

        /* Calculator */
        .calculator {
            background: var(--bg-dark);
            color: var(--white);
            max-width: 100%;
            padding: 10rem 4vw;
            position: relative;
            overflow: hidden;
        }
        .calculator::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60vw;
            height: 60vw;
            border: 1px solid rgba(196, 163, 90, 0.08);
            border-radius: 50%;
            pointer-events: none;
        }
        .calculator-inner {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .calculator .section-label {
            color: var(--accent);
        }
        .calculator .section-title {
            color: var(--white);
            max-width: 700px;
        }
        .calc-intro {
            max-width: 720px;
            margin: 1.25rem 0 0;
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.95rem;
            line-height: 1.75;
        }
        .calc-live-total {
            margin: 1.5rem 0 -2rem;
            color: var(--accent);
            font-size: 0.9rem;
            font-weight: 700;
            text-align: center;
        }
        .calc-live-total[hidden] {
            display: none;
        }
        .calc-container {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 3.5rem;
            margin-top: 4rem;
            position: relative;
            transition: border-color 0.5s ease;
        }
        .calc-container:hover {
            border-color: rgba(255, 255, 255, 0.12);
        }
        .calc-steps {
            display: flex;
            gap: 1rem;
            margin-bottom: 2.5rem;
            align-items: center;
        }
        .calc-step {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 500;
            transition: all 0.5s ease;
        }
        .calc-step.active {
            color: var(--accent);
        }
        .calc-step.completed {
            color: rgba(255, 255, 255, 0.7);
        }
        .calc-step-num {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            flex-shrink: 0;
        }
        .calc-step.active .calc-step-num {
            border-color: var(--accent);
            background: var(--accent);
            color: var(--text);
        }
        .calc-step.completed .calc-step-num {
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
        }
        .calc-step-line {
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            max-width: 40px;
        }
        .calc-panel {
            display: none;
        }
        .calc-panel.active {
            display: block;
            animation: fadeSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }
        @keyframes fadeSlideIn {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        .calc-question {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 0 0 2rem;
            letter-spacing: -0.02em;
            line-height: 1.5;
            word-spacing: 0.1em;
        }
        .calc-step-help {
            margin: -1.15rem 0 2rem;
            color: rgba(255, 255, 255, 0.58);
            font-size: 0.86rem;
            line-height: 1.7;
        }
        .calc-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }
        .calc-option {
            padding: 2rem;
            border: 1.5px solid rgba(255, 255, 255, 0.1);
            background: transparent;
            color: var(--white);
            font-family: inherit;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-align: left;
            position: relative;
        }
        .calc-option:hover {
            border-color: var(--accent);
            background: rgba(196, 163, 90, 0.05);
            transform: translateY(-2px);
        }
        .calc-option.selected {
            border-color: var(--accent);
            background: rgba(196, 163, 90, 0.1);
            box-shadow: 0 4px 20px rgba(196, 163, 90, 0.1);
        }
        .calc-option[hidden] {
            display: none;
        }
        .calc-option .opt-label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }
        .calc-option .opt-desc {
            display: block;
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 400;
            line-height: 1.6;
        }
        .calc-option .opt-price {
            display: block;
            font-size: 0.875rem;
            color: var(--accent);
            font-weight: 700;
            margin-top: 0.5rem;
            opacity: 0;
            transform: translateY(5px);
            transition: all 0.3s ease;
        }
        .calc-option.selected .opt-price {
            opacity: 1;
            transform: translateY(0);
        }
        .calc-panel[data-step="2"] .opt-price {
            opacity: 1;
            transform: none;
        }
        .calc-fieldset {
            margin: 0 0 1.5rem;
            padding: 0;
            border: 0;
        }
        .calc-fieldset legend {
            margin-bottom: 0.8rem;
            color: var(--white);
            font-size: 0.92rem;
            font-weight: 650;
            line-height: 1.5;
        }
        .calc-compact-options {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.65rem;
        }
        .calc-detail-option {
            min-height: 48px;
            padding: 0.75rem 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: transparent;
            color: rgba(255, 255, 255, 0.7);
            font: inherit;
            font-size: 0.8rem;
            cursor: pointer;
            transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
        }
        .calc-detail-option:hover,
        .calc-detail-option.selected {
            border-color: var(--accent);
            background: rgba(196, 163, 90, 0.1);
            color: var(--white);
        }
        .calc-addons {
            margin-top: 2rem;
            padding-top: 1.75rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .calc-check-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.65rem;
        }
        .calc-check {
            display: flex;
            gap: 0.8rem;
            align-items: flex-start;
            min-height: 72px;
            padding: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.12);
            cursor: pointer;
        }
        .calc-check:has(input:checked) {
            border-color: var(--accent);
            background: rgba(196, 163, 90, 0.08);
        }
        .calc-check input {
            width: 18px;
            height: 18px;
            margin: 0.15rem 0 0;
            accent-color: var(--accent);
        }
        .calc-check strong,
        .calc-check small {
            display: block;
        }
        .calc-check strong {
            margin-bottom: 0.2rem;
            color: var(--white);
            font-size: 0.82rem;
        }
        .calc-check small {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.72rem;
            line-height: 1.45;
        }
        .calc-validation {
            margin: 1rem 0 0;
            color: #f2c8c8;
            font-size: 0.82rem;
        }
        .calc-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .calc-btn {
            padding: 1rem 2.5rem;
            background: var(--accent);
            color: var(--text);
            border: none;
            font-family: inherit;
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }
        .calc-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }
        .calc-btn:hover::before {
            left: 100%;
        }
        .calc-btn:hover {
            background: var(--white);
            transform: translateY(-2px);
        }
        .calc-btn-secondary {
            padding: 1rem 2rem;
            background: transparent;
            color: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.15);
            font-family: inherit;
            font-size: 0.8125rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s ease;
        }
        .calc-btn-secondary:hover {
            border-color: rgba(255, 255, 255, 0.4);
            color: var(--white);
        }
        .calc-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
        .calc-btn:disabled:hover {
            transform: none;
            background: var(--accent);
        }
        .calc-result {
            text-align: center;
            padding: 4rem 0 3rem 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            min-height: 450px;
            position: relative;
            z-index: 10;
        }
        .calc-result-amount {
            font-size: 5rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 0.6rem;
            z-index: 10;
        }
        .calc-result-amount.is-quote {
            max-width: 620px;
            font-size: clamp(2.35rem, 6vw, 4rem);
            line-height: 1.1;
        }
        .calc-result-vat {
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.62);
            font-size: 0.92rem;
            font-weight: 600;
            z-index: 10;
        }
        .calc-result-amount .currency {
            font-size: 2rem;
            vertical-align: super;
        }
        .calc-result-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 1rem;
            z-index: 10;
        }
        .calc-result-details {
            text-align: left;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        .calc-result-details li {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.7);
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .calc-result-details li:last-child {
            border-bottom: none;
        }
        .calc-result-details li strong {
            color: var(--white);
            font-weight: 600;
        }
        .calc-result-details li .price {
            color: var(--accent);
            font-weight: 600;
        }
        .calc-result-note {
            max-width: 650px;
            margin: -0.5rem auto 2rem;
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.86rem;
            line-height: 1.7;
            text-align: left;
        }
        .calc-cta-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .calc-cta-primary {
            padding: 1rem 2.5rem;
            background: var(--accent);
            color: var(--text);
            text-decoration: none;
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: none;
            cursor: pointer;
            font-family: inherit;
            position: relative;
            overflow: hidden;
        }
        .calc-cta-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }
        .calc-cta-primary:hover::before {
            left: 100%;
        }
        .calc-cta-primary:hover {
            background: var(--white);
            transform: translateY(-2px);
        }
        .calc-cta-secondary {
            padding: 1rem 2.5rem;
            background: transparent;
            color: var(--white);
            text-decoration: none;
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.4s ease;
        }
        .calc-cta-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        /* 3D visualisaties */
        .visualisatie-dienst {
            padding: 8rem 4vw;
            background: #f2efe8;
        }
        .visualisatie-dienst-inner {
            display: grid;
            grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
            gap: 5rem;
            max-width: 1400px;
            margin: 0 auto;
            align-items: center;
        }
        .visualisatie-dienst-copy p {
            max-width: 600px;
            color: var(--text-light);
            line-height: 1.8;
        }
        .visualisatie-dienst-link {
            display: inline-flex;
            align-items: center;
            min-height: 44px;
            gap: 0.65rem;
            margin-top: 1rem;
            color: var(--text);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-decoration: none;
            text-transform: uppercase;
            border-bottom: 1px solid var(--accent);
            padding-bottom: 0.35rem;
        }
        .visualisatie-dienst-images {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 1rem;
            align-items: end;
        }
        .visualisatie-dienst-images figure { margin: 0; }
        .visualisatie-dienst-images img {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
        }
        .visualisatie-dienst-images figure:last-child { transform: translateY(2rem); }
        .visualisatie-dienst-images figcaption {
            margin-top: 0.7rem;
            color: var(--text-light);
            font-size: 0.78rem;
        }
        .officiele-check {
            padding: 3rem 4vw;
            color: var(--white);
            background: #242422;
        }
        .officiele-check-inner {
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .officiele-check p { max-width: 820px; margin: 0; color: rgba(255,255,255,0.68); line-height: 1.7; }
        .officiele-check a { flex: 0 0 auto; color: var(--accent); font-weight: 700; text-underline-offset: 0.25rem; }
        @media (max-width: 900px) {
            .visualisatie-dienst-inner { grid-template-columns: 1fr; gap: 3rem; }
        }
        @media (max-width: 600px) {
            .visualisatie-dienst { padding: 5rem 4vw; }
            .visualisatie-dienst-images { grid-template-columns: 1fr; }
            .visualisatie-dienst-images figure:last-child { transform: none; }
            .officiele-check-inner { display: block; }
            .officiele-check a { display: inline-block; margin-top: 1rem; }
        }

        /* Gallery */
        .gallery {
            background: var(--bg-dark);
            color: var(--white);
            max-width: 100%;
            padding: 10rem 4vw;
        }
        .gallery-inner {
            max-width: 1400px;
            margin: 0 auto;
        }
        .gallery .section-label {
            color: var(--accent);
        }
        .gallery .section-title {
            color: var(--white);
            max-width: 700px;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 4rem;
        }
        .gallery-item {
            aspect-ratio: 4/3;
            overflow: hidden;
            position: relative;
            background: #1a1a1a;
            cursor: pointer;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
            filter: grayscale(40%) brightness(0.8);
        }
        .gallery-item:hover img {
            transform: scale(1.1);
            filter: grayscale(0%) brightness(1);
        }
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem 1.5rem 1.5rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .gallery-item:hover .gallery-caption {
            opacity: 1;
            transform: translateY(0);
        }

        /* Projecten */
        .projecten {
            background: var(--bg);
            padding: 0;
            max-width: 100%;
        }
        .projecten-header {
            padding: 10rem 4vw 5rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .project {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 75vh;
            border-top: 1px solid var(--gray);
            position: relative;
            overflow: hidden;
        }
        .project:last-child {
            border-bottom: 1px solid var(--gray);
        }
        .project:nth-child(even) .project-image {
            order: 2;
        }
        .project:nth-child(even) .project-content {
            order: 1;
        }
        .project-image {
            position: relative;
            overflow: hidden;
            background: #ddd;
        }
        .project-image img {
            width: 100%;
            height: 120%;
            object-fit: cover;
            position: absolute;
            top: -10%;
            left: 0;
            will-change: transform;
            transform: scale(1.1);
        }
        .project-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.15) 100%);
            pointer-events: none;
            z-index: 2;
        }
        .project-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 5rem 6vw;
            position: relative;
        }
        .project-meta {
            font-size: 0.6875rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        .project h3 {
            font-size: clamp(1.75rem, 3vw, 2.75rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            line-height: 1.25;
            max-width: 500px;
            word-spacing: 0.1em;
        }
        .project p {
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.85;
            margin-bottom: 2.5rem;
            max-width: 450px;
        }
        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--text);
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            position: relative;
            width: fit-content;
            padding-bottom: 0.25rem;
        }
        .project-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--accent);
            transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .project-link:hover::after {
            width: 100%;
        }

        /* Over Ons */
        .over-ons {
            background: var(--white);
            max-width: 100%;
            padding: 10rem 4vw;
        }
        .over-ons-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .over-ons-image {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
            background: var(--gray);
        }
        .over-ons-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.05);
        }
        .over-ons-image-label {
            position: absolute;
            right: 1rem;
            bottom: 1rem;
            z-index: 1;
            padding: 0.45rem 0.7rem;
            background: rgba(17, 17, 17, 0.78);
            color: #fff;
            font-size: 0.75rem;
            letter-spacing: 0.02em;
        }
        .over-ons-content {
            padding: 0 2rem;
        }
        .over-ons-content h3 {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            word-spacing: 0.1em;
        }
        .over-ons-content>p {
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 2rem;
            font-size: 1.0625rem;
        }
        .over-ons-group {
            font-size: 0.9375rem;
            line-height: 1.85;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            word-spacing: 0.05em;
        }
        .over-ons-group strong {
            color: var(--text);
            font-weight: 600;
        }
        .over-ons-link {
            display: inline-flex;
            min-height: 44px;
            align-items: center;
            margin: -1rem 0 2rem;
            color: var(--text);
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-decoration: none;
            border-bottom: 1px solid var(--accent);
        }
        .over-ons-link:hover {
            color: var(--accent);
        }
        .over-ons-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        .over-ons-stat h5 {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--accent);
            margin-bottom: 0.5rem;
            line-height: 1;
        }
        .over-ons-stat span {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        /* FAQ */
        .faq {
            background: var(--bg);
            max-width: 100%;
            padding: 10rem 4vw;
        }
        .faq-inner {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 4rem;
        }
        .faq-item {
            background: var(--white);
            border: 1px solid var(--gray);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow: hidden;
        }
        .faq-item:hover {
            border-color: var(--gray-dark);
        }
        .faq-item.active {
            border-color: var(--accent);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
            transform: translateY(-2px);
        }
        .faq-question {
            width: 100%;
            padding: 1.75rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            text-align: left;
            cursor: pointer;
            letter-spacing: -0.01em;
            transition: color 0.3s ease;
        }
        .faq-question:hover {
            color: var(--accent);
        }
        .faq-icon {
            width: 24px;
            height: 24px;
            position: relative;
            flex-shrink: 0;
            margin-left: 1rem;
            border-radius: 50%;
            border: 1.5px solid var(--gray);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .faq-item.active .faq-icon {
            border-color: var(--accent);
            background: var(--accent);
        }
        .faq-icon span {
            position: absolute;
            background: var(--text);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .faq-item.active .faq-icon span {
            background: var(--white);
        }
        .faq-icon span:first-child {
            width: 10px;
            height: 1.5px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .faq-icon span:last-child {
            width: 1.5px;
            height: 10px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .faq-item.active .faq-icon span:last-child {
            transform: translate(-50%, -50%) rotate(90deg);
            opacity: 0;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease;
            padding: 0 2rem;
        }
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 1.75rem;
        }
        .faq-answer p {
            font-size: 0.9375rem;
            color: var(--text-light);
            line-height: 1.85;
            word-spacing: 0.05em;
        }

        /* Reviews */
        .reviews {
            background: var(--white);
            max-width: 100%;
            padding: 10rem 4vw;
        }
        .reviews-inner {
            max-width: 1400px;
            margin: 0 auto;
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }
        .reviews-note {
            max-width: 760px;
            margin: 1.25rem 0 -1.5rem;
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .pakket-kaders {
            margin-top: 3.5rem;
            padding: 2.25rem;
            background: var(--white);
            border: 1px solid var(--gray);
        }
        .pakket-kaders h3,
        .pakket-addons h3 {
            margin: 0 0 1.5rem;
            font-size: 1.2rem;
            letter-spacing: -0.01em;
        }
        .pakket-kaders-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1rem;
        }
        .pakket-kader {
            padding-left: 1rem;
            border-left: 2px solid var(--accent);
            color: var(--text-light);
            font-size: 0.82rem;
            line-height: 1.65;
        }
        .pakket-kader strong {
            display: block;
            margin-bottom: 0.2rem;
            color: var(--text);
            font-size: 0.86rem;
        }
        .pakket-addons {
            margin-top: 1.5rem;
            padding: 2.25rem;
            background: #151515;
            color: var(--white);
        }
        .pakket-addons > p {
            max-width: 760px;
            margin: -0.75rem 0 1.5rem;
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.875rem;
            line-height: 1.7;
        }
        .pakket-addon-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.75rem;
        }
        .pakket-addon {
            padding: 1rem 1.1rem;
            border: 1px solid rgba(255, 255, 255, 0.14);
            color: rgba(255, 255, 255, 0.88);
            font-size: 0.84rem;
            line-height: 1.5;
        }
        .pakket-addon::before {
            content: '+';
            margin-right: 0.65rem;
            color: var(--accent);
            font-weight: 800;
        }
        .review-card {
            padding: 2.5rem;
            border: 1px solid var(--gray);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            background: var(--white);
        }
        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
            border-color: var(--gray-dark);
        }
        .review-card:hover::before {
            transform: scaleX(1);
        }
        .review-stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1.5rem;
        }
        .review-stars svg {
            width: 16px;
            height: 16px;
            fill: var(--accent);
        }
        .review-text {
            font-size: 1rem;
            line-height: 1.85;
            color: var(--text);
            margin-bottom: 2rem;
            font-style: italic;
            position: relative;
            word-spacing: 0.05em;
        }
        .review-text::before {
            content: '"';
            position: absolute;
            top: -0.5rem;
            left: -0.5rem;
            font-size: 4rem;
            color: var(--accent);
            opacity: 0.15;
            font-family: Georgia, serif;
            line-height: 1;
            pointer-events: none;
        }
        .review-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .review-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            background: var(--gray);
        }
        .review-avatar-placeholder {
            display: grid;
            flex: 0 0 48px;
            place-items: center;
            color: var(--text);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.08em;
        }
        .review-author-info strong {
            display: block;
            font-size: 0.9375rem;
            font-weight: 600;
            letter-spacing: -0.01em;
        }
        .review-author-info span {
            font-size: 0.8125rem;
            color: var(--text-light);
        }

        /* Quote */
        .quote {
            background: var(--bg-dark);
            color: var(--white);
            max-width: 100%;
            padding: 10rem 4vw;
        }
        .quote-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        .quote-inner blockquote {
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 300;
            line-height: 1.5;
            letter-spacing: -0.02em;
            margin-bottom: 3rem;
            font-style: italic;
        }
        .quote-inner blockquote::before {
            content: '"';
            display: block;
            font-size: 6rem;
            line-height: 1;
            color: var(--accent);
            margin-bottom: 1rem;
            font-family: Georgia, serif;
            font-style: normal;
        }
        .quote-author {
            font-size: 0.9375rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        .quote-author span {
            display: block;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 0.5rem;
            font-size: 0.875rem;
        }

        /* Waarom */
        .waarom {
            background: var(--white);
            max-width: 100%;
            padding: 10rem 4vw;
            overflow: hidden;
        }
        .waarom-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }
        .waarom-content {
            padding-top: 2rem;
        }
        .waarom-content h3 {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .waarom-content>p {
            color: var(--text-light);
            line-height: 1.75;
            margin-bottom: 2.5rem;
            font-size: 1.0625rem;
        }
        .waarom-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        .waarom-list li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            font-size: 1rem;
            color: var(--text);
            line-height: 1.6;
            padding: 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .waarom-list li:hover {
            background: var(--bg);
            border-color: var(--gray);
        }
        .waarom-image {
            position: relative;
            aspect-ratio: 4/3;
            background: var(--gray);
            overflow: hidden;
            border-radius: 8px;
            width: 100%;
            max-width: 100%;
        }
        .waarom-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Contact */
        .contact.homepage-contact {
            background: var(--bg);
            max-width: 100%;
            padding: 6rem 4vw 10rem;
            border-top: 1px solid rgba(179, 148, 77, 0.55);
        }
        .contact-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
        }
        .contact-info h3 {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
            line-height: 1.25;
            word-spacing: 0.1em;
        }
        .contact-info>p {
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 3rem;
            max-width: 400px;
        }
        .contact-info-visual {
            margin: 0 0 2.5rem;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: var(--gray-light);
        }
        .contact-info-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
        .contact-detail {
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .contact-detail:hover {
            transform: translateX(4px);
        }
        .contact-detail strong {
            display: block;
            font-size: 0.6875rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--accent);
            margin-bottom: 0.75rem;
            font-weight: 600;
        }
        .contact-detail a,
        .contact-detail span {
            color: var(--text);
            text-decoration: none;
            font-size: 1.0625rem;
            transition: color 0.3s;
        }
        .contact-detail a:hover {
            color: var(--accent);
        }
        .contact-trust-list {
            max-width: 400px;
            margin-top: 2.75rem;
            padding: 1.5rem;
            display: grid;
            gap: 0.85rem;
            list-style: none;
            background: rgba(196, 163, 90, 0.06);
            border-left: 2px solid var(--accent);
        }
        .contact-trust-list li {
            position: relative;
            padding-left: 1.5rem;
            color: var(--text);
            font-size: 0.875rem;
            line-height: 1.5;
        }
        .contact-trust-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.45rem;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
        }
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
        }
        .form-group {
            position: relative;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem 1.125rem;
            border: 1px solid var(--gray);
            background: var(--white);
            font-family: inherit;
            font-size: 1rem;
            color: var(--text);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-radius: 0;
            -webkit-appearance: none;
            appearance: none;
            line-height: 1.5;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(196, 163, 90, 0.08);
        }
        .form-group input.error,
        .form-group textarea.error,
        .form-group select.error {
            border-color: var(--error);
            box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
        }
        .form-error {
            display: none;
            margin-top: 0.5rem;
            color: var(--error);
            font-size: 0.75rem;
            font-weight: 500;
            line-height: 1.4;
        }
        .form-error.visible {
            display: block;
        }
        .form-group textarea {
            min-height: 180px;
            resize: vertical;
            line-height: 1.6;
        }
        .form-group select {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 2.5rem;
        }
        .form-group label {
            position: absolute;
            left: 1.125rem;
            top: 1.125rem;
            font-size: 1rem;
            color: var(--text-light);
            pointer-events: none;
            transition: all 0.3s ease;
            background: transparent;
            padding: 0 0.25rem;
        }
        .form-group input:focus+label,
        .form-group input:not(:placeholder-shown)+label,
        .form-group textarea:focus+label,
        .form-group textarea:not(:placeholder-shown)+label,
        .form-group select:focus+label,
        .form-group select:valid+label {
            top: -0.55rem;
            left: 0.875rem;
            font-size: 0.6875rem;
            color: var(--accent);
            background: var(--white);
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1.125rem 2.5rem;
            background: var(--text);
            color: var(--white);
            border: none;
            font-family: inherit;
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            width: fit-content;
            margin-top: 0.5rem;
            position: relative;
            overflow: hidden;
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }
        .btn:hover::before {
            left: 100%;
        }
        .btn:hover {
            background: var(--accent);
            color: var(--text);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(196, 163, 90, 0.25);
        }
        .btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        .btn:disabled:hover {
            transform: none;
            background: var(--text);
        }
        .form-privacy {
            margin-top: -0.75rem;
            color: var(--text-light);
            font-size: 0.75rem;
            line-height: 1.6;
        }
        .form-privacy a {
            color: var(--text);
            text-underline-offset: 0.2em;
        }
        .form-privacy a:hover {
            color: var(--accent);
        }

        /* Toast */
        .toast-container {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            z-index: 10002;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            pointer-events: none;
        }
        .toast {
            background: var(--text);
            color: var(--white);
            padding: 1rem 2rem;
            font-size: 0.875rem;
            font-weight: 500;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            pointer-events: all;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .toast.show {
            transform: translateY(0);
            opacity: 1;
        }
        .toast.success {
            border-left: 3px solid var(--success);
        }
        .toast.error {
            border-left: 3px solid var(--error);
        }

        /* Footer */
        footer {
            background: var(--bg-dark);
            color: var(--white);
        }
        .footer-top {
            padding: 6rem 4vw 4rem;
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 4rem;
            align-items: start;
        }
        .footer-brand h4 {
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1.25rem;
        }
        .footer-brand h4 span {
            font-weight: 400;
            color: rgba(255, 255, 255, 0.4);
        }
        .footer-brand p {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.75;
            max-width: 300px;
        }
        .footer-nav h5 {
            font-size: 0.6875rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        .footer-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.875rem;
        }
        .footer-nav a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            font-weight: 500;
            display: inline-block;
        }
        .footer-nav a:hover {
            color: var(--white);
            transform: translateX(4px);
        }
        .footer-newsletter h5 {
            font-size: 0.6875rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        .footer-newsletter p {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }
        .newsletter-form input {
            flex: 1;
            padding: 0.875rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.03);
            color: var(--white);
            font-family: inherit;
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }
        .newsletter-form input:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.05);
        }
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }
        .newsletter-form button {
            padding: 0.875rem 1.25rem;
            background: var(--accent);
            color: var(--text);
            border: none;
            font-family: inherit;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s ease;
        }
        .newsletter-form button:hover {
            background: var(--white);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 2rem 4vw;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .footer-copy {
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.3);
        }
        .footer-legal {
            display: flex;
            gap: 2rem;
        }
        .footer-legal a {
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.3);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-legal a:hover {
            color: rgba(255, 255, 255, 0.6);
        }

        /* ── MOBILE STICKY CTA ── */
        .mobile-sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-top: 1px solid var(--gray);
            z-index: 999;
            display: none;
            justify-content: center;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
        }
        .sticky-cta-btn {
color: var(--white);
            text-decoration: none;
            padding: 0.8rem 2rem;
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            width: 100%;
            text-align: center;
            transition: background 0.3s ease;
        }
        .sticky-cta-btn:hover {
}

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .diensten-grid,
            .usp-strip-inner {
                grid-template-columns: repeat(2, 1fr);
            }
            .prijzen-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .prijs-card.featured {
                transform: scale(1);
            }
            .prijs-card.featured:hover {
                transform: scale(1) translateY(-10px);
            }
            .pakket-kaders-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .pakket-addon-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .project {
                grid-template-columns: 1fr;
                min-height: auto;
            }
            .project:nth-child(even) .project-image {
                order: 1;
            }
            .project:nth-child(even) .project-content {
                order: 2;
            }
            .project-image {
                min-height: 50vh;
            }
            .project-content {
                padding: 3rem 4vw;
            }
            .waarom-inner,
            .contact-inner,
            .over-ons-inner {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            .hero-visual {
                display: none;
            }
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .over-ons-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
            .calc-options {
                grid-template-columns: 1fr;
            }
            .calc-steps {
                flex-wrap: wrap;
            }
            .calc-step-line {
                display: none;
            }
            .categorieen-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .proces-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            .nav-dropdown {
                width: 560px;
                left: 0;
                transform: translateX(0);
            }
            .nav-links>li:hover .nav-dropdown,
            .nav-links>li>a:focus~.nav-dropdown,.nav-dropdown:focus-within{
                transform: translateX(0) translateY(0);
            }
            .dropdown-left {
                flex: 0 0 200px;
            }
            .dropdown-right {
                left: 200px;
            }
            .dropdown-right.visible {
                left: auto;
            }
        }
        @media (max-width: 768px) {
                        .nav-links,
            .nav-cta { display: none !important;
            }
            .nav-phone {
                display: inline-flex;
                margin-right: 0.75rem;
            }
            .menu-toggle {
                display: flex;
                min-width: 44px;
                min-height: 44px;
                align-items: center;
                justify-content: center;
            }
            .hero {
                padding: 0 1.5rem;
                min-height: 90vh;
            }
            .hero-bg img {
                object-position: 62% center;
                opacity: 0.34;
                transform: scale(1.04);
            }
            .hero-bg::after {
                background: linear-gradient(180deg, rgba(250, 250, 250, 0.96) 0%, rgba(250, 250, 250, 0.88) 58%, rgba(250, 250, 250, 0.74) 100%);
            }
            .hero-scroll {
                left: 1.5rem;
            }
            .hero-cta-group {
                flex-direction: column;
                align-items: flex-start;
            }
            section,
            .waarom,
            .contact,
            .prijzen,
            .quote,
            .usp-strip,
            .gallery,
            .over-ons,
            .faq,
            .reviews,
            .calculator {
                padding: 5rem 1.5rem;
            }
            .projecten-header {
                padding: 5rem 1.5rem 2.5rem;
            }
            .contact.homepage-contact {
                padding: 4rem 1.5rem 5rem;
            }
            .diensten-grid,
            .usp-strip-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .project-content {
                order: 2;
                z-index: 3;
                padding: 2.75rem 1.5rem 3.25rem;
                overflow: visible;
                background: var(--bg);
            }
            .project-image {
                order: 1;
                flex: 0 0 auto;
                height: clamp(18rem, 86vw, 25rem);
                min-height: 0;
                isolation: isolate;
            }
            .project {
                display: flex;
                flex-direction: column;
                min-height: 0;
                overflow: visible;
            }
            .project-image img {
                top: 0;
                height: 100%;
                transform: none !important;
                will-change: auto;
            }
            .project-link {
                min-height: 44px;
                padding: 0.65rem 0;
                align-self: flex-start;
            }
            .contact-info h3 {
                font-size: 1.75rem;
            }
            .contact-trust-list {
                margin-top: 2rem;
                padding: 1.25rem;
            }
            .contact-form .btn {
                width: 100%;
            }
            .quote-inner blockquote {
                font-size: 1.25rem;
            }
            .stat-item h4 {
                font-size: 2.5rem;
            }
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .over-ons-content h3 {
                font-size: 1.75rem;
            }
            .faq-question {
                padding: 1.25rem 1.5rem;
                font-size: 0.9375rem;
            }
            .faq-item.active .faq-answer {
                padding: 0 1.5rem 1.25rem;
            }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            .calc-container {
                padding: 1.25rem;
                margin-top: 2rem;
            }
            .calc-steps {
                display: grid;
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 0.5rem;
                align-items: start;
                margin-bottom: 0;
            }
            .calc-step-line {
                display: none;
            }
            .calc-step {
                min-width: 0;
                flex-direction: column;
                gap: 0.4rem;
                text-align: center;
                font-size: 0.6875rem;
                line-height: 1.25;
            }
            .calc-step-num {
                width: 32px;
                height: 32px;
            }
            .calc-question {
                margin: 2rem 0 1.25rem;
                font-size: 1.0625rem;
                line-height: 1.4;
            }
            .calc-panel[data-step="1"] .calc-options {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.75rem;
                margin-bottom: 1.5rem;
            }
            .calc-panel[data-step="1"] .calc-option {
                min-height: 108px;
                padding: 1rem;
                text-align: center;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .calc-panel[data-step="1"] .opt-label {
                font-size: 0.875rem;
                margin-bottom: 0.35rem;
            }
            .calc-panel[data-step="1"] .opt-desc {
                display: none;
            }
            .calc-panel[data-step="1"] .opt-price {
                opacity: 1;
                transform: none;
                font-size: 0.75rem;
                margin-top: 0;
            }
            .calc-panel[data-step="2"] .calc-options {
                gap: 0.75rem;
                margin-bottom: 1.5rem;
            }
            .calc-panel[data-step="2"] .calc-option {
                padding: 1rem;
            }
            .calc-compact-options,
            .calc-check-grid {
                grid-template-columns: 1fr;
            }
            .calc-fieldset legend {
                font-size: 0.84rem;
            }
            .calc-result-note {
                width: 100%;
            }
            .calc-nav {
                gap: 0.75rem;
                margin-top: 1.5rem;
                padding-top: 1.5rem;
            }
            .calc-nav > * {
                flex: 1;
                min-width: 0;
            }
            .calc-btn,
            .calc-btn-secondary {
                padding: 0.9rem 0.75rem;
                font-size: 0.6875rem;
            }
            .calc-result {
                min-height: 0;
                padding: 2.5rem 0 1rem;
            }
            .calc-result-amount {
                font-size: 2.5rem;
            }
            .calc-result-details {
                width: 100%;
                padding: 1rem;
            }
            .calc-result-details li {
                align-items: flex-start;
                flex-direction: column;
                gap: 0.35rem;
            }
            .calc-cta-group {
                flex-direction: column;
                width: 100%;
            }
            .calc-cta-primary,
            .calc-cta-secondary {
                width: 100%;
                padding: 1rem;
            }
            .back-to-top {
                display: none;
            }
            body {
                cursor: auto !important;
            }
            .categorieen-grid {
                grid-template-columns: 1fr;
            }
            .categorie-card {
                aspect-ratio: 16/9;
            }
            .content-inner {
                transform: translateY(0);
                opacity: 1;
                background: rgba(15, 15, 15, 0.8);
            }
            .categorie-cta {
                opacity: 1;
                transform: translateY(0);
            }
            .modal-content {
                margin: 1rem;
            }
            .mobile-sticky-cta {
                display: none !important;
            }
            .proces-steps {
                grid-template-columns: 1fr;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto !important;
            }
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
            }
            .hero h1,
            .hero p,
            .hero-cta-group,
            .hero-badge,
            .hero-scroll,
            .hero-visual,
            .section-label,
            .section-title {
                opacity: 1 !important;
                transform: none !important;
            }
            .logo-ticker-track {
                transform: none !important;
                width: 100%;
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        /* Header refresh 2026 */
        nav {
            height: 88px;
            padding: 12px 2vw;
            background: transparent;
            transform: translateY(0);
            will-change: transform;
            transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
        }
        nav.nav-hidden {
            transform: translateY(calc(-100% - 12px));
        }
        nav.scrolled {
            padding: 12px 2vw;
            background: transparent;
            box-shadow: none;
        }
        .nav-shell {
            width: min(100%, 1440px);
            height: 64px;
            margin: 0 auto;
            padding: 0 0.75rem 0 0.65rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            background: rgba(250, 250, 250, 0.9);
            border: 1px solid rgba(15, 15, 15, 0.08);
            border-radius: 4px;
            box-shadow: 0 10px 34px rgba(15, 15, 15, 0.06);
            backdrop-filter: blur(20px) saturate(150%);
            -webkit-backdrop-filter: blur(20px) saturate(150%);
            transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        }
        nav.scrolled .nav-shell {
            background: rgba(250, 250, 250, 0.98);
            border-color: rgba(15, 15, 15, 0.12);
            box-shadow: 0 14px 38px rgba(15, 15, 15, 0.1);
        }
        .logo {
            gap: 0.7rem;
            flex-shrink: 0;
        }
        .brand-mark {
            width: 42px;
            height: 42px;
            color: var(--accent);
            flex-shrink: 0;
        }
        .brand-copy {
            display: flex;
            flex-direction: column;
            gap: 0.12rem;
            line-height: 1;
        }
        .logo .brand-kicker,
        .logo .brand-name {
            display: block;
            font-style: normal;
            white-space: nowrap;
        }
        .logo .brand-kicker {
            color: var(--accent);
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.24em;
        }
        .logo .brand-name {
            color: var(--text);
            font-size: 0.98rem;
            font-weight: 800;
            letter-spacing: 0.035em;
        }
        .nav-links {
            margin-left: auto;
            gap: clamp(1.25rem, 2.2vw, 2.25rem);
        }
        .nav-links a {
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.025em;
        }
        .nav-links a.active {
            border-bottom: 0;
        }
        .nav-links a.active::after {
            width: 100%;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            flex-shrink: 0;
        }
        .nav-direct-call {
            height: 42px;
            padding: 0 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text);
            border: 1px solid rgba(15, 15, 15, 0.12);
            border-radius: 3px;
            text-decoration: none;
            font-size: 0.75rem;
            font-weight: 650;
            white-space: nowrap;
            transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
        }
        .nav-direct-call:hover {
            color: var(--accent);
            border-color: var(--accent);
            background: var(--beige-subtle);
        }
        .nav-direct-call svg,
        .nav-phone svg {
            width: 17px;
            height: 17px;
        }
        .nav-cta {
            height: 42px;
            padding: 0 1.2rem;
            border-radius: 3px;
            font-size: 0.75rem;
            box-shadow: none;
        }
        .nav-actions .nav-cta.metal-btn {
            height: 42px;
            padding: 0 1.2rem;
            border-radius: 3px;
            font-size: 0.75rem;
            box-shadow: none;
        }
        .nav-phone {
            width: 44px;
            height: 44px;
            padding: 0;
            align-items: center;
            justify-content: center;
            color: var(--text);
            border: 1px solid rgba(15, 15, 15, 0.12);
            border-radius: 3px;
            background: rgba(255, 255, 255, 0.65);
        }
        .menu-toggle {
            width: 44px;
            height: 44px;
            padding: 0;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(15, 15, 15, 0.12);
            border-radius: 3px;
            background: rgba(255, 255, 255, 0.65);
        }
        .menu-toggle span {
            width: 19px;
        }

        .mobile-nav {
            left: max(0px, calc(100vw - 440px));
            right: auto;
            width: min(100vw, 440px);
            z-index: 200;
            background: #101010;
            opacity: 1;
            transform: translateX(100%);
            transition: transform 0.42s cubic-bezier(0.76, 0, 0.24, 1), visibility 0.42s;
        }
        .mobile-nav::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: linear-gradient(rgba(179, 148, 77, 0.035) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(179, 148, 77, 0.035) 1px, transparent 1px);
            background-size: 32px 32px;
            mask-image: linear-gradient(to bottom, black, transparent 72%);
        }
        .mobile-nav.active {
            transform: translateX(0);
        }
        .mobile-nav-header {
            min-height: 76px;
            padding: 0.75rem 1.25rem;
            position: relative;
            z-index: 1;
            border-bottom-color: rgba(255, 255, 255, 0.1);
        }
        .mobile-nav-brand {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            color: var(--white);
        }
        .mobile-nav-brand .brand-mark {
            width: 38px;
            height: 38px;
        }
        .mobile-nav-brand .brand-kicker {
            display: block;
            color: var(--accent-light);
            font-size: 0.54rem;
            font-weight: 700;
            letter-spacing: 0.22em;
        }
        .mobile-nav-brand .brand-name {
            display: block;
            margin-top: 0.15rem;
            color: var(--white);
            font-size: 0.9rem;
            font-weight: 750;
            letter-spacing: 0.04em;
        }
        .mobile-nav-close {
            width: 44px;
            height: 44px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 3px;
        }
        .mobile-nav-close svg {
            width: 19px;
            height: 19px;
        }
        .mobile-nav-items {
            padding: 0.9rem 1.25rem 2rem;
            position: relative;
            z-index: 1;
            overflow-y: auto;
        }
        .mobile-nav-link,
        .mobile-nav-cat {
            min-height: 48px;
            padding: 0.8rem 0.25rem;
            font-size: 1rem;
            font-weight: 600;
            border-bottom-color: rgba(255, 255, 255, 0.08);
        }
        .mobile-nav-link:hover {
            padding-left: 0.5rem;
        }
        .mobile-nav-sublist {
            margin: 0;
            border-left: 1px solid transparent;
            background: transparent;
        }
        .mobile-nav-sublist.open {
            margin: 0.25rem 0 0.75rem;
            border-left-color: var(--accent);
            background: rgba(255, 255, 255, 0.025);
        }
        .mobile-nav-subcat {
            min-height: 44px;
            padding: 0.65rem 0.75rem 0.65rem 1rem;
        }
        .mobile-nav-subitems a,
        .mobile-nav-direct {
            min-height: 42px;
            padding-top: 0.65rem;
            padding-bottom: 0.65rem;
        }
        .mobile-nav-secondary {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.45rem;
            margin-top: 1rem;
        }
        .mobile-nav-secondary a {
            padding: 0.7rem 0.35rem;
            color: rgba(255, 255, 255, 0.58);
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            text-decoration: none;
            font-size: 0.72rem;
            font-weight: 550;
        }
        .mobile-menu-cta {
            width: 100%;
            min-height: 50px;
            margin-top: 1rem;
            border-radius: 3px;
        }
        .mobile-nav-contact {
            margin-top: 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem 1rem;
        }
        .mobile-nav-contact a {
            color: rgba(255, 255, 255, 0.62);
            text-decoration: none;
            font-size: 0.75rem;
        }

        @media (max-width: 1180px) {
            .nav-shell {
                gap: 1rem;
            }
            .nav-links {
                gap: 1.1rem;
            }
            .nav-direct-call span {
                display: none;
            }
            .nav-direct-call {
                width: 42px;
                padding: 0;
                justify-content: center;
            }
        }

        @media (max-width: 960px) {
            nav,
            nav.scrolled {
                height: 72px;
                padding: 8px 12px;
            }
            .nav-shell {
                height: 56px;
                padding: 0 0.35rem 0 0.45rem;
                gap: 0.45rem;
            }
            .nav-links,
            .nav-actions {
                display: none !important;
            }
            .logo {
                margin-right: auto;
                gap: 0.55rem;
            }
            .brand-mark {
                width: 38px;
                height: 38px;
            }
            .logo .brand-kicker {
                font-size: 0.52rem;
            }
            .logo .brand-name {
                font-size: 0.88rem;
            }
            .nav-phone,
            .menu-toggle {
                display: inline-flex;
                margin: 0;
            }
            .mobile-nav {
                left: 0;
                width: 100vw;
            }
            main .hero {
                min-height: 100svh;
                padding: 96px 1.5rem 3.5rem;
            }
        }

        @media (max-width: 380px) {
            .nav-shell {
                gap: 0.3rem;
            }
            .brand-mark {
                width: 35px;
                height: 35px;
            }
            .logo .brand-kicker {
                font-size: 0.48rem;
            }
            .logo .brand-name {
                font-size: 0.78rem;
            }
        }

        @media (min-width: 1025px) {
            nav.scrolled .nav-cta {
                padding: 0.6rem 1.25rem;
                font-size: 0.75rem;
                box-shadow: 0 2px 12px rgba(196, 163, 90, 0.2);
            }
        }
        /* ═══════════════════════════════════════════
           METAL FX — Gold Button Effect (CSS-only)
           Gebaseerd op metal-fx gold preset
           ═══════════════════════════════════════════ */
        .metal-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            font-family: inherit;
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: linear-gradient(135deg, #b3944d 0%, #d4b76a 25%, #f5e6a3 50%, #d4b76a 75%, #b3944d 100%);
            background-size: 200% 200%;
            color: #1a1a1a;
            box-shadow: 0 4px 15px rgba(179, 148, 77, 0.3), inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 0 rgba(0,0,0,0.1);
        }
        .metal-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
            transition: left 0.6s ease;
        }
        .metal-btn::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
            border-radius: inherit;
            pointer-events: none;
        }
        .metal-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(179, 148, 77, 0.4), inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.15);
            animation: metalShine 2s ease-in-out infinite;
        }
        .metal-btn:hover::before {
            left: 100%;
        }
        .metal-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 10px rgba(179, 148, 77, 0.3), inset 0 1px 0 rgba(255,255,255,0.2), inset 0 2px 4px rgba(0,0,0,0.1);
        }
        @keyframes metalShine {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        .metal-btn-dark {
            background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #0f0f0f 100%);
            background-size: 200% 200%;
            color: #b3944d;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1), inset 0 -1px 0 rgba(0,0,0,0.3);
        }
        .metal-btn-dark::after {
            background: linear-gradient(180deg, rgba(179,148,77,0.1) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
        }
        .metal-btn-dark:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -1px 0 rgba(0,0,0,0.4);
        }
        .metal-btn-sm { padding: 0.625rem 1.5rem; font-size: 0.75rem; }
        .metal-btn-lg { padding: 1.25rem 3rem; font-size: 0.875rem; }
        .metal-btn:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

        /* ── STICKY CTA: HIDE ON DESKTOP ── */
        @media (min-width: 1025px) {
            .mobile-sticky-cta {
                display: none !important;
            }
        }
        @media (max-width: 640px) {
            .prijzen {
                padding-left: 1.25rem;
                padding-right: 1.25rem;
            }
            .prijzen-toggle {
                justify-content: center;
                gap: 0.65rem;
                font-size: 0.78rem;
            }
            .prijs-card {
                padding: 2.25rem 1.35rem 1.5rem;
            }
            .prijs-for,
            .prijs-exclusion {
                min-height: 0;
            }
            .pakket-kaders,
            .pakket-addons {
                padding: 1.5rem 1.25rem;
            }
            .pakket-kaders-grid,
            .pakket-addon-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ==============================================================
           HOMEPAGE FLUID DESKTOP SCALE
           Houd de beeldlaag schermbreed en laat visuele secties op grote
           schermen meegroeien zonder tekstregels onbeperkt uit te rekken.
           ============================================================== */
        :root {
            --home-fluid-gutter: clamp(1.5rem, 4vw, 6.5rem);
            --home-wide-shell: 1760px;
            --home-balanced-shell: 1480px;
        }

        main .hero {
            width: 100%;
            max-width: none;
            margin-inline: 0;
            padding-inline: var(--home-fluid-gutter);
        }

        .hero-inner {
            max-width: var(--home-wide-shell);
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 120px);
        }

        .hero p {
            max-width: 620px;
            font-size: clamp(1.125rem, 1.05vw, 1.35rem);
        }

        @media (min-width: 769px) {
            .hero h1 {
                max-width: min(1440px, 72vw);
            }
        }

        @media (min-width: 1441px) {
            .project-categorieen-inner,
            .usp-strip-inner,
            .proces-inner,
            .trust-inner,
            .gallery-inner,
            .visualisatie-dienst-inner,
            .waarom-inner,
            .officiele-check-inner {
                max-width: var(--home-wide-shell);
            }

            .contact.tba-contact.homepage-contact .contact-inner {
                max-width: var(--home-wide-shell);
            }

            .diensten,
            .visualisatie-dienst {
                width: 100%;
                max-width: min(1840px, 100%);
            }

            .prijzen-inner,
            .over-ons-inner {
                max-width: var(--home-balanced-shell);
            }

            .section-title {
                max-width: 760px;
                font-size: clamp(3.5rem, 3vw, 4.25rem);
            }

            .project-categorieen .section-title,
            .trust-section .section-title {
                max-width: 920px;
            }

            .gallery .section-title {
                max-width: 820px;
            }

            .categorieen-grid,
            .gallery-grid {
                gap: clamp(1.5rem, 1.5vw, 2.25rem);
            }

            .proces-steps,
            .diensten-grid {
                gap: clamp(2rem, 1.75vw, 2.75rem);
            }
        }

        @media (min-width: 2200px) {
            html {
                font-size: 18px;
            }
        }

.cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 10000;
            background: #0f0f0f;
            border-top: 1px solid rgba(179, 148, 77, 0.15);
            padding: 1rem 2rem;
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .cookie-consent.show {
            transform: translateY(0);
        }
        .cookie-consent-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .cookie-consent p {
            color: rgba(255,255,255,0.7);
            font-size: 0.875rem;
            line-height: 1.6;
            margin: 0;
            flex: 1;
            min-width: 200px;
        }
        .cookie-consent a {
            color: var(--accent, #b3944d);
            text-decoration: underline;
        }
        .cookie-consent a:hover {
            color: var(--white, #fff);
        }
        .cookie-accept {
            flex-shrink: 0;
            padding: 0.75rem 2rem;
            background: var(--accent, #b3944d);
            color: #0f0f0f;
            border: none;
            border-radius: 50px;
            font-family: inherit;
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .cookie-accept:hover {
            background: var(--white, #fff);
            transform: translateY(-1px);
        }
        @media (max-width: 768px) {
            .cookie-consent { padding: 1rem 1.5rem; }
            .cookie-consent-inner { flex-direction: column; text-align: center; }
            .cookie-accept { width: 100%; }
        }
