@font-face {
    font-display: swap;
    font-family: Tilda Sans VF;
    font-style: normal;
    font-weight: 400;
    src: url(fonts/TildaSansVF.ttf) format("truetype")
}

:root {
    --bg-site: #fff;
    --heading-font: "Tilda Sans VF", Arial, sans-serif;
    --body-font: "Tilda Sans VF", Arial, sans-serif;
    --body-fontsize: clamp(1rem, 1.6vw, 1.3rem);
    --ink: #b26dff;
    --text: #334155;
    --text-muted: #64748b;
    --brand: #b26dff;
    --brand-contrast: #fff;
    --border: #e6e9ef;
    --border-strong: #dfe5ee;
    --container: clamp(320px, 92%, 1240px);
    --header-h: 96px;
    --hero-h: 70vh;
    --hero-pad: clamp(20px, 16.2vw, 154px);
    --hero-gap: clamp(10px, 2vw, 18px);
    --circle-size: 80%;
    --blending: hard-light;
    --color1: 18, 113, 255;
    --color2: 221, 74, 255;
    --color3: 100, 220, 255;
    --color4: 200, 50, 50;
    --color5: 180, 180, 50;
    --color-interactive: 140, 100, 255
}

* {
    box-sizing: border-box
}

body,
html {
    min-height: 100%;
    overflow-x: hidden;
     font-size: var(--body-fontsize);
}

html {
    scroll-padding-top: 84px
}

body {
    background: var(--bg-site);
    color: var(--text);
    font-family: var(--body-font);
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a:not(.btn) {
    color: #fff;
    text-decoration: none
}

a:not(.btn):hover {
    background-image: linear-gradient(90deg, rgba(178, 109, 255, .35), rgba(75, 227, 255, .35));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 100% 2px
}

.container {
    margin-inline: auto;
    width: min(100% - 4vw, var(--container))
}

.site-header,
.topbar,
footer,
main {
    position: relative;
    z-index: 1
}

.site-header {
    box-shadow: none;
    position: sticky;
    top: var(--topbar-h);
    transition: background-color .45s cubic-bezier(.4, 0, .2, 1), box-shadow .45s cubic-bezier(.4, 0, .2, 1)
}

.site-header.is-scrolled .nav {
    padding: clamp(1.9rem, 4vw, 3.9rem) 0
}

.nav>* {
    min-width: 0
}

.brand-logo {
    align-items: center;
    display: inline-flex;
    gap: .5rem;
    line-height: 1
}

.site-header.is-scrolled .brand-logo img {
    height: clamp(26px, 3.2vw, 40px)
}

:root {
    --topbar-h: 32px
}

body {
    --stack-top: var(--topbar-h)
}

.topbar {
    background: var(--brand);
    color: var(--brand-contrast);
    font-size: clamp(.8rem, .9vw, .95rem);
    letter-spacing: .2px;
    padding: .9em 0;
    text-align: center;
    top: 0;
    transform: translateY(0);
    transition: transform .25s ease;
    z-index: 1100
}

.site-header,
.topbar {
    left: 0;
    position: fixed;
    right: 0
}

.site-header {
    background: transparent;
    border-bottom: 1px solid hsla(0, 0%, 100%, .25);
    top: var(--stack-top);
    transition: top .25s ease, background-color .45s cubic-bezier(.4, 0, .2, 1), box-shadow .45s cubic-bezier(.4, 0, .2, 1);
    z-index: 1000
}

.site-header.is-scrolled {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06)
}

.site-header.is-scrolled .nav {
    padding: clamp(2.5rem, 2vw, 5.2rem) 0
}

.brand-logo img {
    display: block;
    height: clamp(42px, 6vw, 88px);
    max-width: min(320px, 50vw);
    object-fit: contain;
    transition: height .45s cubic-bezier(.4, 0, .2, 1);
    width: auto
}

.site-header.is-scrolled .brand-logo img {
    height: clamp(72px, 1.8vw, 74px)
}

.nav-links {
    justify-self: center
}

.nav-links a {
    border-radius: 10px;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    font-weight: 600;
    letter-spacing: .18em;
    padding: .85em 1.1em;
    text-transform: uppercase;
    transition: color .45s, opacity .25s, letter-spacing .45s, font-size .45s, padding .45s
}

.site-header .nav-links a {
    color: #fff;
    opacity: .92
}

.site-header .nav-links a:hover,
.site-header .nav-links a[aria-current] {
    color: #f0f0f0;
    opacity: 1
}

.site-header.is-scrolled .nav-links a {
    color: var(--text);
    font-size: clamp(.92rem, 1vw, 1.02rem);
    letter-spacing: .16em;
    padding: .45em .75em
}

.hero,
.hero--bubbles {
    padding-top: var(--hero-pad) !important
}

#services {
    scroll-margin-top: calc(var(--stack-top) + 72px)
}

.nav {
    display: grid;
    gap: clamp(0-rem, 0, 0rem);
    grid-template-columns: auto 1fr;
    padding: clamp(1.2rem, 2.6vw, 2.4rem) 0
}

.nav,
.nav-links {
    align-items: center
}

.nav-links {
    display: flex;
    gap: clamp(1rem, 2vw, 2.2rem);
    justify-self: end
}

:root {
    --hero-shift: clamp(32px, 12vh, 160px)
}

@media (max-width:820px) {
    :root {
        --hero-shift: clamp(20px, 8vh, 80px)
    }
}

.hero {
    background: #b26dff;
    position: relative;
    z-index: 2
}

.hero--bubbles {
    align-items: center;
    background: none !important;
    color: #fff;
    display: grid;
    margin-top: calc((var(--topbar-h) + var(--header-h))*-1)
}

.hero--bubbles .wrap {
    align-content: center;
    display: grid;
    gap: var(--hero-gap);
    justify-items: start;
    padding-block: var(--hero-pad) !important;
    padding-top: calc(var(--hero-pad) + var(--topbar-h) + var(--header-h)) !important
}

.hero-copy {
    max-width: 87ch
}

.hero h1 {
    color: #fff;
    font-family: var(--heading-font);
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase
}

.hero .lead {
    color: #fff;
    font-size: var(--body-fontsize);
    margin-bottom: 30px
}

.hero .sub {
    color: #fff;
    font-size: .9rem;
    opacity: .86
}

.hero .eyebrow {
    text-transform: uppercase
}

.hero-bubbles-bg {
    background: linear-gradient(40deg, #b375e1, #fff);
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: -1
}

.hero-bubbles-bg svg {
    height: 0;
    left: 0;
    position: fixed;
    top: 0;
    width: 0
}

.hero-bubbles-bg .gradients-container {
    filter: url(#goo) blur(80px);
    height: 100%;
    width: 100%
}

@keyframes moveInCircle {
    0% {
        transform: rotate(0)
    }

    50% {
        transform: rotate(180deg)
    }

    to {
        transform: rotate(1turn)
    }
}

@keyframes moveVertical {
    0% {
        transform: translateY(-50%)
    }

    50% {
        transform: translateY(50%)
    }

    to {
        transform: translateY(-50%)
    }
}

@keyframes moveHorizontal {
    0% {
        transform: translateX(-50%) translateY(-10%)
    }

    50% {
        transform: translateX(50%) translateY(10%)
    }

    to {
        transform: translateX(-50%) translateY(-10%)
    }
}

.hero-bubbles-bg .g1,
.hero-bubbles-bg .g2,
.hero-bubbles-bg .g3,
.hero-bubbles-bg .g4,
.hero-bubbles-bg .g5,
.hero-bubbles-bg .interactive {
    mix-blend-mode: var(--blending);
    position: absolute
}

.hero-bubbles-bg .g1 {
    animation: moveVertical 30s ease infinite;
    background: radial-gradient(circle at center, rgba(var(--color1), .8) 0, rgba(var(--color1), 0) 50%) no-repeat;
    transform-origin: center
}

.hero-bubbles-bg .g1,
.hero-bubbles-bg .g2 {
    height: var(--circle-size);
    left: calc(50% - var(--circle-size)/2);
    opacity: 1;
    top: calc(50% - var(--circle-size)/2);
    width: var(--circle-size)
}

.hero-bubbles-bg .g2 {
    animation: moveInCircle 20s infinite reverse;
    background: radial-gradient(circle at center, rgba(var(--color2), .8) 0, rgba(var(--color2), 0) 50%) no-repeat;
    transform-origin: calc(50% - 400px)
}

.hero-bubbles-bg .g3 {
    animation: moveInCircle 40s linear infinite;
    background: radial-gradient(circle at center, rgba(var(--color3), .8) 0, rgba(var(--color3), 0) 50%) no-repeat;
    left: calc(50% - var(--circle-size)/2 - 500px);
    opacity: 1;
    top: calc(50% - var(--circle-size)/2 + 200px);
    transform-origin: calc(50% + 400px)
}

.hero-bubbles-bg .g3,
.hero-bubbles-bg .g4 {
    height: var(--circle-size);
    width: var(--circle-size)
}

.hero-bubbles-bg .g4 {
    animation: moveHorizontal 40s ease infinite;
    background: radial-gradient(circle at center, rgba(var(--color4), .8) 0, rgba(var(--color4), 0) 50%) no-repeat;
    left: calc(50% - var(--circle-size)/2);
    opacity: .7;
    top: calc(50% - var(--circle-size)/2);
    transform-origin: calc(50% - 200px)
}

.hero-bubbles-bg .g5 {
    animation: moveInCircle 20s ease infinite;
    background: radial-gradient(circle at center, rgba(var(--color5), .8) 0, rgba(var(--color5), 0) 50%) no-repeat;
    height: calc(var(--circle-size)*2);
    left: calc(50% - var(--circle-size));
    opacity: 1;
    top: calc(50% - var(--circle-size));
    transform-origin: calc(50% - 800px) calc(50% + 200px);
    width: calc(var(--circle-size)*2)
}

.hero-bubbles-bg .interactive {
    background: radial-gradient(circle at center, rgba(var(--color-interactive), .8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
    height: 100%;
    left: -50%;
    opacity: .7;
    top: -50%;
    width: 100%
}

@media (prefers-reduced-motion:reduce) {

    .hero-bubbles-bg .g1,
    .hero-bubbles-bg .g2,
    .hero-bubbles-bg .g3,
    .hero-bubbles-bg .g4,
    .hero-bubbles-bg .g5 {
        animation: none !important
    }
}

.hero-copy {
    transition: transform .1s ease-out;
    will-change: transform
}

.hero-bubbles-bg {
    transition: transform .15s ease-out;
    will-change: transform
}

#services {
    scroll-margin-top: calc(var(--header-h) + 24px)
}

.section-label {
    grid-template-columns: 2fr minmax(127px, 6ch)
}

@keyframes neonShift {
    to {
        background-position: 200%
    }
}

.section-services {
    background: #fff;
    border-top: 1px solid var(--border-strong);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    margin-top: -50px;
    padding-block: clamp(2rem, 6vw, 5rem);
    position: relative;
    z-index: 2
}

.section-services:before {
    background: linear-gradient(180deg, rgba(17, 24, 39, .14), rgba(17, 24, 39, 0));
    content: "";
    filter: blur(6px);
    height: clamp(16px, 2vh, 28px);
    left: 0;
    opacity: .12;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0
}

.services-grid {
    align-items: stretch;
    display: grid;
    gap: clamp(2rem, 2.8vw, 3rem);
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

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

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

.service-card {
    border-radius: 0x;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    overflow: hidden;
    padding: 2rem;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease
}

.service-card:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='4' stitchTiles='stitch' type='fractalNoise'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 160px;
    content: "";
    inset: 0;
    mix-blend-mode: multiply;
    opacity: .22;
    pointer-events: none;
    position: absolute;
    z-index: 0
}

.service-card>* {
    position: relative;
    z-index: 1
}

.service-card__head {
    align-items: flex-start;
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-direction: row;
    gap: .8rem;
    margin-bottom: 1rem
}

.service-card .icon {
    display: grid;
    flex: 0 0 auto;
    height: 2.6rem;
    margin: 0;
    place-items: center;
    width: 2.6rem
}

.service-card .icon img {
    height: 100%;
    object-fit: contain;
    width: 100%
}

.service-card h3 {
    color: var(--brand);
    font-family: var(--heading-font);
    font-size: clamp(1.4rem, 3.2vw, 2.3rem);
    margin: 0
}

.service-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    padding-top: 1rem
}

.service-card__body .btn {
    align-self: stretch;
    display: block;
    margin-top: auto;
    text-align: center;
    width: 100%
}

.service-card .desc {
    color: var(--text)
}

.service-card .bullets,
.service-card .desc {
    font-size: var(--body-fontsize);
    margin: 0 0 1.2em
}

.service-card .bullets {
    list-style: none;
    padding: 0
}

.service-card .bullets li {
    color: var(--text);
    font-size: var(--body-fontsize);
    margin: .6em 0;
    padding-left: 1.6em;
    position: relative
}

.service-card .bullets li:before {
    color: var(--brand);
    content: "✓";
    font-size: 1rem;
    font-weight: 600;
    left: 0;
    position: absolute;
    top: 0
}

@media (max-width:700px) {
    .service-card {
        min-height: 0
    }
}

.section-portfolio {
    border-top: 1px solid var(--border-strong);
    width: 100%
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%
}

@media (max-width:960px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

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

.portfolio-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative
}

.portfolio-item img {
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform .6s ease;
    width: 100%
}

.portfolio-item .overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .35));
    color: #fff;
    display: grid;
    inset: 0;
    opacity: 0;
    padding: 1rem;
    place-items: center;
    position: absolute;
    text-align: center;
    transition: opacity .4s ease
}

.portfolio-item h3 {
    font-family: var(--heading-font);
    font-size: clamp(1.25rem, 2.2vw, 2rem);
    letter-spacing: .03em
}

.portfolio-item:hover img {
    transform: scale(1.08)
}

.portfolio-item:hover .overlay {
    opacity: 1
}

.btn {
    align-items: center;
    background: none;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: inline-flex;
    isolation: isolate;
    justify-content: center;
    letter-spacing: .03em;
    overflow: visible;
    padding: 1em 2.2em;
    position: relative;
    text-transform: uppercase;
    transition: color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .15s ease;
    z-index: 0
}

.btn,
.btn:active,
.btn:focus,
.btn:hover {
    text-decoration: none
}

.btn:before {
    background: linear-gradient(90deg, #ffd36e, #ffb347 20%, #ff5da8 70%, #e83b62);
    content: "";
    filter: blur(80px);
    inset: -4em;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: scale(.9);
    transition: opacity .45s ease, transform .45s ease, filter .45s ease;
    z-index: -1
}

.btn:hover:before {
    filter: blur(80px);
    opacity: 1;
    transform: scale(1)
}

.btn-primary {
    --btn-stroke: #fff;
    border: 1px solid var(--btn-stroke);
    color: #fff;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    letter-spacing: .08em;
    padding: 1.2em 2.6em
}

.btn-primary:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-1px)
}

.btn-secondary {
    --btn-stroke: #b26dff;
    border: 1px solid var(--btn-stroke);
    color: var(--btn-stroke);
    font-family: var(--body-font);
    letter-spacing: .07em;
    padding: 1.1em .4em;
      font-size: clamp(1rem, 1.2vw, 1.15rem); 
}

.btn-secondary:before {
    background: linear-gradient(90deg, #e6dcf8, #c9a9ff 40%, #7bb9eb);
    content: "";
    filter: blur(12px);
    inset: -1.5rem;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: scale(.95);
    transition: opacity .35s ease, transform .35s ease, filter .35s ease;
    z-index: -1
}

.btn-secondary:hover:before {
    filter: blur(74px);
    opacity: 1;
    transform: scale(1)
}

.btn-secondary:hover {
    border-color: #fff;
    color: #fff
}

.btn-tertiary:before {
    background: linear-gradient(90deg, #ffe08a, #04ff64 25%, #d1ffa7 65%, #d4d64b);
    content: "";
    filter: blur(22px);
    inset: -2.5rem;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: scale(.93);
    transition: opacity .4s ease, transform .4s ease, filter .4s ease;
    z-index: -1
}

.btn-tertiary:hover:before {
    filter: blur(86px);
    opacity: 1;
    transform: scale(1)
}

.btn-tertiary {
    --btn-stroke: #b375e1;
    border: 1px solid var(--btn-stroke);
    color: var(--btn-stroke);
    font-family: var(--body-font);
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    letter-spacing: .07em;
    padding: 1.1em 2.4em
}

.btn-tertiary:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    color: #fff;
    transform: translateY(-1px)
}

.site-footer {
    background: radial-gradient(1200px 1200px at 30% 20%, #ffa94d 0, #b26dff 45%, #b26dff 55%, #b26dff 70%, #b26dff 100%);
    color: #fff;
    isolation: isolate;
    position: relative
}

.site-footer:before {
    background: radial-gradient(1400px 1000px at 70% 40%, hsla(0, 0%, 100%, .08), transparent 60%), linear-gradient(135deg, hsla(0, 0%, 100%, .06), hsla(0, 0%, 100%, 0));
    content: "";
    inset: 0;
    position: absolute;
    z-index: 0
}

.site-footer .container {
    position: relative;
    z-index: 1
}

.footer-cta {
    align-items: center;
    display: grid;
    gap: clamp(24px, 6vw, 64px);
    grid-template-columns: 1fr minmax(280px, 540px);
    padding: clamp(28px, 4vw, 40px) 0
}

.footer-title {
    font-family: var(--heading-font);
    font-size: clamp(2.4rem, 7vw, 5rem);
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1;
    margin: 0 0 .6rem;
    text-transform: uppercase
}

.footer-eyebrow {
    font-size: clamp(.95rem, 1.2vw, 1.05rem);
    margin: 0 0 1.2rem;
    opacity: .9
}

.footer-links {
    display: grid;
    gap: clamp(8px, 1vw, 12px);
    list-style: none;
    margin: clamp(18px, 2.2vw, 28px) 0 0;
    max-width: 24ch;
    padding: 0
}

.footer-link {
    border-bottom: 3px solid hsla(0, 0%, 100%, .95);
    color: #fff;
    display: inline-block;
    font-size: clamp(1.1rem, 2.2vw, 1.8rem);
    font-weight: 700;
    letter-spacing: .05em;
    padding-bottom: .2em;
    text-decoration: none
}

.footer-link:hover {
    opacity: .9;
    transform: translateY(-1px)
}

.footer-portrait {
    aspect-ratio: 1/1;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    justify-self: end;
    margin: 0;
    overflow: hidden;
    position: relative;
    width: clamp(220px, 23vw, 352px)
}

.footer-portrait:before {
    background: linear-gradient(135deg, hsla(0, 0%, 100%, .7), hsla(0, 0%, 100%, .2));
    border-radius: inherit;
    content: "";
    inset: 0;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 3px;
    pointer-events: none;
    position: absolute
}

.footer-portrait img {
    filter: grayscale(100%) contrast(1.05);
    height: 100%;
    object-fit: cover;
    width: 100%
}

.footer-divider {
    background: hsla(0, 0%, 100%, .7);
    border: 0;
    height: 1px;
    margin: 0;
    opacity: .75
}

.footer-bar {
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    padding: clamp(16px, 2.2vw, 22px) 0
}

.footer-bar,
.footer-nav {
    display: flex;
    flex-wrap: wrap
}

.footer-nav {
    gap: clamp(16px, 2vw, 28px)
}

.footer-nav a {
    color: #fff;
    font-size: clamp(.9rem, 1vw, 1rem);
    font-weight: 600;
    letter-spacing: .08em;
    opacity: .95;
    text-decoration: none;
    text-transform: uppercase
}

.footer-nav a:hover {
    opacity: 1
}

.footer-socials {
    display: flex;
    gap: 14px
}

.footer-socials a {
    background: hsla(0, 0%, 100%, .12);
    border: 1px solid hsla(0, 0%, 100%, .38);
    border-radius: 10px;
    color: #fff;
    display: grid;
    font-size: 1rem;
    height: 36px;
    place-items: center;
    text-decoration: none;
    transition: transform .15s ease, background .25s ease;
    width: 36px
}

.footer-socials a:hover {
    background: hsla(0, 0%, 100%, .18);
    transform: translateY(-2px)
}

.footer-meta {
    opacity: .92;
    padding: 0 0 clamp(24px, 3vw, 36px)
}

@media (max-width:900px) {
    .footer-cta {
        grid-template-columns: 1fr
    }

    .footer-portrait {
        justify-self: start;
        width: min(72vw, 420px)
    }
}

.page-diensten .hero--bubbles {
    align-items: center;
    display: flex;
    min-height: clamp(140px, 22vh, 320px);
    overflow: hidden;
    padding-bottom: clamp(10px, 3vh, 24px);
    padding-top: calc(var(--topbar-h, 0px) + var(--header-h, 0px) + 12px);
    position: relative
}

.page-diensten .hero--bubbles .wrap {
    position: relative;
    z-index: 1
}

.page-diensten .hero-copy {
    margin: 0
}

.page-diensten .hero-copy .eyebrow {
    font-size: clamp(.8rem, 1.8vw, .95rem);
    margin: 0 0 .2rem;
    opacity: .85
}

.page-diensten .hero-copy h1 {
    font-size: clamp(1.4rem, 4.8vw, 2.4rem);
    line-height: 1.15;
    margin: .05rem 0 .25rem
}

.page-diensten .hero-copy .lead {
    color: #fff;
    font-size: clamp(.95rem, 3.6vw, 1.2rem);
    margin: 0
}

.page-diensten .hero-copy .btn,
.page-diensten .hero-copy .sub {
    display: none
}

.page-diensten .hero--bubbles .hero-bubbles-bg {
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 0
}

.page-diensten .service-section:first-of-type {
    background: #fff;
    border-top: 1px solid var(--border-strong);
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    margin-top: -36px;
    padding-top: clamp(20px, 2.6vw, 40px);
    position: relative;
    z-index: 2
}

.page-diensten .service-section:first-of-type:before {
    background: linear-gradient(180deg, rgba(17, 24, 39, .14), rgba(17, 24, 39, 0));
    content: "";
    filter: blur(6px);
    height: clamp(12px, 2vh, 24px);
    inset: 0 0 auto 0;
    opacity: .12;
    pointer-events: none;
    position: absolute
}

.page-diensten .service-section {
    scroll-margin-top: calc(var(--topbar-h, 0px) + var(--header-h, 0px) + 72px)
}

@media (max-width:480px) {
    .page-diensten .hero--bubbles {
        min-height: clamp(120px, 28vh, 220px);
        padding-bottom: 14px
    }

    .page-diensten .service-section:first-of-type {
        border-top-left-radius: 28px;
        border-top-right-radius: 28px;
        margin-top: -24px
    }
}

.nav-item.has-sub .sub-trigger {
    align-items: center;
    background: none;
    border: 0;
    border-radius: 10px;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    font-weight: 600;
    gap: .4rem;
    letter-spacing: .18em;
    padding: .85em 1.1em;
    text-transform: uppercase
}

.nav-item.has-sub .sub {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
    color: var(--text);
    display: none;
    min-width: 260px;
    padding: 8px;
    top: calc(100% + 8px);
    z-index: 1500
}

.nav-item.has-sub:focus-within .sub,
.nav-item.has-sub:hover .sub {
    display: block
}

.nav-item.has-sub .sub-trigger[aria-expanded=true]+.sub {
    display: block
}

.nav-item.has-sub .sub a {
    font-weight: 600;
    letter-spacing: .04em;
    padding: .65rem .75rem
}

.nav-item.has-sub .sub a:hover {
    background: #f8f8fb
}

.site-header:not(.is-scrolled) .nav-item.has-sub .sub-trigger {
    color: #fff
}

.site-header:not(.is-scrolled) .nav-item.has-sub .sub {
    border-color: hsla(0, 0%, 100%, .35)
}

.nav-item.has-sub .sub-trigger svg {
    opacity: .85;
    transition: transform .15s ease
}

.nav-item.has-sub .sub-trigger[aria-expanded=true] svg {
    transform: rotate(180deg)
}

.nav,
.site-header {
    overflow: visible
}

.sub-trigger {
    align-items: center;
    appearance: none;
    background: none;
    border: 0;
    border-radius: 10px;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    gap: .4rem;
    padding: .85em 1.1em
}

.sub-trigger svg {
    transform-origin: 50% 45%;
    transition: transform .2s ease
}

.nav-item .sub {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
    left: 0;
    max-width: 320px;
    min-width: 240px;
    opacity: 0;
    padding: 6px;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 10px);
    transform: translateY(-6px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
    visibility: hidden;
    z-index: 1050
}

.nav-item .sub a {
    align-items: center;
    border-radius: 8px;
    color: var(--text);
    display: flex;
    font-weight: 600;
    gap: .5rem;
    letter-spacing: .06em;
    padding: .6rem .65rem;
    text-decoration: none
}

.nav-item .sub a:hover {
    background: #fafafa;
    color: #111827
}

.site-header.is-scrolled .nav-item .sub a {
    color: var(--text)
}

@media (hover:none) {
    .has-sub:hover>.sub {
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        visibility: hidden
    }
}

@media (max-width:860px) {
    .drawer .has-sub {
        display: block
    }

    .drawer .sub-trigger {
        border-radius: 8px;
        color: var(--text);
        justify-content: space-between;
        letter-spacing: .14em;
        padding: 14px 10px;
        width: 100%
    }

    .drawer .sub {
        border: 0;
        box-shadow: none;
        max-width: none;
        min-width: 0;
        opacity: 1;
        padding: 0;
        pointer-events: auto;
        position: static;
        transform: none;
        visibility: visible
    }

    .drawer .sub a {
        opacity: .9;
        padding: 10px 18px
    }
}

.nav-item {
    position: relative
}

.nav-item .sub {
    z-index: 1400
}

.site-header {
    z-index: 1300
}

.has-sub.is-open>.sub {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible
}

.has-sub.is-open>.sub-trigger svg {
    transform: rotate(180deg);
    transition: transform .2s
}

.nav-item.has-sub {
    position: relative
}

.nav-item.has-sub .sub {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
    display: block;
    left: 0;
    min-width: 240px;
    opacity: 0;
    padding: .6rem;
    position: absolute;
    top: 100%;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
    visibility: hidden;
    z-index: 1001
}

.nav-item.has-sub.is-open .sub,
.nav-item.has-sub:focus-within .sub,
.nav-item.has-sub:hover .sub {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
    visibility: visible
}

.nav-item.has-sub .sub a {
    border-radius: 8px;
    color: var(--text);
    display: block;
    padding: .55rem .7rem;
    text-decoration: none;
    white-space: nowrap
}

.nav-item.has-sub .sub a:hover {
    background: #f8f7ff;
    color: var(--brand)
}

.site-header.is-scrolled .nav-item.has-sub .sub {
    border-color: #e5e7eb
}

.nav-item.has-sub .sub {
    margin-top: 6px
}

.pricing-grid {
    align-items: stretch;
    display: grid;
    gap: clamp(1.2rem, 2.4vw, 2rem);
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

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

@media (max-width:680px) {
    .pricing-grid {
        grid-template-columns: 1fr
    }
}

.price-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    min-height: 100%;
    overflow: hidden;
    padding: 2rem;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease
}

.price-card:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='4' stitchTiles='stitch' type='fractalNoise'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 160px;
    content: "";
    inset: 0;
    mix-blend-mode: multiply;
    opacity: .18;
    pointer-events: none;
    position: absolute;
    z-index: 0
}

.price-card>* {
    position: relative;
    z-index: 1
}

.price-card:has(.price-card__badge) {
    background: color-mix(in srgb, #fff 88%, var(--accent-2) 6%);
    outline: 2px solid color-mix(in srgb, var(--accent-2) 42%, #0000)
}

.price-card__badge {
    background: #fff;
    border: 1px solid var(--border-dashed);
    border-radius: 8px;
    font-size: .85rem;
    padding: .28em .6em;
    position: absolute;
    right: 10px;
    top: 10px
}

.price-card h3 {
    color: var(--brand);
    font-family: var(--heading-font);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    margin: .2rem 0
}

.price-card .lead {
    color: var(--text);
    margin: 0 0 .4rem;
     font-size: var(--body-fontsize)
}

.price {
    color: var(--text);
    font-size: 1rem;
    margin: .2rem 0 .6rem
}

.price span {
    color: var(--brand);
    font-size: clamp(1.4rem, 3.2vw, 2rem);
    font-weight: 700
}

.features {
    list-style: none;
    margin: .4rem 0;
    padding: 0
}

.price-card .features {
    list-style: none;
    margin: 0 0 1.2em;
    padding: 0
}

.price-card .features li {
    margin: .5em 0;
    padding-left: 1.4em;
    position: relative;
     font-size: var(--body-fontsize)
}

.price-card .features li:before {
    color: var(--brand);
    content: "–";
    font-size: 1.2rem;
    font-weight: 600;
    left: 0;
    line-height: 1;
    position: absolute;
    top: 0
}

.price-card .meta {
    margin-top: auto
}

.price-card .btn {
    align-self: stretch;
    margin-top: .8rem;
    text-align: center
}

.price-card:focus-within {
    outline: 2px solid color-mix(in srgb, var(--accent-1) 46%, #0000);
    outline-offset: 2px
}

.disclaimer {
    color: var(--text-muted);
    font-size: var(--body-fontsize);
    margin-bottom: 1.9rem;
    margin-top: .8rem;
    text-align: center
}

#modules {
    --addon-accent: var(--brand, #b26dff);
    --addon-accent-2: #ff3deb;
    --addon-paper: #fff;
    --addon-card: #fff;
    --addon-gap: clamp(16px, 2.2vw, 24px);
    --addon-radius: 16px;
    --addon-shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
    --addon-shadow-lg: 0 12px 28px rgba(0, 0, 0, .12);
    --addon-border: var(--border, #e6e9ef)
}

@keyframes addonsTitleShift {
    to {
        background-position: 200%
    }
}

.addons__track {
    display: grid;
    gap: var(--addon-gap);
    grid-auto-columns: minmax(320px, 42%);
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 8px 0;
    scroll-padding: 8px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.addons__track::-webkit-scrollbar {
    display: none
}

@media (max-width:960px) {
    .addons__track {
        grid-auto-columns: min(86%, 520px)
    }
}

.addons__nav--prev {
    left: 4px
}

.addons__nav--next {
    right: 4px
}

.addon {
    background: var(--addon-card);
    border: 1px solid var(--addon-border);
    box-shadow: var(--addon-shadow-sm);
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    isolation: isolate;
    min-height: 260px;
    padding: clamp(16px, 2vw, 22px);
    position: relative;
    scroll-snap-align: start;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease
}

.addon:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='4' stitchTiles='stitch' type='fractalNoise'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 160px;
    border-radius: inherit;
    inset: 0;
    mix-blend-mode: multiply;
    opacity: .18;
    pointer-events: none;
    z-index: 0
}

.addon:after,
.addon:before {
    content: "";
    position: absolute
}

.addon:after {
    background: linear-gradient(90deg, var(--addon-accent), var(--addon-accent-2));
    border-radius: 0 0 var(--addon-radius) var(--addon-radius);
    bottom: -6px;
    filter: blur(.5px);
    height: 8px;
    left: 0;
    right: 0
}

.addon:focus-within,
.addon:hover {
    background: color-mix(in srgb, var(--addon-card) 92%, var(--addon-accent) 6%);
    border-color: color-mix(in srgb, var(--addon-accent) 35%, var(--addon-border));
    box-shadow: var(--addon-shadow-lg), 0 0 0 1px color-mix(in srgb, var(--addon-accent) 25%, transparent);
    transform: translateY(-2px)
}

.addons__track:focus {
    outline: 2px dashed color-mix(in srgb, var(--addon-accent) 50%, #0000);
    outline-offset: 6px
}

.addon a.btn:focus-visible {
    outline: 2px solid var(--addon-accent);
    outline-offset: 3px
}

@media (prefers-reduced-motion:reduce) {
    .addon {
        transition: none
    }
}

.addons__track {
    cursor: grab
}

.sr-only {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    clip: rect(0 0 0 0);
    border: 0;
    white-space: nowrap
}

.menu-toggle {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    border-radius: 12px;
    color: currentColor;
    cursor: pointer;
    display: none;
    height: 44px;
    justify-content: center;
    transition: transform .15s ease, background-color .2s ease;
    width: 44px
}

.menu-toggle:active {
    transform: scale(.98)
}

.site-header.is-scrolled .menu-toggle {
    color: var(--text)
}

.backdrop {
    backdrop-filter: saturate(140%) blur(4px);
    background: rgba(17, 24, 39, .48);
    inset: 0;
    opacity: 0;
    position: fixed;
    transition: opacity .2s ease, visibility 0s linear .2s;
    visibility: hidden;
    z-index: 1400
}

.backdrop.is-visible {
    opacity: 1;
    transition: opacity .2s ease;
    visibility: visible
}

.drawer {
    background: #fff;
    border-left: 1px solid var(--border);
    bottom: 0;
    box-shadow: -24px 0 60px rgba(0, 0, 0, .12);
    color: var(--text);
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: max(12px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform .25s ease;
    width: min(86vw, 420px);
    z-index: 1500
}

.drawer.is-open {
    transform: translateX(0)
}

.drawer__head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 6px 6px 6px 10px
}

.drawer__body {
    overflow: auto;
    padding: 10px 6px 18px
}

.menu-close {
    appearance: none;
    background: transparent;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    display: grid;
    height: 40px;
    place-items: center;
    width: 40px
}

.drawer__nav {
    display: grid;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0
}

.drawer .sub-trigger,
.drawer__nav>li>a {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--text);
    display: flex;
    font-weight: 700;
    gap: .6rem;
    justify-content: space-between;
    letter-spacing: .08em;
    padding: 12px;
    text-decoration: none;
    text-transform: uppercase
}

.drawer .sub-trigger:hover,
.drawer__nav>li>a:hover {
    background: #fafafa;
    border-color: var(--border)
}

.drawer .has-sub .sub {
    display: none;
    padding: 4px 0 6px 6px
}

.drawer .has-sub.is-open .sub {
    display: block
}

.drawer .sub a {
    border-radius: 8px;
    color: var(--text);
    display: block;
    font-weight: 600;
    letter-spacing: .05em;
    padding: 10px 14px;
    text-decoration: none
}

.drawer .sub a:hover {
    background: #fafafa
}

@media (max-width:860px) {
    .nav {
        align-items: center;
        display: grid;
        gap: clamp(.6rem, 2vw, 1rem);
        grid-template-columns: auto 1fr auto;
        padding: clamp(1rem, 2vw, 1.8rem) 0
    }

    .nav-links {
        display: none
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: end
    }
}

.body-lock {
    overflow: hidden;
    touch-action: none
}

.brand-logo,
.brand-logo:hover {
    text-decoration: none
}

a.brand-logo,
a.brand-logo:hover {
    background: none !important;
    background-image: none !important;
    text-decoration: none
}

@media (max-width:768px) {
    .site-header.is-scrolled .nav {
        padding: .6rem 0
    }

    .site-header.is-scrolled .brand-logo img {
        height: 34px
    }
}

.has-sub.is-open>.sub,
.nav-item.has-sub .sub-trigger[aria-expanded=true]+.sub,
.nav-item.has-sub:focus-within>.sub,
.nav-item.has-sub:hover>.sub {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible
}

.nav,
.nav-links,
.site-header {
    overflow: visible
}

.nav-item .sub {
    z-index: 1500
}

:root {
    --header-offset: 64px
}

.service-index {
    backdrop-filter: saturate(160%) blur(8px);
    background: hsla(0, 0%, 100%, .92);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--header-offset, 64px);
    z-index: 900
}

.service-chip {
    --chip-pad: .6rem .9rem;
    --chip-r: 12px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--chip-r);
    color: var(--text);
    display: inline-flex;
    font-size: .92rem;
    font-weight: 600;
    gap: .55rem;
    letter-spacing: .08em;
    padding: var(--chip-pad);
    text-transform: uppercase;
    transition: transform .15s ease, border-color .2s ease, background-color .2s ease, color .2s ease;
    white-space: nowrap
}

.service-chip img {
    height: 18px;
    object-fit: contain;
    width: 18px
}

.service-chip:hover {
    border-color: #cbd5e1;
    transform: translateY(-1px)
}

.service-chip.active,
.service-chip[aria-current=true] {
    background: #f6f0ff;
    border-color: rgba(178, 109, 255, .5);
    color: var(--brand)
}

.service-section {
    background: #fff;
    border-top: 1px solid var(--border-strong);
    margin-top: -50px;
    padding-block: clamp(2rem, 6vw, 5rem);
    position: relative;
    z-index: 2
}

.toc {
    display: grid;
    gap: 6px
}

.toc a {
    align-items: baseline;
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--text);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: .65rem .75rem;
    text-decoration: none
}

.toc a span {
    font-size: .88rem;
    opacity: .65;
    white-space: nowrap
}

.toc a:hover {
    background: #fafafa;
    border-color: var(--border)
}

.toc a.active,
.toc a[aria-current=true] {
    background: #f6f0ff;
    border-color: rgba(178, 109, 255, .4);
    color: var(--brand)
}

.placeholder {
    --line: linear-gradient(90deg, #eee 20%, #f8f8f8 40%, #eee 60%);
    animation: shimmer 2.2s linear infinite;
    background: var(--line);
    background-size: 220% 100%
}

@keyframes shimmer {
    0% {
        background-position-x: 0
    }

    to {
        background-position-x: -220%
    }
}

:root {
    --container-pad-x: clamp(16px, 4vw, 28px)
}

@media (max-width:768px) {
    body {
        -webkit-text-size-adjust: 100%
    }

    .btn {
        min-height: 44px
    }
}

@media (max-width:640px) {
    .service-section {
        scroll-margin-top: calc(var(--header-offset, 64px) + 72px)
    }
}

@media (max-width:480px) {
    .toc a {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px
    }

    .toc a span {
        white-space: normal
    }

    .btn {
        text-align: center;
        width: 100%
    }
}

.service-chip {
    border-radius: 12px;
    padding: .7rem 1rem
}

@media (hover:none) {
    .service-chip:active {
        transform: scale(.99)
    }
}

@media (max-width:860px) {
    .site-header {
        --header-h: 68px
    }

    .nav {
        display: grid;
        grid-template-columns: auto 1fr auto;
        min-height: var(--header-h);
        padding-bottom: max(10px, env(safe-area-inset-bottom));
        padding-top: max(10px, env(safe-area-inset-top))
    }

    .brand-logo,
    .nav {
        align-items: center
    }

    .brand-logo {
        display: inline-flex;
        line-height: 1
    }

    .brand-logo img {
        height: 36px
    }

    .menu-toggle {
        align-items: center;
        display: inline-flex;
        justify-content: center
    }

    .site-header.is-scrolled .nav {
        min-height: calc(var(--header-h) - 6px);
        padding-bottom: max(8px, env(safe-area-inset-bottom));
        padding-top: max(8px, env(safe-area-inset-top))
    }
}

#contact,
#portfolio,
#services,
#tarieven {
    scroll-margin-top: calc(var(--stack-top, var(--topbar-h)) + 92px)
}

.contact-section {
    background: #fff;
    border-top: 1px solid var(--border-strong);
    margin-top: -50px;
    padding-block: clamp(2rem, 6vw, 5rem);
    position: relative;
    z-index: 2;
  font-size: var(--body-fontsize);
}


.contact-label .section-label__title {
    background: #b26dff;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% auto;
    -webkit-text-fill-color: transparent;
    animation: neonShift 6s linear infinite
}

.contact-form .hp {
    height: 1px;
    left: -9999px;
    opacity: 0;
    position: absolute;
    width: 1px
}

.form-grid {
    display: grid;
    gap: clamp(14px, 2vw, 20px);
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.form-grid .full {
    grid-column: 1/-1
}

.form-field label {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: .45rem
}

.form-field input,
.form-field textarea {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font: inherit;
    outline: none;
    padding: .9rem 1rem;
    transition: border-color .2s ease, box-shadow .2s ease;
    width: 100%;
     font-size: var(--body-fontsize)
}

.form-field textarea {
    min-height: 160px;
    resize: vertical;
     font-size: var(--body-fontsize)
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(178, 109, 255, .7);
    box-shadow: 0 0 0 4px rgba(178, 109, 255, .12)
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #94a3b8
}

.form-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px
}

.error {
    color: #b91c1c;
    font-size: .9rem;
    margin: .35rem 0 0;
    min-height: 1.2em
}

@media (max-width:760px) {
    .form-grid {
        grid-template-columns: 1fr
    }
}

.modal {
    display: none;
    inset: 0;
    position: fixed;
    z-index: 1600
}

.modal.is-open {
    display: block
}

.modal__backdrop {
    backdrop-filter: saturate(140%) blur(6px);
    background: rgba(17, 24, 39, .48);
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease
}

.modal.is-open .modal__backdrop {
    opacity: 1
}

.modal__panel {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
    display: grid;
    grid-template-rows: auto 1fr auto;
    left: 50%;
    max-height: min(86vh, 860px);
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -48%) scale(.98);
    transition: transform .28s cubic-bezier(.2, .7, .2, 1), opacity .28s ease;
    width: min(92vw, 820px)
}

.modal.is-open .modal__panel {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1)
}

.modal__head {
    align-items: center;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 8px;
    justify-content: space-between;
    padding: 14px 16px
}

.modal__head h3 {
    color: var(--brand);
    font-family: var(--heading-font);
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    letter-spacing: .06em;
    margin: 0;
    text-transform: uppercase
}

.modal__close {
    appearance: none;
    background: #fff;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 26px;
    height: 40px;
    line-height: 1;
    width: 40px
}

.modal__close:hover {
    background: #f6f6f9
}

.modal__body {
    overflow: auto;
    padding: 14px 16px
}

.modal__content {
    display: grid;
    gap: .8rem
}

.modal__content h4 {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    margin: .2rem 0
}

.modal__content p {
    color: var(--text-muted);
    margin: 0
}

.modal__content ul {
    margin: .2rem 0 0 1.2rem
}

@media (max-width:760px) {
    .modal__panel {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        bottom: 0;
        left: 50%;
        max-height: 86vh;
        right: auto;
        top: auto;
        transform: translate(-50%, 6px);
        width: min(100vw, 720px)
    }

    .modal.is-open .modal__panel {
        transform: translate(-50%)
    }
}

.section-mission {
    background: #fff;
    border-top: 1px solid var(--border-strong);
    position: relative;
    z-index: 2
}

.mission-grid {
    align-items: start;
    display: grid;
    gap: clamp(24px, 4.5vw, 64px);
    grid-template-columns: 1.2fr 1fr
}

@media (max-width:900px) {
    .mission-grid {
        grid-template-columns: 1fr
    }
}

.mission-copy h3 {
    font-family: var(--heading-font);
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    letter-spacing: .02em;
    margin: 0 0 .6rem
}

.mission-copy p {
    color: var(--text);
    margin: 0 0 1rem
}

.mission-points {
    display: grid;
    gap: .5rem;
    list-style: none;
    margin: .6rem 0 1.4rem;
    padding: 0
}

.mission-points li {
    padding-left: 1.5rem;
    position: relative
}

.mission-points li:before {
    color: var(--brand);
    content: "\2713";
    font-weight: 700;
    left: 0;
    position: absolute;
    top: 0
}

.section-mission {
    padding: clamp(2rem, 6vw, 5rem) 0
}

.section-mission .mission-grid {
    align-items: center;
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    grid-template-columns: 1fr
}

@media (min-width:900px) {
    .section-mission .mission-grid {
        grid-template-columns: 1.2fr .8fr;
    }
}

.section-mission .mission-copy h3 {
    margin-bottom: 1rem
}

.section-mission .mission-copy p {
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: var(--body-fontsize)
}

.section-mission .mission-copy ul.mission-points {
    list-style: none;
    margin: 1rem 0;
    padding: 0
}

.section-mission .mission-copy ul.mission-points li {
    margin-bottom: .5rem;
     font-size: var(--body-fontsize)
}

.section-mission .mission-side figure {
    margin: 0
}

.section-mission .mission-side img {
    border-radius: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    display: block;
    height: auto;
    max-width: 100%;
    object-fit: cover
}

.section-label {
    align-items: end;
    display: grid;
    gap: clamp(12px, 3vw, 28px);
    grid-template-columns: 2fr minmax(127px, 41ch);
    margin-bottom;
    padding-bottom: clamp(10px, 1.6vw, 14px);
    position: relative
}

.section-label__title {
    background: #b26dff;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% auto;
    font-family: var(--heading-font);
    font-size: clamp(2rem, 6.2vw, 4.4rem);
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1;
    margin: 0;
    padding-top: clamp(2rem, 6vw, 5rem) 0;
    text-transform: uppercase;
    -webkit-text-fill-color: transparent
}

.section-label__sub {
    color: var(--text);
    font-size: var(--body-fontsize);
    line-height: 1.5;
    margin: 0 0 .15rem;
    opacity: .9;
    text-align: right
}

@media (max-width:820px) {
    .section-label {
        align-items: start;
        gap: 8px;
        grid-template-columns: 1fr
    }

    .section-label__sub {
        text-align: left
    }
}

.site-header .menu-toggle {
    color: #fff;
    transition: color .3s ease
}

.site-header.is-scrolled .menu-toggle {
    color: #000
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .9s cubic-bezier(.4, 0, .2, 1), transform .9s cubic-bezier(.4, 0, .2, 1);
    will-change: opacity, transform
}

.fade-in.is-visible {
    opacity: 1;
    transform: none
}

.fade-up {
    transform: translateY(32px)
}

.fade-right {
    transform: translateX(-32px)
}

.fade-left {
    transform: translateX(32px)
}

[data-stagger]>* {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease
}

[data-stagger].is-visible>* {
    opacity: 1;
    transform: none
}

[data-stagger].is-visible>:first-child {
    transition-delay: .1s
}

[data-stagger].is-visible>:nth-child(2) {
    transition-delay: .25s
}

[data-stagger].is-visible>:nth-child(3) {
    transition-delay: .4s
}

[data-stagger].is-visible>:nth-child(4) {
    transition-delay: .55s
}

@media (prefers-reduced-motion:no-preference) {

    .fade-in,
    .fade-left,
    .fade-right,
    .fade-up {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .9s cubic-bezier(.4, 0, .2, 1), transform .9s cubic-bezier(.4, 0, .2, 1);
        will-change: opacity, transform
    }

    .fade-left {
        transform: translateX(32px)
    }

    .fade-right {
        transform: translateX(-32px)
    }

    .fade-in.is-visible,
    .fade-left.is-visible,
    .fade-right.is-visible,
    .fade-up.is-visible {
        opacity: 1;
        transform: none
    }

    [data-stagger]>* {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1)
    }

    [data-stagger].is-visible>* {
        opacity: 1;
        transform: none
    }

    [data-stagger].is-visible>:first-child {
        transition-delay: .05s
    }

    [data-stagger].is-visible>:nth-child(2) {
        transition-delay: .18s
    }

    [data-stagger].is-visible>:nth-child(3) {
        transition-delay: .31s
    }

    [data-stagger].is-visible>:nth-child(4) {
        transition-delay: .44s
    }

    [data-stagger].is-visible>:nth-child(5) {
        transition-delay: .57s
    }

    [data-stagger].is-visible>:nth-child(6) {
        transition-delay: .7s
    }
}

@media (prefers-reduced-motion:reduce) {

    .fade-in,
    .fade-left,
    .fade-right,
    .fade-up,
    [data-stagger]>* {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important
    }
}

.contact-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    isolation: isolate;
    overflow: hidden;
    padding: 2rem;
    position: relative
}

.contact-card:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='4' stitchTiles='stitch' type='fractalNoise'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 160px;
    content: "";
    inset: 0;
    mix-blend-mode: multiply;
    opacity: .22;
    pointer-events: none;
    position: absolute;
    z-index: 0
}

.contact-card>* {
    position: relative;
    z-index: 1
}

.contact-form {
    display: grid;
    gap: 1rem
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--body-font);
    font-size: 1rem;
    padding: 1rem 1.1rem;
    width: 100%
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical
}

.contact-form button {
    align-self: start
}

.topbar.is-hidden {
    transform: translateY(-100%)
}

@media (max-width:768px) {
    :root {
        --topbar-h: 48px
    }
}

.site-header {
    top: calc(var(--stack-top) + env(safe-area-inset-top))
}

.whatsapp-float {
    align-items: center;
    background-color: #25d366;
    border-radius: 50%;
    bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    color: #fff;
    display: flex;
    font-size: 28px;
    height: 56px;
    justify-content: center;
    position: fixed;
    right: 20px;
    transition: transform .2s ease, box-shadow .2s ease;
    width: 56px;
    z-index: 1200
}

.whatsapp-float:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
    color: #fff;
    transform: scale(1.07)
}

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

    30% {
        transform: scale(1.2)
    }

    60% {
        transform: scale(.95)
    }

    to {
        transform: scale(1)
    }
}

.whatsapp-float {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(.98);
    transition: opacity .35s ease, transform .35s cubic-bezier(.22, .7, .26, 1)
}

.whatsapp-float.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1)
}

.whatsapp-float i {
    display: block
}

@media (prefers-reduced-motion:reduce) {
    .whatsapp-float {
        transform: none;
        transition: opacity .2s linear
    }

    .whatsapp-float.is-visible {
        transform: none
    }
}

/* Globaal: merk-kleur */
a:not(.btn){ color: #fff; text-decoration: none; }
a:not(.btn):hover{
  background-image: linear-gradient(90deg, rgba(178,109,255,.35), rgba(75,227,255,.35));
  background-size: 100% 2px; background-position: 0 100%; background-repeat: no-repeat;
}

/* Header specifiek: blijft wit boven de hero */
.site-header .nav-links a{ color:#fff; }
.site-header.is-scrolled .nav-links a{ color: var(--text); }
.portfolio-item img{ transform: scale(1.02); }
.portfolio-item:hover img{ transform: scale(1.06); }
@media (hover:none){
  .portfolio-item .overlay{ opacity: .95; }
}
.hero h1, .hero .lead{
  text-shadow: 0 2px 14px rgba(0,0,0,.18);
}
.site-header.is-scrolled .btn{ padding: .9em 1.8em; letter-spacing: .06em; }




/* === BIGGER CARDS, 3-UP ON DESKTOP === */
/* === 1) Eén globale container voor alles (menu, hero, secties) === */
/* Breder dan eerst zodat 3 grote kaarten passen, maar met veilige marge. */
:root{
  --container: clamp(320px, 92%, 1520px); /* was ±1240–1440 */
  --gutter: clamp(16px, 3vw, 32px);       /* veilige binnenmarge */
  --measure: 70ch;                         /* ideale tekstbreedte */
}

/* Zorg dat ALLE containers deze variabelen gebruiken */
.container{
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
  box-sizing: border-box;
}

/* Header/menu uitlijnen met container */
.site-header .container{
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* === 2) Hero: uitgelijnd met container, maar copy blijft leesbaar === */
.hero .container{
  display: grid;
  align-items: center;
}
.hero .hero-copy{
  max-width: var(--measure);   /* voorkomt te lange regels */
}

/* Als je hero twee kolommen gebruikt met een image/bubbles, houd spacing netjes */
@media (min-width: 1024px){
  .hero .container{
    grid-template-columns: 1.4fr 0.6fr;  /* tekst iets meer ruimte */
    column-gap: clamp(24px, 3vw, 48px);
  }
}

/* === 3) Kaarten groter houden, 3 naast elkaar op desktop === */
.service-card,
.price-card,
.contact-card{
  padding: clamp(2.2rem, 2.6vw, 3rem);
  border-radius: 22px;
  min-height: 560px;
}
.services-grid,
.pricing-grid{
  gap: clamp(2.2rem, 3vw, 3.2rem);
}
@media (min-width: 1024px){
  .services-grid,
  .pricing-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

/* XL: iets royaler zonder uitlijning te breken */
@media (min-width: 1400px){
  :root{ --container: clamp(20rem, 85%, 90rem); }
  .services-grid,
  .pricing-grid{ gap: clamp(2.6rem, 2.2vw, 3.6rem); }
  .service-card,
  .price-card,
  .contact-card{ min-height: 600px; }
}

/* Bugfix mocht hij nog staan */
.service-card{ border-radius: 22px; } /* overschrijft evt. '0x' */


/* === Hero text iets royaler === */
.hero .hero-copy{
  max-width: 85ch;          /* was ±70ch → geeft bredere regels */
}

@media (min-width: 1280px){
  .hero .hero-copy{
    max-width: 95ch;        /* op XL schermen mag hij nog royaler */
  }
}


/* Contact → alle body-tekst op --body-fontsize (headers uitgezonderd) */
.contact-section .contact-form label,
.contact-section .contact-form input,
.contact-section .contact-form select,
.contact-section .contact-form textarea,
.contact-section .contact-form .error,
.contact-section .form-status,
.contact-section .form-actions,
.contact-section .contact-card {
  font-size: var(--body-fontsize);
}

/* Ook placeholders dezelfde grootte geven */
.contact-section .contact-form ::placeholder {
  font-size: var(--body-fontsize);
}
/* basis: desktop/tablet */
.service-card { 
  min-height: clamp(260px, 36vh, 420px);
}

/* kleine phones */
@media (max-width: 420px) {
  .service-card { 
    min-height: clamp(220px, 32vh, 360px);
  }
}


.nav { padding: clamp(1rem, 2.2vw, 1.8rem) 0; }

.site-header.is-scrolled .nav {
  padding: clamp(.6rem, 1.4vw, 1rem) 0;
}

@media (max-width: 768px) {
  .nav { padding: .9rem 0; }
  .site-header.is-scrolled .nav { padding: .6rem 0; }
}
