:root {
    --font-body: "DM Sans", Arial, Helvetica, sans-serif;
    --font-heading: "DM Sans", Arial, Helvetica, sans-serif;
    --font-hero-button: "DM Sans", Arial, Helvetica, sans-serif;
    --font-kicker: Arial, Helvetica, sans-serif;
    --ink: #1A0A2E;
    --muted: #6B5F7A;
    --paper: #ffffff;
    --soft: #faf4f8;
    --violet: #412B6C;
    --plum: #5a317b;
    --pink: #ca3487;
    --rose: #ec5f95;
    --hot-rose: #f05b91;
    --map: #ee588b;
    --mapx: #42b6bd;
    --blush: #ffe5f0;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(67, 38, 108, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(18px, 3vw, 46px);
    min-height: 143px;
    padding: 0 clamp(28px, 4vw, 70px) 0 clamp(22px, 3vw, 34px);
    color: var(--violet);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(61, 37, 102, 0.08);
    backdrop-filter: blur(16px);
}

section[id] {
    scroll-margin-top: 84px;
}

#voorbeelden {
    scroll-margin-top: 0px;
}

.brand,
.nav {
    display: flex;
    align-items: center;
}

.brand {
    flex: 0 0 auto;
    margin-left: clamp(30px, 3.2vw, 54px);
}

.brand img {
    display: block;
    width: clamp(82px, 9vw, 112px);
    height: auto;
}

.nav {
    margin-left: clamp(16px, 2.5vw, 42px);
    gap: clamp(14px, 1.8vw, 28px);
    color: var(--violet);
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 500;
}

.nav a {
    padding: 11px 0;
    border-radius: 8px;
    transition: background 200ms ease, color 200ms ease;
}

.nav a:hover {
    color: #EF4C79;
}

.nav a.is-active {
    color: inherit;
    font-weight: inherit;
}

.nav a.is-active:hover {
    color: #EF4C79;
}

.nav a.nav-mapx:hover {
    color: var(--mapx);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-left: auto;
}

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 23px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    transition: transform 200ms ease, background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.header-button:hover {
    transform: translateY(-2px);
}

.header-button-ghost {
    border: 1.5px solid rgba(61, 37, 102, 0.25);
    color: #3D2566;
}

.header-button-ghost:hover {
    border-color: rgba(239, 76, 121, 0.45);
    color: #EF4C79;
}

.header-button-primary {
    background: #EF4C79;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(239, 76, 121, 0.25);
}

.header-button-primary:hover {
    background: #F7709A;
}

.header-button-subtle {
    background: var(--white);
    color: var(--violet);
    border: 1.5px solid rgba(61, 37, 102, 0.14);
    box-shadow: 0 2px 8px rgba(61, 37, 102, 0.06);
}

.header-button-subtle:hover {
    background: #f5f0fb;
    border-color: rgba(61, 37, 102, 0.22);
}

.header-button-subtle.is-active {
    background: #f0eaf8;
    border-color: rgba(61, 37, 102, 0.28);
    font-weight: 500;
}

.menu-button {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #3D2566;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 23px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.menu-button span:nth-child(2) {
    width: 17px;
}

.site-header.is-menu-open .menu-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .menu-button span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .menu-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero-scroll-container {
    position: relative;
    height: 100vh;
}

.hero {
    position: sticky;
    top: 0;
    z-index: 1;
    height: 100vh;
    min-height: unset;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    padding: 100px clamp(22px, 6vw, 82px) 100px;
    color: var(--white);
    background: linear-gradient(135deg, #3D2566 0%, #6B2D6B 40%, #EF4C79 100%);
    contain: paint;
    overflow: hidden;
    transform: translateZ(0);
}

.hero::before {
    content: "";
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.14) 0 2px, transparent 3px) 0 0 / 118px 92px;
    opacity: 0.16;
    transform: translate3d(0, 0, 0) rotate(0deg);
    transition: transform 980ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero::after {
    display: none;
}

.hero-kicker {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 2vw, 24px);
    justify-self: center;
    width: min(1080px, 100%);
    color: var(--white);
    font-family: var(--font-kicker);
    font-size: clamp(28px, 5vw, 72px);
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    filter: drop-shadow(0 0 48px rgba(160, 100, 255, 0.35));
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.hero-statement {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-align: center;
    text-transform: none;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(0, 58px, 0);
    transition: opacity 740ms cubic-bezier(0.22, 1, 0.36, 1), transform 980ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.hero-statement p {
    margin: 0;
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(44px, 6.4vw, 78px);
    font-weight: 500;
    line-height: 0.98;
}

.hero-statement > p:not(.hero-statement-sub) {
    opacity: 0;
    transform: translate3d(-70vw, 0, 0);
    filter: blur(12px);
    transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) 170ms, transform 980ms cubic-bezier(0.22, 1, 0.36, 1), filter 760ms cubic-bezier(0.22, 1, 0.36, 1) 120ms;
    will-change: opacity, transform, filter;
}

.hero-statement-sub {
    max-width: 600px;
    margin-top: 64px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(16px, 2vw, 18px) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    text-align: center;
    text-transform: none;
}

.hero-statement-sub span {
    display: block;
}

.hero-statement-sub span + span {
    margin-top: 10px;
}

.hero-statement-sub span:nth-child(3) {
    margin-top: 26px;
}

.hero-statement h2 {
    margin: 0;
    color: #EF4C79;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(58px, 7.3vw, 94px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: 0;
    text-shadow:
        0 0 20px rgba(239, 76, 121, 0.4),
        0 0 50px rgba(239, 76, 121, 0.2);
    opacity: 0;
    transform: translate3d(70vw, 0, 0);
    filter: blur(12px);
    transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) 170ms, transform 980ms cubic-bezier(0.22, 1, 0.36, 1), filter 760ms cubic-bezier(0.22, 1, 0.36, 1) 120ms;
    will-change: opacity, transform, filter;
}

.hero.is-revealed::before {
    transform: translate3d(0, 34px, 0) rotate(1.5deg);
}

.hero.is-revealed .hero-play {
    transform: translate3d(0, -18px, 0) rotate(-1.5deg);
}

.hero.is-revealed .hero-kicker {
    opacity: 0;
    transform: translate3d(0, -18px, 0) scale(0.985);
}

.hero.is-revealed .hero-statement {
    opacity: 1;
    transform: translate3d(0, 18px, 0);
}

.hero.is-revealed .hero-statement > p:not(.hero-statement-sub) {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

.hero.is-revealed .hero-statement h2 {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 72px;
    pointer-events: auto;
}

.button.hero-button {
    font-family: var(--font-hero-button);
    min-height: 50px;
    padding: 0 30px;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
    box-shadow: none;
    transition: transform 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94), background 200ms ease, border-color 200ms ease, color 200ms ease;
    overflow: hidden;
}

.button.hero-button:hover {
    transform: translateY(-4px);
}

.hero-button-primary {
    background: #FFFEFF;
    color: #3D2566;
}

.hero-button-primary:hover {
    color: #EF4C79;
}

.hero-button-arrow {
    position: relative;
    width: 12px;
    height: 3px;
    margin-left: 8px;
    border-radius: 999px;
    background: currentColor;
}

.hero-button-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1px;
    width: 7px;
    height: 7px;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center;
}

.hero-button-examples {
    border: 1.5px solid rgba(255, 254, 255, 0.42);
    background: rgba(255, 254, 255, 0.08);
    color: #FFFEFF;
}

.hero-button-examples:hover {
    border-color: rgba(255, 254, 255, 0.44);
    background: rgba(255, 254, 255, 0.24);
    color: #EF4C79;
}

.hero-kicker span {
    display: inline-block;
}

.hero-kicker i {
    width: clamp(8px, 1vw, 14px);
    height: clamp(8px, 1vw, 14px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
}

.hero-ribbon {
    display: none;
    position: absolute;
    top: 20px;
    left: 50%;
    z-index: 1;
    width: min(760px, calc(100% - 64px));
    height: 82px;
    color: rgba(255, 255, 255, 0.28);
    pointer-events: none;
    transform: translateX(-50%);
}

.hero-ribbon::before {
    content: "";
    position: absolute;
    inset: 24px 36px auto;
    height: 34px;
    border-top: 2px solid currentColor;
    border-radius: 50% 50% 0 0;
    transform: rotate(-1deg);
    animation: ribbon-breathe 8s ease-in-out infinite;
}

.hero-ribbon span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: ribbon-dot 7s ease-in-out infinite;
}

.hero-ribbon span:nth-child(1) {
    top: 30px;
    left: 6%;
}

.hero-ribbon span:nth-child(2) {
    top: 12px;
    left: 34%;
    animation-delay: -2.2s;
}

.hero-ribbon span:nth-child(3) {
    top: 16px;
    right: 31%;
    animation-delay: -4s;
}

.hero-ribbon span:nth-child(4) {
    top: 34px;
    right: 7%;
    animation-delay: -1.1s;
}

.hero-play {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    transform: translate3d(0, 0, 0) rotate(0deg);
    transition: transform 980ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero-play span {
    --icon-rot: 0deg;
    --cursor-x: 0px;
    --cursor-y: 0px;
    --float-x: 10px;
    --float-x-back: -10px;
    --float-y: -12px;
    --float-rot: 5deg;
    --float-time: 9s;
    position: absolute;
    display: block;
    color: rgba(255, 255, 255, 0.52);
    border: 2px solid currentColor;
    border-radius: 8px;
    animation: water-drift var(--float-time) ease-in-out infinite;
    transform: translate(0, 0) rotate(var(--icon-rot));
}

.hero-play svg {
    --icon-rot: 0deg;
    --cursor-x: 0px;
    --cursor-y: 0px;
    --float-x: 10px;
    --float-x-back: -10px;
    --float-y: -12px;
    --float-rot: 5deg;
    --float-time: 9s;
    position: absolute;
    display: block;
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, 0.52);
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: water-drift var(--float-time) ease-in-out infinite;
    transform: translate(0, 0) rotate(var(--icon-rot));
}

.hero-play span::before,
.hero-play span::after {
    content: "";
    position: absolute;
    display: block;
}

.icon-phone {
    top: 18%;
    left: 8%;
    --icon-rot: -10deg;
    --float-x: 11px;
    --float-x-back: -7px;
    --float-y: -8px;
    --float-rot: 4deg;
    --float-time: 8.8s;
    width: 34px;
    height: 58px;
    border-radius: 10px;
}

.icon-phone::before {
    inset: 3px;
    border: 2px solid currentColor;
    border-radius: 8px;
}

.icon-phone::after {
    display: none;
}

.icon-phone {
    background: none;
}

.icon-briefcase {
    top: 56%;
    left: 17%;
    --icon-rot: 7deg;
    --float-x: -8px;
    --float-x-back: 7px;
    --float-y: -11px;
    --float-rot: -5deg;
    --float-time: 10.5s;
    width: 58px;
    height: 38px;
    border-radius: 7px;
}

.icon-briefcase::before {
    top: -12px;
    left: 17px;
    width: 20px;
    height: 12px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 7px 7px 0 0;
}

.icon-briefcase::after {
    top: 15px;
    left: -2px;
    width: 58px;
    height: 2px;
    background: currentColor;
}

.icon-mic {
    top: 20%;
    right: 13%;
    --icon-rot: 12deg;
    --float-x: -10px;
    --float-x-back: 8px;
    --float-y: 9px;
    --float-rot: 6deg;
    --float-time: 9.6s;
    width: 30px;
    height: 42px;
    border-radius: 16px 16px 14px 14px;
}

.icon-mic::before {
    left: 50%;
    bottom: -20px;
    width: 34px;
    height: 28px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 18px 18px;
    transform: translateX(-50%);
}

.icon-mic::after {
    left: 50%;
    bottom: -28px;
    width: 30px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transform: translateX(-50%);
}

.icon-mic {
    background:
        linear-gradient(currentColor, currentColor) 50% calc(100% + 18px) / 2px 18px no-repeat,
        linear-gradient(currentColor, currentColor) 50% 11px / 14px 2px no-repeat,
        linear-gradient(currentColor, currentColor) 50% 19px / 14px 2px no-repeat,
        linear-gradient(currentColor, currentColor) 50% 27px / 14px 2px no-repeat;
}

.icon-keys {
    right: 25%;
    bottom: 27%;
    --icon-rot: -6deg;
    --float-x: 9px;
    --float-x-back: -8px;
    --float-y: 10px;
    --float-rot: -4deg;
    --float-time: 11.2s;
    width: 106px;
    height: 42px;
    border-radius: 4px;
    background:
        linear-gradient(90deg, currentColor 0 2px, transparent 2px 14px) 14px 0 / 14px 100% repeat-x,
        linear-gradient(currentColor, currentColor) 11px 0 / 8px 27px no-repeat,
        linear-gradient(currentColor, currentColor) 25px 0 / 8px 27px no-repeat,
        linear-gradient(currentColor, currentColor) 53px 0 / 8px 27px no-repeat,
        linear-gradient(currentColor, currentColor) 67px 0 / 8px 27px no-repeat,
        linear-gradient(currentColor, currentColor) 81px 0 / 8px 27px no-repeat;
}

.icon-keys::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
}

.icon-keys::after {
    right: -2px;
    bottom: -2px;
    width: 2px;
    height: 100%;
    background: currentColor;
}

.icon-prohibition {
    right: 8%;
    bottom: 18%;
    --icon-rot: 6deg;
    --float-x: -7px;
    --float-x-back: 9px;
    --float-y: -12px;
    --float-rot: 5deg;
    --float-time: 10s;
}

.icon-board {
    left: 37%;
    bottom: 12%;
    --icon-rot: 4deg;
    --float-x: 8px;
    --float-x-back: -7px;
    --float-y: -9px;
    --float-rot: -4deg;
    --float-time: 9.2s;
    width: 98px;
    height: 58px;
    border-width: 3px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    padding: 0 0 2px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    outline: 2px solid currentColor;
    outline-offset: 5px;
}

.icon-board::before {
    left: 50%;
    bottom: -28px;
    width: 3px;
    height: 28px;
    background: currentColor;
    transform: translateX(-50%);
}

.icon-board::after {
    left: 18px;
    bottom: -30px;
    width: 58px;
    height: 3px;
    border-radius: 99px;
    background: currentColor;
}

.icon-board sup {
    position: static;
    display: inline;
    font-size: 0.62em;
    line-height: 0;
}

@keyframes water-drift {
    0%,
    100% {
        transform: translate(var(--cursor-x), var(--cursor-y)) rotate(var(--icon-rot));
    }

    25% {
        transform: translate(calc(var(--cursor-x) + var(--float-x)), var(--cursor-y)) rotate(calc(var(--icon-rot) + var(--float-rot)));
    }

    55% {
        transform: translate(var(--cursor-x), calc(var(--cursor-y) + var(--float-y))) rotate(calc(var(--icon-rot) - var(--float-rot)));
    }

    78% {
        transform: translate(calc(var(--cursor-x) + var(--float-x-back)), calc(var(--cursor-y) + var(--float-y))) rotate(var(--icon-rot));
    }
}

@keyframes ribbon-breathe {
    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(7px) rotate(1deg);
    }
}

@keyframes ribbon-dot {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.55;
    }

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

@keyframes route-attention-bounce {
    0% {
        transform: translateY(0) scale(1);
    }

    45% {
        transform: translateY(-9px) scale(1.008);
    }

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

@media (prefers-reduced-motion: reduce) {
    .route-grid.is-visible .route,
    .route-button:hover,
    .route-button:hover::after,
    .hero::before,
    .hero-kicker,
    .hero-statement,
    .hero-statement > p:not(.hero-statement-sub),
    .hero-statement h2,
    .hero-play,
    .hero-play span,
    .hero-play svg,
    .hero-ribbon::before,
    .hero-ribbon span {
        animation: none;
        filter: none;
        transform: none;
        transition: none;
    }
}

.eyebrow,
.section-label {
    margin: 0 0 14px;
    color: var(--violet);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 400;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.primary {
    background: var(--violet);
    color: var(--white);
}

.button.secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.intro,
.features {
    padding: clamp(54px, 8vw, 96px) clamp(22px, 6vw, 82px);
}

.statement-reveal {
    overflow: hidden;
}

.statement {
    padding: clamp(86px, 12.6vw, 166px) clamp(22px, 6vw, 82px) clamp(48px, 7vw, 92px);
    background: var(--white);
    text-align: center;
    text-transform: uppercase;
}

.statement p {
    margin-bottom: 0;
    color: var(--violet);
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 600;
    line-height: 1;
}

.statement h2 {
    color: var(--hot-rose);
    font-size: clamp(48px, 6.1vw, 86px);
    font-weight: 500;
    line-height: 0.95;
}

.statement-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.statement .button.secondary {
    border-color: rgba(67, 38, 108, 0.2);
    background: var(--white);
    color: var(--violet);
}

.routes {
    padding: clamp(58px, 8vw, 108px) clamp(22px, 6vw, 82px);
    background:
        linear-gradient(180deg, var(--white) 0%, #fff8fb 100%);
}

.routes-header {
    max-width: 980px;
    margin: 0 auto clamp(38px, 6vw, 72px);
    text-align: center;
}

.routes-header h2 {
    margin-bottom: 18px;
    color: #3D2566;
}

.routes-header p {
    max-width: 900px;
    margin: 0 auto;
    color: rgba(61, 37, 102, 0.78);
    font-size: 20px;
    line-height: 1.6;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(26px, 5vw, 82px);
    max-width: 1220px;
    margin: 0 auto;
}

.route {
    position: relative;
    min-height: 520px;
    padding: clamp(34px, 4vw, 48px);
    color: var(--white);
    background: var(--map);
    border-top: 0;
    border-radius: 8px;
    clip-path: polygon(0 0, 96% 4%, 100% 86%, 92% 100%, 4% 96%, 0 10%);
    overflow: hidden;
}

.route-grid.is-visible .route {
    animation: route-attention-bounce 1050ms cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-iteration-count: 1;
}

.route-grid.is-visible .route:nth-child(2) {
    animation-delay: 160ms;
}

.route::before {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -86px;
    width: 260px;
    height: 260px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: -190px -330px 0 -104px rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.route-x {
    background: var(--mapx);
    clip-path: polygon(4% 0, 100% 0, 96% 92%, 82% 100%, 0 96%, 0 14%);
}

.route-x::before {
    right: auto;
    bottom: auto;
    top: -76px;
    left: -58px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 260px 330px 0 -112px rgba(255, 255, 255, 0.13);
}

.route-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.route-x .route-label {
    color: rgba(255, 255, 255, 0.78);
}

.route h3 {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin-bottom: 14px;
    color: var(--white);
    font-size: clamp(30px, 3.4vw, 48px);
    line-height: 1.02;
}

.route p {
    position: relative;
    z-index: 1;
    max-width: 570px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    line-height: 1.65;
}

.route ul {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 11px;
    margin: 24px 0 30px;
    padding: 0;
    list-style: none;
    color: var(--white);
    font-weight: 500;
    line-height: 1.45;
}

.route li {
    position: relative;
    padding-left: 24px;
}

.route li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
}

.route-x li::before {
    background: rgba(255, 255, 255, 0.86);
}

.route-button {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: var(--white);
    color: var(--violet);
    box-shadow: 0 14px 28px rgba(61, 37, 102, 0.16);
    transform-origin: center;
}

.route-button::after {
    content: "";
    position: absolute;
    inset: -35% -55%;
    background: linear-gradient(
        115deg,
        transparent 0 38%,
        rgba(255, 255, 255, 0.46) 48%,
        transparent 58% 100%
    );
    transform: translateX(-105%) rotate(8deg);
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.route .route-button:hover {
    background: var(--violet);
    color: var(--white);
    box-shadow: 0 18px 34px rgba(61, 37, 102, 0.26);
    transform: translateY(-4px);
}

.route-x .route-button:hover {
    background: var(--violet);
    color: var(--white);
}

.route-button:hover::after {
    transform: translateX(105%) rotate(8deg);
}

@media (prefers-reduced-motion: reduce) {
    .route-button:hover,
    .route-button:hover::after {
        animation: none;
        transform: none;
        transition: none;
    }
}

.examples {
    padding: 0 clamp(22px, 6vw, 82px) clamp(64px, 8vw, 110px);
    background: #f8f3f7;
    margin-top: clamp(72px, 10vw, 128px);
}

.examples-header {
    position: relative;
    display: block;
    margin: 0 calc(-1 * clamp(22px, 6vw, 82px)) clamp(56px, 7vw, 92px);
    padding: clamp(88px, 12vw, 136px) clamp(28px, 8vw, 120px);
    background: radial-gradient(ellipse 90% 130% at 50% 50%, #4a2d7a 0%, #2a1650 100%);
    border: none;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    overflow: hidden;
    max-width: none;
}

/* Zacht centrumlicht achter de tekst */
.examples-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

/* Gradient fade naar de sectie eronder */
.examples-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15));
    pointer-events: none;
}

.ex-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.ex-glow--teal {
    bottom: -110px;
    left: -90px;
    width: 380px;
    height: 380px;
    background: rgba(66, 182, 189, 0.58);
    filter: blur(80px);
    animation: ex-glow-teal 9s ease-in-out infinite alternate;
}

.ex-glow--pink {
    top: -90px;
    right: -90px;
    width: 320px;
    height: 320px;
    background: rgba(239, 76, 121, 0.52);
    filter: blur(80px);
    animation: ex-glow-pink 11s ease-in-out infinite alternate;
}

.ex-dot {
    position: absolute;
    left: var(--ex-x);
    top: var(--ex-y);
    width: var(--ex-size, 7px);
    height: var(--ex-size, 7px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    animation: ex-dot-float var(--ex-dur, 7s) ease-in-out var(--ex-delay, 0s) infinite alternate;
    pointer-events: none;
}

.ex-dot--teal {
    background: rgba(66, 182, 189, 0.7);
}

@keyframes ex-glow-teal {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, -22px) scale(1.08); }
}

@keyframes ex-glow-pink {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-22px, 28px) scale(1.1); }
}

@keyframes ex-dot-float {
    0%   { transform: translate(0, 0);       opacity: 0.55; }
    50%  { transform: translate(5px, -9px);  opacity: 0.9;  }
    100% { transform: translate(-3px, -15px); opacity: 0.65; }
}

@media (min-width: 861px) {
    .ex-glow--teal {
        width: 520px;
        height: 520px;
        bottom: -160px;
        left: -130px;
    }
    .ex-glow--pink {
        width: 420px;
        height: 420px;
        top: -130px;
        right: -130px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ex-glow,
    .ex-dot {
        animation: none;
    }
}

.examples-header h2 {
    position: relative;
    z-index: 1;
    max-width: none;
    margin: 0 0 clamp(12px, 1.5vw, 16px);
    color: #fff;
    font-size: clamp(52px, 8vw, 112px);
    font-weight: 200;
    line-height: 1;
}

.examples-header-sub {
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 300;
    line-height: 1.62;
}

/* Scroll-in animatie */
.examples-header.needs-animation h2 {
    opacity: 0;
    transform: translateY(14px);
}

.examples-header.needs-animation .examples-header-sub {
    opacity: 0;
    transform: none;
}

.examples-header.is-visible h2 {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.examples-header.is-visible .examples-header-sub {
    opacity: 1;
    transition: opacity 1.4s ease-out;
    transition-delay: 0.5s;
}

.video-row + .video-row {
    margin-top: clamp(46px, 7vw, 82px);
}

/* =====================
   Filmstrip
   (buiten = strips met perforaties boven/onder, binnen = achtergrond achter de video's)
   ===================== */

/* Filmstrip — binnenkant */
.video-row--personal .video-slider-button {
    top: 48%;
}

.video-row--personal .video-slider {
    padding: 90px clamp(22px, 6vw, 82px) 42px;
    margin-inline: calc(-1 * clamp(22px, 6vw, 82px));
    background: linear-gradient(to right, #c33f6d, #ee588b 50%, #c33f6d);
}

.video-row--personal .video-grid {
    background: transparent;
    scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
}

.video-row--personal .video-thumb {
    --video-thumb-outline-width: 3px;
    box-shadow: none;
}

.video-row--personal .video-card strong {
    color: #fff;
    font-size: clamp(13px, 1.1vw, 15px);
}

.video-row--personal .video-meta {
    color: #fff;
}


/* Filmstrip — buitenkant (strips met uitgespaarde perforaties boven en onder) */
.video-row--personal .video-slider::before,
.video-row--personal .video-slider::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 48px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='48'%3E%3Crect x='9' y='11' width='26' height='26' rx='3' ry='3' fill='%23f8f3f7'/%3E%3C/svg%3E");
    background-size: 44px 48px;
    background-repeat: repeat-x;
}

.video-row--personal .video-slider::before {
    top: 0;
}

.video-row--personal .video-slider::after {
    bottom: 0;
}

/* Filmstrip MAP-X */
.video-row--mapx .video-slider-button {
    top: 48%;
}

.video-row--mapx .video-slider {
    padding: 90px clamp(22px, 6vw, 82px) 42px;
    margin-inline: calc(-1 * clamp(22px, 6vw, 82px));
    background: linear-gradient(to right, #2a9199, var(--mapx) 50%, #2a9199);
}

.video-row--mapx .video-grid {
    background: transparent;
    scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
}

.video-row--mapx .video-thumb {
    --video-thumb-outline-width: 3px;
    box-shadow: none;
}

.video-row--mapx .video-card strong {
    color: #fff;
    font-size: clamp(13px, 1.1vw, 15px);
}

.video-row--mapx .video-meta {
    color: #fff;
}

.video-row--mapx .video-slider::before,
.video-row--mapx .video-slider::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 48px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='48'%3E%3Crect x='9' y='11' width='26' height='26' rx='3' ry='3' fill='%23f8f3f7'/%3E%3C/svg%3E");
    background-size: 44px 48px;
    background-repeat: repeat-x;
}

.video-row--mapx .video-slider::before {
    top: 0;
}

.video-row--mapx .video-slider::after {
    bottom: 0;
}

.video-row-header {
    max-width: 720px;
    margin-bottom: 24px;
}

.video-row-header h3 {
    margin-bottom: 8px;
    color: #3D2566;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 500;
}

.video-row-header p {
    margin: 0;
    color: rgba(61, 37, 102, 0.72);
    font-size: 18px;
    line-height: 1.55;
}

.video-slider {
    position: relative;
}

.video-grid {
    --video-gap: clamp(18px, 3vw, 34px);
    display: flex;
    gap: var(--video-gap);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 2px 18px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(61, 37, 102, 0.28) transparent;
}

.video-grid::-webkit-scrollbar {
    height: 8px;
}

.video-grid::-webkit-scrollbar-track {
    background: transparent;
}

.video-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(61, 37, 102, 0.24);
}

.video-grid-static {
    overflow: visible;
    padding-bottom: 0;
}

.video-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc((100% - var(--video-gap) * 2) / 3);
    gap: 12px;
    min-width: 0;
    color: #3D2566;
    scroll-snap-align: start;
    transition: transform 220ms ease, color 180ms ease;
}

.video-card:hover {
    color: #EF4C79;
    transform: translateY(-5px);
}

.video-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: #3D2566;
    box-shadow: 0 24px 70px rgba(61, 37, 102, 0.16);
}

.video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border: var(--video-thumb-outline-width, 0) solid #fff;
    border-radius: inherit;
    pointer-events: none;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease, opacity 220ms ease;
}

.video-card:hover .video-thumb img {
    opacity: 0.86;
    transform: scale(1.035);
}

.video-badge {
    position: absolute;
    z-index: 3;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #EF4C79;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(61, 37, 102, 0.2);
    animation: videoBadgePulse 1.8s ease-in-out infinite;
}

.video-badge::after {
    content: "";
    position: absolute;
    inset: -40% auto -40% -65%;
    width: 42%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
    transform: skewX(-18deg);
    animation: videoBadgeShine 2.6s ease-in-out infinite;
}

.video-play {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%);
    box-shadow: 0 12px 34px rgba(61, 37, 102, 0.22);
}

.video-play::after {
    content: "";
    position: absolute;
    left: 26px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #EF4C79;
}

@keyframes videoBadgePulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 12px 28px rgba(61, 37, 102, 0.2);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 16px 34px rgba(239, 76, 121, 0.34);
    }
}

@keyframes videoBadgeShine {
    0%,
    38% {
        left: -65%;
    }

    68%,
    100% {
        left: 125%;
    }
}

.video-meta {
    color: #EF4C79;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.video-card strong {
    color: #1A0A2E;
    font-size: clamp(14px, 1.3vw, 18px);
    font-weight: 600;
    line-height: 1.15;
}

.video-card:hover strong {
    color: #3A145F;
}

.video-card-placeholder {
    pointer-events: none;
}

.video-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.video-slider-button {
    position: absolute;
    top: 38%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(61, 37, 102, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #3D2566;
    box-shadow: 0 14px 36px rgba(61, 37, 102, 0.16);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 180ms ease, color 180ms ease, opacity 180ms ease;
}

.video-slider-button:hover {
    color: #EF4C79;
    transform: translateY(-50%) scale(1.06);
}

.video-slider-button:disabled {
    opacity: 0.35;
    cursor: default;
    transform: translateY(-50%);
}

.video-slider-button span {
    width: 12px;
    height: 12px;
    border-top: 3px solid currentColor;
    border-left: 3px solid currentColor;
}

.video-slider-prev {
    left: clamp(14px, 2.2vw, 28px);
}

.video-slider-prev span {
    transform: rotate(-45deg);
}

.video-slider-next {
    right: clamp(14px, 2.2vw, 28px);
}

.video-slider-next span {
    transform: rotate(135deg);
}

.intro {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
    gap: clamp(24px, 6vw, 78px);
    background: var(--white);
}

h2 {
    margin-bottom: 0;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: 0;
}

.intro h2::first-line {
    color: var(--violet);
}

.intro > p {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.65;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    background: var(--soft);
}

.features article {
    min-height: 260px;
    padding: 30px;
    border: 1px solid rgba(67, 38, 108, 0.1);
    border-radius: 8px;
    background: var(--white);
}

.feature-number {
    display: block;
    margin-bottom: 42px;
    color: var(--rose);
    font-weight: 600;
}

h3 {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 400;
}

.features p {
    color: var(--muted);
    line-height: 1.6;
}

.faq {
    padding: clamp(64px, 8vw, 108px) clamp(22px, 6vw, 82px);
    background: var(--white);
}

.faq-header {
    max-width: 980px;
    margin: 0 auto clamp(40px, 6vw, 64px);
    text-align: center;
}

.faq-header h2 {
    color: #3D2566;
    margin-bottom: 0;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(61, 37, 102, 0.1);
    border-radius: 8px;
}

.faq-item:first-of-type {
    border-top: 1px solid rgba(61, 37, 102, 0.1);
}

.faq-list:has(.faq-item[open]) .faq-item:not([open]) {
    background: rgba(61, 37, 102, 0.055);
}

.faq-list:has(.faq-item[open]) .faq-item[open] {
    background: var(--white);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 18px;
    cursor: pointer;
    list-style: none;
    color: #3D2566;
    font-size: clamp(16px, 1.4vw, 18px);
    font-weight: 500;
    line-height: 1.4;
    transition: color 180ms ease;
}

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

.faq-item summary:hover {
    color: #EF4C79;
}

.faq-item[open] > summary {
    color: #EF4C79;
}

.faq-chevron {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(61, 37, 102, 0.07);
    display: grid;
    place-items: center;
    transition: transform 240ms ease, background 180ms ease;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    background: rgba(239, 76, 121, 0.12);
}

.faq-chevron::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid #3D2566;
    border-bottom: 2px solid #3D2566;
    transform: rotate(45deg) translate(-1px, -2px);
    transition: border-color 180ms ease;
}

.faq-item[open] .faq-chevron::after,
.faq-item summary:hover .faq-chevron::after {
    border-color: #EF4C79;
}

.faq-item summary:hover .faq-chevron {
    background: rgba(239, 76, 121, 0.12);
}

.faq-body {
    margin: 0;
    padding: 0 18px 22px;
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.72;
}

.faq-body a {
    color: #EF4C79;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-body a:hover {
    color: #c33f6d;
}

.faq-cta {
    max-width: 820px;
    margin: clamp(28px, 4vw, 40px) auto 0;
    text-align: center;
}

.faq-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--violet);
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1.5px solid rgba(61, 37, 102, 0.25);
    padding-bottom: 2px;
    transition: color 180ms ease, border-color 180ms ease;
}

.faq-cta-link:hover {
    color: #EF4C79;
    border-color: rgba(239, 76, 121, 0.4);
}

.faq-page-content {
    padding-top: 0;
    background: transparent;
}

.faq-full {
    width: min(100% - 44px, 820px);
    margin: 0 auto;
    padding: clamp(48px, 7vw, 80px) 0 clamp(70px, 9vw, 112px);
}

.site-footer {
    position: relative;
    display: grid;
    grid-template-columns: minmax(150px, 0.4fr) minmax(560px, 1fr) minmax(190px, 0.4fr);
    gap: clamp(24px, 4vw, 54px);
    align-items: center;
    padding: clamp(34px, 4vw, 54px) clamp(22px, 6vw, 82px) 28px;
    color: var(--white);
    background: #0f0f10;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(239, 76, 121, 0.1);
    pointer-events: none;
}

.footer-brand,
.footer-contact,
.footer-bottom {
    position: relative;
    z-index: 1;
    transform: translateY(-14px);
}

.footer-brand img {
    display: block;
    width: clamp(92px, 8vw, 122px);
    height: auto;
}

.footer-brand {
    justify-self: start;
}

.footer-contact {
    justify-self: center;
    width: min(100%, 680px);
    text-align: center;
}

.footer-contact h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 500;
    line-height: 1.15;
}

.footer-contact dl {
    display: grid;
    grid-template-columns: max-content minmax(320px, max-content) max-content;
    justify-content: center;
    gap: clamp(24px, 3vw, 46px);
    margin: 0;
    text-align: left;
}

.footer-contact dl > div {
    min-width: max-content;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-contact dt {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-contact dd {
    margin: 0;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    white-space: nowrap;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: #EF4C79;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.55;
    text-align: left;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-weight: 400;
}

.footer-bottom p {
    margin: 0;
}

.legal-page {
    min-height: 100vh;
    padding-top: 143px;
    background: linear-gradient(180deg, #fff 0%, #fffbfd 100%);
}

.about-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 30%, rgba(90, 49, 123, 0.07) 0 13%, transparent 13.4%),
        linear-gradient(180deg, #fff 0%, #fffbfd 100%);
}

.legal-hero {
    padding: clamp(64px, 8vw, 104px) clamp(22px, 6vw, 82px) clamp(46px, 6vw, 72px);
    color: var(--white);
    background: linear-gradient(135deg, #3D2566 0%, #6B2D6B 48%, #EF4C79 100%);
}

.legal-hero .section-label {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.72);
}

.legal-hero h1 {
    max-width: 840px;
    margin: 0;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.96;
    letter-spacing: 0;
}

.legal-hero p:last-child {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}

.legal-content {
    width: min(100% - 44px, 900px);
    margin: 0 auto;
    padding: clamp(42px, 7vw, 78px) 0 clamp(70px, 9vw, 112px);
}

.legal-content article {
    padding: 28px 0;
    border-bottom: 1px solid rgba(61, 37, 102, 0.12);
}

.legal-content article:first-child {
    padding-top: 0;
}

.legal-content h2 {
    margin: 0 0 10px;
    color: #3D2566;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.12;
    letter-spacing: 0;
}

.legal-content p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.72;
}

.legal-content p + p {
    margin-top: 14px;
}

.legal-content ul,
.legal-content ol {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding-left: 24px;
    color: var(--muted);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.68;
}

.legal-content ol {
    padding-left: 28px;
}

.legal-content li + li {
    margin-top: 2px;
}

.legal-content li p {
    display: inline;
}

.legal-content li p + p {
    display: block;
    margin-top: 10px;
}

.legal-content a {
    color: #EF4C79;
    font-weight: 600;
}

.contact-page {
    overflow: hidden;
    background: #f8f3f7;
}

.contact-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(135deg, #3D2566 0%, #6B2D6B 45%, #EF4C79 100%);
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -6vw;
    z-index: -1;
    width: clamp(300px, 42vw, 600px);
    height: clamp(300px, 42vw, 600px);
    background: radial-gradient(circle, rgba(239, 76, 121, 0.22) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -8vw;
    z-index: -1;
    width: clamp(240px, 32vw, 480px);
    height: clamp(240px, 32vw, 480px);
    background: radial-gradient(circle, rgba(66, 182, 189, 0.18) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero-intro {
    max-width: 600px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 2vw, 19px);
    line-height: 1.65;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: clamp(28px, 4vw, 40px);
}

.contact-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--white);
    color: #3D2566;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.contact-hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.contact-hero-secondary {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    font-weight: 500;
    transition: color 200ms ease;
}

.contact-hero-secondary:hover {
    color: var(--white);
}

.contact-reach {
    max-width: 960px;
    margin: 0 auto;
}

.contact-reach-header {
    display: flex;
    justify-content: center;
    padding-bottom: clamp(28px, 4vw, 40px);
    border-bottom: 1px solid rgba(61, 37, 102, 0.12);
}

.contact-reach-header h2 {
    margin: 0;
    color: #3D2566;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 600;
    line-height: 1.1;
}

.contact-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 48px);
    padding-top: clamp(32px, 5vw, 48px);
}

.contact-link {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: clamp(20px, 2.6vw, 28px);
    border-left: 3px solid var(--map);
    transition: border-color 180ms ease;
}

.contact-link-email {
    border-left-color: var(--mapx);
}

.contact-link-type {
    color: rgba(61, 37, 102, 0.5);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-link-value {
    color: #3D2566;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 600;
    line-height: 1.15;
    overflow-wrap: anywhere;
    transition: color 180ms ease;
}

.contact-link-phone:hover .contact-link-value {
    color: var(--map);
}

.contact-link-email:hover .contact-link-value {
    color: #257C91;
}

.contact-content {
    width: min(100% - 44px, 1180px);
    margin: 0 auto;
    padding: clamp(48px, 7vw, 86px) 0 clamp(76px, 9vw, 116px);
}

.contact-panel {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(61, 37, 102, 0.1);
    border-left: 5px solid var(--map);
    border-right: 5px solid var(--mapx);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 22px 58px rgba(61, 37, 102, 0.1);
}

.contact-panel-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(18px, 3vw, 34px);
    padding-bottom: clamp(24px, 3vw, 34px);
    border-bottom: 1px solid rgba(61, 37, 102, 0.12);
}

.contact-panel-intro h2 {
    margin: 0;
    color: #3D2566;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    line-height: 1.08;
}

.contact-quote-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: #EF4C79;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(239, 76, 121, 0.25);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    transition: transform 200ms ease, background 200ms ease;
}

.contact-quote-button:hover {
    background: #F7709A;
    transform: translateY(-2px);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 34px);
    padding-top: clamp(24px, 3vw, 34px);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.6vw, 30px);
    align-items: stretch;
}

.contact-grid-simple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
    margin: 0 auto;
}

.contact-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 260px;
    padding: clamp(24px, 3.4vw, 38px);
    border: 1px solid rgba(61, 37, 102, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 48px rgba(61, 37, 102, 0.08);
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 8px 8px 0 0;
    background: rgba(61, 37, 102, 0.18);
}

.contact-card-primary {
    grid-column: span 2;
    color: var(--white);
    background: linear-gradient(135deg, #3D2566 0%, #5a317b 55%, #EF4C79 100%);
    box-shadow: 0 24px 64px rgba(61, 37, 102, 0.18);
}

.contact-card-primary::before,
.contact-card-map::before {
    background: var(--map);
}

.contact-card-mapx::before,
.contact-card-details::before {
    background: var(--mapx);
}

.contact-card-wide {
    grid-column: span 2;
}

.contact-card-details {
    grid-column: span 3;
    min-height: auto;
}

.contact-method {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    justify-content: space-between;
    padding: clamp(22px, 3vw, 30px);
    border-radius: 8px;
    background: rgba(248, 243, 247, 0.72);
}

.contact-method::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 8px 8px 0 0;
    background: rgba(61, 37, 102, 0.18);
}

.contact-method-phone::before {
    background: var(--map);
}

.contact-method-email::before {
    background: var(--mapx);
}

.contact-method h3 {
    margin: 0;
    color: #3D2566;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    line-height: 1.12;
}

.contact-method-link {
    margin-top: clamp(28px, 4vw, 48px);
    color: #3D2566;
    font-size: clamp(21px, 2.4vw, 28px);
    font-weight: 600;
    line-height: 1.12;
    overflow-wrap: anywhere;
    transition: color 180ms ease, transform 180ms ease;
}

.contact-method-phone .contact-method-link:hover {
    color: var(--map);
    transform: translateY(-2px);
}

.contact-method-email .contact-method-link:hover {
    color: #257C91;
    transform: translateY(-2px);
}

.contact-method-email .contact-method-link {
    font-size: clamp(19px, 1.8vw, 23px);
}

.contact-kicker {
    margin-bottom: 14px;
    color: rgba(61, 37, 102, 0.62);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-card-primary .contact-kicker {
    color: rgba(255, 255, 255, 0.72);
}

.contact-card h2 {
    margin: 0 0 12px;
    color: #3D2566;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    line-height: 1.12;
}

.contact-card-primary h2 {
    color: var(--white);
    font-size: clamp(30px, 4.4vw, 54px);
    line-height: 1;
}

.contact-card p {
    margin: 0;
    color: #5f526f;
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.62;
}

.contact-card-primary p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.84);
}

.contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: auto;
    padding-top: clamp(28px, 4vw, 42px);
}

.contact-actions .contact-link {
    display: grid;
    gap: 5px;
    min-width: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: color 180ms ease, transform 180ms ease;
}

.contact-actions .contact-link:hover {
    color: #c6fbff;
    transform: translateY(-2px);
}

.contact-actions .contact-link span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-actions .contact-link strong {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: clamp(17px, 1.8vw, 21px);
    font-weight: 600;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin: 8px 0 0;
    padding: 0;
    color: #5f526f;
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.55;
    list-style: none;
}

.contact-list li {
    position: relative;
    padding-left: 24px;
}

.contact-list li::before {
    content: "";
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--map);
    box-shadow: 0 0 0 4px rgba(239, 76, 121, 0.12);
}

.contact-list li:nth-child(3)::before {
    background: var(--mapx);
    box-shadow: 0 0 0 4px rgba(66, 182, 189, 0.14);
}

.contact-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-top: 1px solid rgba(61, 37, 102, 0.08);
    padding: clamp(160px, 20vw, 280px) 0;
}

.contact-form-inner {
    width: min(100% - 44px, 720px);
    margin: 0 auto;
}

.contact-form-intro {
    margin-bottom: clamp(32px, 4vw, 48px);
}

.contact-form-intro h2 {
    margin: 0 0 12px;
    color: #3D2566;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.1;
}

.contact-form-intro p {
    margin: 0;
    color: rgba(61, 37, 102, 0.65);
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.65;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.contact-form-field-full {
    grid-column: 1 / -1;
}

.contact-form-field label {
    color: #3D2566;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.contact-form-optional {
    color: rgba(61, 37, 102, 0.45);
    font-weight: 400;
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid rgba(61, 37, 102, 0.18);
    border-radius: 10px;
    background: #f8f3f7;
    color: #3D2566;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;
    transition: border-color 200ms ease, box-shadow 200ms ease;
    box-sizing: border-box;
    appearance: none;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
    color: rgba(61, 37, 102, 0.35);
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    outline: none;
    border-color: #EF4C79;
    box-shadow: 0 0 0 3px rgba(239, 76, 121, 0.12);
    background: #fff;
}

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

.contact-form-actions {
    grid-column: 1 / -1;
    display: flex;
}

.contact-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 32px;
    border: none;
    border-radius: 999px;
    background: #EF4C79;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 4px 18px rgba(239, 76, 121, 0.28);
    cursor: pointer;
    transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.contact-form-submit:hover {
    background: #F7709A;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(239, 76, 121, 0.34);
}

.map-content {
    width: min(100% - 44px, 1180px);
}

.map-content-grid {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 66px);
    align-items: start;
}

.map-content .map-side-panel {
    display: grid;
    gap: 0;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(61, 37, 102, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 48px rgba(67, 38, 108, 0.08);
}

.map-content .map-side-panel article,
.map-content .map-process-panel,
.map-content .map-cta {
    padding: 0;
    border-bottom: 0;
}

.map-content .map-side-panel article + article {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(61, 37, 102, 0.12);
}

.map-content .map-side-panel h2 {
    font-size: clamp(21px, 2vw, 26px);
}

.map-content .map-side-panel .map-voor-wie-item {
    color: var(--map);
    font-weight: 600;
}

.mapx-content .map-side-panel .map-voor-wie-item {
    color: var(--mapx);
    font-weight: 600;
}

.map-content .map-side-panel p,
.map-content .map-side-panel .legal-list {
    font-size: 16px;
    line-height: 1.62;
}

.map-content .map-process-panel h2 {
    margin-bottom: 22px;
}

.map-content .map-process-panel .process-list {
    gap: clamp(24px, 3vw, 42px);
    margin-top: 0;
    padding: 0;
}

.map-content .map-process-panel .process-list li {
    grid-template-rows: 178px auto;
}

.map-content .map-process-panel .process-icon {
    width: min(100%, 164px);
}

.map-content .map-process-panel .process-copy {
    text-align: center;
}

.map-content .map-process-panel .process-heading {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-height: 0;
    margin-bottom: 14px;
    text-align: left;
}

.map-content .map-process-panel .process-number {
    width: 34px;
    height: 34px;
    font-size: 18px;
}

.map-content .map-process-panel .process-copy p {
    padding-left: 0;
}

.map-content .map-cta {
    display: grid;
    grid-template-columns: minmax(0, max-content) minmax(260px, 1fr);
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 4vw, 46px);
    margin-top: clamp(36px, 6vw, 62px);
    padding: clamp(24px, 4vw, 34px) clamp(26px, 5vw, 54px);
    border-radius: 8px;
    background: linear-gradient(135deg, #EF4C79 0%, #C0366A 50%, #7B2560 100%);
    text-align: center;
}

.map-content .map-cta h2,
.map-content .map-cta p {
    margin: 0;
    color: var(--white);
}

.map-content .map-cta h2 {
    font-size: clamp(20px, 2.4vw, 26px);
}

.map-content .map-cta a {
    display: inline-block;
    color: var(--white);
    font-weight: 400;
    text-decoration-color: rgba(255, 255, 255, 0.48);
    text-underline-offset: 4px;
    transition: color 180ms ease, text-decoration-color 180ms ease, transform 180ms ease;
}

.map-content .map-cta a:hover {
    color: #EF4C79;
    text-decoration-color: #EF4C79;
    transform: translateY(-2px);
}

.mapx-hero {
    background: linear-gradient(135deg, #243f65 0%, #28788f 48%, #42B6BD 100%);
}

.mapx-content .map-side-panel {
    border-color: rgba(66, 182, 189, 0.24);
    box-shadow: 0 18px 48px rgba(37, 124, 145, 0.1);
}

.mapx-content .map-side-panel article + article {
    border-top-color: rgba(66, 182, 189, 0.2);
}

.mapx-content .map-process-panel h2,
.mapx-content .map-side-panel h2 {
    color: #3D2566;
}

.mapx-process-title {
    margin-top: 0;
}

.mapx-content .map-process-panel .process-list li:nth-child(2) .process-heading {
    align-items: center;
}

.mapx-content .process-number {
    background: linear-gradient(180deg, #42B6BD 0%, #257C91 100%);
    box-shadow: 0 10px 22px rgba(37, 124, 145, 0.2);
}

.mapx-content .mapx-process-note p {
    color: #257C91;
}

.mapx-content .map-cta {
    background: #257C91;
}

.mapx-content .map-cta a:hover {
    color: #c6fbff;
    text-decoration-color: #c6fbff;
}

.legal-content strong {
    color: #3D2566;
    font-weight: 600;
}

.legal-list {
    margin: 0;
    padding: 0;
    color: var(--muted);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.72;
    list-style: none;
}

.legal-list li {
    position: relative;
    padding-left: 24px;
}

.legal-list li + li {
    margin-top: 8px;
}

.legal-list li::before {
    content: "";
    position: absolute;
    top: 0.78em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #EF4C79;
}

.mapx-content .legal-list li::before {
    background: linear-gradient(180deg, #42B6BD 0%, #257C91 100%);
}

.pricing-content {
    width: min(100% - 44px, 1180px);
}

.pricing-intro {
    max-width: 840px;
    margin: 0 auto clamp(18px, 3vw, 30px);
    padding-left: clamp(18px, 2.6vw, 28px);
    border-left: 4px solid rgba(239, 76, 121, 0.24);
}

.pricing-intro p {
    color: #3D2566;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.6;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 34px);
    align-items: stretch;
}

.pricing-card-shell {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    isolation: isolate;
    --series-panel-width: 360px;
    --series-label-width: 50px;
    --series-tab-height: 220px;
    --series-strip-width: 25px;
}

.pricing-card-shell::after {
    content: "";
    position: absolute;
    z-index: 4;
    top: calc(10% + 28px);
    display: none;
    width: 12px;
    height: 12px;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
    pointer-events: none;
    opacity: 0;
}

.pricing-card-shell .pricing-card {
    position: relative;
    z-index: 3;
    flex: 1;
    min-height: 100%;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(26px, 4vw, 38px);
    border: 1px solid rgba(61, 37, 102, 0.12);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 48px rgba(67, 38, 108, 0.08);
}

.pricing-content .pricing-cards .pricing-card {
    padding: clamp(26px, 4vw, 38px) clamp(26px, 4vw, 38px) clamp(34px, 5vw, 50px);
    border-bottom: 0;
}

.pricing-card-map {
    border-top: 5px solid var(--map);
}

.pricing-card-mapx {
    border-top: 5px solid var(--mapx);
}

.pricing-card-header {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(61, 37, 102, 0.12);
}

.pricing-card .pricing-eyebrow {
    margin: 0 0 10px;
    color: #3D2566;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
}

.pricing-card h2 {
    margin-bottom: 8px;
    font-size: clamp(25px, 3vw, 34px);
}

.pricing-card .pricing-price {
    margin: 0;
    color: var(--ink);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    line-height: 1.2;
}

.pricing-card-header + p {
    display: flex;
    align-items: center;
    min-height: 6.35em;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(61, 37, 102, 0.12);
}

.pricing-card h3 {
    margin: 22px 0 12px;
    color: #3D2566;
    font-size: 18px;
    line-height: 1.2;
}

.pricing-list {
    margin-bottom: clamp(74px, 6vw, 96px);
    font-size: 16px;
    line-height: 1.55;
}

.pricing-card-mapx .pricing-list li::before {
    background: linear-gradient(180deg, #42B6BD 0%, #257C91 100%);
}

.pricing-card .pricing-note {
    position: relative;
    margin-top: auto;
    padding: clamp(34px, 4vw, 52px) 0 0 18px;
    color: #5f526f;
    font-size: 15px;
    line-height: 1.55;
}

.pricing-card:has(.pricing-note) {
    padding-bottom: clamp(26px, 4vw, 38px);
}

.pricing-card .pricing-note::before {
    content: "";
    position: absolute;
    top: calc(clamp(34px, 4vw, 52px) + 0.25em);
    bottom: 0.25em;
    left: 0;
    width: 3px;
    border-radius: 999px;
    background: rgba(61, 37, 102, 0.16);
}

.series-tab {
    position: absolute;
    z-index: 2;
    top: 5%;
    display: inline-grid;
    place-items: center;
    width: var(--series-label-width);
    min-height: 158px;
    padding: 16px 8px;
    border: 0;
    border-radius: 0 0 0 0;
    color: var(--white);
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 150;
    line-height: 1;
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), filter 180ms ease, box-shadow 180ms ease;
}

.series-tab span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.series-tab:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.92);
    outline-offset: 3px;
}

.series-panel {
    position: relative;
    z-index: 1;
    max-height: 0;
    margin-top: 0;
    padding: 0 24px;
    overflow: visible;
    visibility: hidden;
    border-radius: 8px 0 0 8px;
    color: var(--white);
    opacity: 0;
    transform: translateY(-10px);
    box-shadow: none;
    transition:
        max-height 300ms cubic-bezier(0.4, 0, 0.2, 1),
        opacity 280ms cubic-bezier(0.4, 0, 0.2, 1),
        padding 300ms cubic-bezier(0.4, 0, 0.2, 1),
        margin 300ms cubic-bezier(0.4, 0, 0.2, 1),
        filter 200ms ease;
}

.pricing-card-shell.is-series-open .series-panel {
  filter: none;
  transform: translateY(0);
}

.series-panel-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    box-shadow: 0 22px 52px rgba(67, 38, 108, 0.18);
    transition: transform 200ms ease, filter 200ms ease;
}

.series-panel-map {
    border-radius: 8px 0 0 0 !important;
    background: linear-gradient(145deg, #EF4C79 0%, #B72F75 100%);

}

.series-panel-mapx {
    border-radius: 0 8px 8px 0 !important;
    background: linear-gradient(145deg, #42B6BD 0%, #257C91 100%);
    
}

.series-panel-map .series-panel-content {
    background: transparent;
}

.series-panel-map .series-tab {
  border-radius: 8px 0 0 8px;
}

.series-panel-mapx .series-tab {
  border-radius: 0 8px 8px 0;
}

.series-panel-mapx .series-panel-content {
    background: transparent;
}

.pricing-card-shell.is-series-open .series-panel {
    max-height: 460px;
    margin-top: 14px;
    padding: 22px 24px 24px;
    opacity: 1;
    transform: translateY(0);
}

.series-panel h3,
.series-mobile-card h3 {
    margin: 0 0 10px;
    color: inherit;
    font-size: 22px;
    line-height: 1.1;
}

.series-panel p,
.series-mobile-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.55;
}

.series-panel ul,
.series-mobile-card ul {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex-grow: 1;
    margin: 16px 0;
    padding: 0;
    list-style: none;
}

.series-panel li,
.series-mobile-card li {
    padding: 7px 14px;
    font-size: 15px;
    line-height: 1.45;
    text-align: center;
    background: #ffffff;
    border-radius: 6px;
}

.series-panel-map li,
.series-mobile-card-map li {
    color: #ef4c79;
    font-weight: 600;
}

.series-panel-mapx li,
.series-mobile-card-mapx li {
    color: #42b6bd;
    font-weight: 600;
}

.series-panel li + li,
.series-mobile-card li + li {
    margin-top: 0;
}

.series-panel-map li::before,
.series-mobile-card-map li::before,
.series-panel-mapx li::before,
.series-mobile-card-mapx li::before {
    content: none;
}

.series-panel .series-panel-note,
.series-mobile-card p:last-child {
    margin-top: auto;
    padding-top: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.5;
}

.series-mobile {
    display: none;
}

@media (min-width: 1620px) {
    .pricing-card-shell::after {
        display: block;
    }

    .pricing-card-shell-map::after {
        left: calc(-1 * (var(--series-label-width) + 18px));
        color: var(--map);
        animation: series-arrow-left 10s ease-in-out infinite;
    }

    .pricing-card-shell-mapx::after {
        right: calc(-1 * (var(--series-label-width) + 18px));
        color: var(--mapx);
        animation: series-arrow-right 10s ease-in-out infinite;
    }

    .pricing-card-shell:hover::after,
    .pricing-card-shell.is-series-open::after,
    .pricing-card-shell.is-series-settling::after,
    .pricing-card-shell.is-series-hover-paused::after {
        animation: none;
        opacity: 0;
    }

    .series-panel {
        position: absolute;
        top: 10%;
        bottom: 10%;
        width: var(--series-panel-width);
        max-height: none;
        margin-top: 0;
        padding: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition:
            opacity 280ms cubic-bezier(0.4, 0, 0.2, 1),
            transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
            box-shadow 220ms ease;
    }

    .series-panel-map {
        left: calc(-1 * (var(--series-label-width) - 7px));
        transform: translateX(0);
        clip-path: polygon(
            0 0,
            var(--series-label-width) 0,
            var(--series-label-width) 100%,
            calc(var(--series-label-width) - var(--series-strip-width)) 100%,
            calc(var(--series-label-width) - var(--series-strip-width)) var(--series-tab-height),
            0 var(--series-tab-height)
        );
    }

    .series-panel-mapx {
        right: calc(-1 * (var(--series-label-width) - 7px));
        transform: translateX(0);
        clip-path: polygon(
            calc(100% - var(--series-label-width)) 0,
            100% 0,
            100% var(--series-tab-height),
            calc(100% - var(--series-label-width) + var(--series-strip-width)) var(--series-tab-height),
            calc(100% - var(--series-label-width) + var(--series-strip-width)) 100%,
            calc(100% - var(--series-label-width)) 100%
        );
    }

    .pricing-card-shell-map:not(.is-series-open):not(.is-series-settling):not(.is-series-hover-paused) .series-panel-map:hover {
        filter: brightness(1.07);
        transform: translateX(-7px);
    }

    .pricing-card-shell-mapx:not(.is-series-open):not(.is-series-settling):not(.is-series-hover-paused) .series-panel-mapx:hover {
        filter: brightness(1.07);
        transform: translateX(7px);
    }

    .pricing-card-shell.is-series-settling .series-panel {
        filter: none;
    }

    .series-tab {
        top: 5%;
        min-height: 158px;
        opacity: 1;
        transition:
            background 180ms ease;
    }

    .series-tab-map {
        left: 0;
    }

    .series-tab-mapx {
        right: 0;
    }

    .series-panel-content {
        box-sizing: border-box;
        height: 100%;
        opacity: 0;
        box-shadow: none;
        transform: translateY(-4px);
        transition:
            opacity 220ms cubic-bezier(0.4, 0, 0.2, 1),
            transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .series-panel-map .series-panel-content {
        width: calc(100% - var(--series-label-width));
        margin-left: var(--series-label-width);
        padding: 22px 34px 24px 30px;
        border-radius: 0 8px 8px 0;
    }

    .series-panel-mapx .series-panel-content {
        width: calc(100% - var(--series-label-width));
        margin-right: var(--series-label-width);
        padding: 22px 30px 24px 34px;
        border-radius: 8px 0 0 8px;
    }

    .pricing-card-shell.is-series-open .series-panel {
        max-height: none;
        margin-top: 0;
        padding: 0;
        opacity: 1;
        box-shadow: 0 22px 52px rgba(67, 38, 108, 0.18);
    }

    .pricing-card-shell-map.is-series-open .series-panel-map {
        transform: translateX(calc(-1 * (var(--series-panel-width) - var(--series-label-width) + 7px)));
        clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            calc(var(--series-label-width) - var(--series-strip-width)) 100%,
            calc(var(--series-label-width) - var(--series-strip-width)) var(--series-tab-height),
            0 var(--series-tab-height)
        );
    }

    .pricing-card-shell-map.is-series-closing .series-panel-map {
        clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            calc(var(--series-label-width) - var(--series-strip-width)) 100%,
            calc(var(--series-label-width) - var(--series-strip-width)) var(--series-tab-height),
            0 var(--series-tab-height)
        );
    }

    .pricing-card-shell-mapx.is-series-open .series-panel-mapx {
        transform: translateX(calc(var(--series-panel-width) - var(--series-label-width) + 7px));
        clip-path: polygon(
            0 0,
            100% 0,
            100% var(--series-tab-height),
            calc(100% - var(--series-label-width) + var(--series-strip-width)) var(--series-tab-height),
            calc(100% - var(--series-label-width) + var(--series-strip-width)) 100%,
            0 100%
        );
    }

    .pricing-card-shell-mapx.is-series-closing .series-panel-mapx {
        clip-path: polygon(
            0 0,
            100% 0,
            100% var(--series-tab-height),
            calc(100% - var(--series-label-width) + var(--series-strip-width)) var(--series-tab-height),
            calc(100% - var(--series-label-width) + var(--series-strip-width)) 100%,
            0 100%
        );
    }

    .pricing-card-shell.is-series-open .series-panel-content {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes series-arrow-left {
    0%, 8%, 16%, 24%, 100% {
        opacity: 0;
        transform: translateX(0) rotate(225deg);
    }

    2%, 10%, 18% {
        opacity: 0.62;
        transform: translateX(0) rotate(225deg);
    }

    4%, 12%, 20% {
        opacity: 0.9;
        transform: translateX(-8px) rotate(225deg);
    }

    6%, 14%, 22% {
        opacity: 0;
        transform: translateX(-14px) rotate(225deg);
    }
}

@keyframes series-arrow-right {
    0%, 8%, 16%, 24%, 100% {
        opacity: 0;
        transform: translateX(0) rotate(45deg);
    }

    2%, 10%, 18% {
        opacity: 0.62;
        transform: translateX(0) rotate(45deg);
    }

    4%, 12%, 20% {
        opacity: 0.9;
        transform: translateX(8px) rotate(45deg);
    }

    6%, 14%, 22% {
        opacity: 0;
        transform: translateX(14px) rotate(45deg);
    }
}

@media (max-width: 1619px) {
    .series-tab,
    .series-panel {
        display: none;
    }

    .series-mobile {
        display: block;
        margin-top: 22px;
        border: 1px solid rgba(61, 37, 102, 0.12);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.86);
        box-shadow: 0 18px 48px rgba(67, 38, 108, 0.07);
        overflow: hidden;
    }

    .series-mobile summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 22px 20px;
        color: #3D2566;
        cursor: pointer;
        font-size: 22px;
        font-weight: 600;
        line-height: 1.12;
        list-style: none;
    }

    .series-mobile summary::-webkit-details-marker {
        display: none;
    }

    .series-mobile summary::after {
        content: "+";
        display: inline-grid;
        flex: 0 0 auto;
        place-items: center;
        width: 34px;
        height: 34px;
        border: 1px solid rgba(61, 37, 102, 0.16);
        border-radius: 999px;
        color: #3D2566;
        font-size: 24px;
        font-weight: 400;
        line-height: 1;
    }

    .series-mobile[open] summary::after {
        content: "-";
        background: #3D2566;
        color: var(--white);
    }

    .series-mobile-grid {
        display: grid;
        gap: 18px;
        padding: 12px 20px 30px;
    }

    .series-mobile-card {
        padding: 26px 20px 24px;
        border-radius: 8px;
        color: var(--white);
        box-shadow: 0 14px 32px rgba(67, 38, 108, 0.13);
    }

    .legal-content .series-mobile-card {
        padding: 26px 20px 24px;
        border-bottom: 0;
    }

    .legal-content .series-mobile-card-map {
        padding-top: 36px;
    }

    .series-mobile-card-map {
        background: linear-gradient(145deg, #EF4C79 0%, #B72F75 100%);
    }

    .series-mobile-card-mapx {
        background: linear-gradient(145deg, #42B6BD 0%, #257C91 100%);
    }
}

.pricing-options {
    margin-top: clamp(28px, 4vw, 44px);
    scroll-margin-top: 112px;
    border: 1px solid rgba(61, 37, 102, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 48px rgba(67, 38, 108, 0.07);
    overflow: hidden;
}

.pricing-options summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: clamp(22px, 3vw, 30px) clamp(22px, 4vw, 34px);
    color: #3D2566;
    cursor: pointer;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    line-height: 1.12;
    list-style: none;
}

.pricing-options summary::-webkit-details-marker {
    display: none;
}

.pricing-options summary::after {
    content: "+";
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(61, 37, 102, 0.16);
    border-radius: 999px;
    color: #3D2566;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    transition: transform 250ms ease, background 180ms ease, color 180ms ease;
}

.pricing-options.is-open summary::after {
    content: "-";
    background: #3D2566;
    color: var(--white);
    transform: rotate(180deg);
}

.pricing-options-inner {
    max-height: 0;
    padding: 0 clamp(22px, 4vw, 34px);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition:
        max-height 300ms ease-in-out,
        opacity 250ms ease-in-out,
        transform 300ms ease-in-out,
        padding-bottom 300ms ease-in-out;
}

.pricing-options.is-open .pricing-options-inner {
    max-height: 2600px;
    padding-bottom: clamp(26px, 4vw, 36px);
    opacity: 1;
    transform: translateY(0);
}

.pricing-options-copy {
    max-width: 860px;
    margin-bottom: 26px;
    padding-left: 16px;
    border-left: 3px solid rgba(61, 37, 102, 0.16);
    color: #3D2566;
}

.pricing-options-grid {
    display: grid;
    grid-template-columns: minmax(180px, 1.1fr) minmax(340px, 2.7fr) minmax(92px, 0.55fr) minmax(92px, 0.55fr);
    border-top: 1px solid rgba(61, 37, 102, 0.14);
}

.pricing-options-row {
    display: contents;
}

.pricing-options-row > div {
    padding: 18px 14px 18px 0;
    border-bottom: 1px solid rgba(61, 37, 102, 0.09);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.65;
}

.pricing-options-row > div:nth-child(3),
.pricing-options-row > div:nth-child(4) {
    padding-right: 0;
    text-align: right;
    white-space: nowrap;
}

.pricing-options-head > div {
    color: #3D2566;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.pricing-options-note {
    max-width: 880px;
    margin: 26px 0 0;
    padding-left: 16px;
    border-left: 3px solid rgba(61, 37, 102, 0.16);
    color: #3D2566;
}

.pricing-footer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: clamp(24px, 3vw, 34px);
    text-align: center;
}

.pricing-footer-cta p {
    margin: 0;
    color: #3D2566;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.45;
}

.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 0;
    padding: 0 24px;
    border-radius: 999px;
    background: #3D2566;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    transition: transform 180ms ease, background 180ms ease;
}

.legal-content .pricing-cta {
    color: var(--white);
}

.pricing-cta:hover {
    background: #EF4C79;
    color: var(--white);
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    .pricing-card-shell::after,
    .pricing-options-inner,
    .pricing-options summary::after,
    .series-tab,
    .series-panel,
    .series-panel-content,
    .pricing-options-row {
        transition: none;
        animation: none;
    }
}

.process-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(32px, 5vw, 78px);
    margin: 34px 0 34px;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-rows: 206px auto;
    min-width: 0;
}

.process-icon {
    display: block;
    align-self: end;
    width: min(100%, 188px);
    height: auto;
    margin: 0 auto;
}

.process-copy {
    margin-top: 30px;
}

.process-heading {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    min-height: 42px;
    margin-bottom: 14px;
}

.process-number {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f05791 0%, #e43278 100%);
    color: var(--white);
    box-shadow: 0 10px 22px rgba(239, 76, 121, 0.2);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.process-heading h3 {
    margin: 0;
    color: #3D2566;
    font-size: clamp(21px, 2.1vw, 26px);
    font-weight: 600;
    line-height: 1.2;
}

.process-copy p {
    margin: 0;
    color: #342845;
    font-size: clamp(16px, 1.7vw, 18px);
    line-height: 1.62;
}

.process-copy p + p {
    margin-top: 4px;
}

.process-note {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    gap: clamp(22px, 4vw, 44px);
    margin: 42px auto 0;
    padding: clamp(22px, 3vw, 32px) clamp(28px, 5vw, 58px);
    border-radius: 8px;
    background: transparent;
}

.process-note-icon {
    display: block;
    width: 88px;
    height: auto;
}

.process-note p {
    margin: 0;
    color: #EF4C79;
    font-size: clamp(15px, 1.45vw, 17px);
    font-style: italic;
    line-height: 1.55;
}

.about-intro {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    gap: clamp(28px, 5vw, 54px);
    align-items: center;
}

.about-intro::before,
.about-intro::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.about-intro::before {
    top: 34px;
    right: max(-13vw, -160px);
    width: clamp(170px, 21vw, 290px);
    height: clamp(150px, 19vw, 250px);
    background: linear-gradient(145deg, rgba(65, 43, 108, 0.42), rgba(111, 45, 108, 0.24));
    clip-path: polygon(10% 0, 78% 8%, 100% 36%, 84% 100%, 16% 84%, 0 28%);
    opacity: 0.32;
}

.about-intro::after {
    right: max(-9vw, -110px);
    bottom: 42px;
    width: clamp(92px, 11vw, 150px);
    height: clamp(72px, 9vw, 120px);
    background: rgba(65, 43, 108, 0.24);
    clip-path: polygon(0 22%, 74% 0, 100% 44%, 80% 100%, 14% 86%);
    opacity: 0.5;
}

.about-content {
    position: relative;
    isolation: isolate;
}

.about-content::before,
.about-content::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.about-content::before {
    top: 58%;
    right: max(-18vw, -210px);
    width: clamp(210px, 26vw, 340px);
    height: clamp(190px, 23vw, 300px);
    background: linear-gradient(135deg, rgba(90, 49, 123, 0.24), rgba(239, 76, 121, 0.12));
    clip-path: polygon(11% 0, 86% 8%, 100% 48%, 74% 100%, 0 82%, 6% 21%);
    opacity: 0.55;
}

.about-content::after {
    top: 78%;
    left: max(-15vw, -190px);
    width: clamp(170px, 22vw, 290px);
    height: clamp(150px, 18vw, 230px);
    background: linear-gradient(135deg, rgba(90, 49, 123, 0.32), rgba(239, 76, 121, 0.18));
    clip-path: polygon(16% 0, 88% 8%, 100% 47%, 78% 100%, 6% 86%, 0 22%);
    opacity: 0.34;
}

.about-content article {
    position: relative;
}

.profile-photo {
    position: relative;
    margin: 0;
    padding: 0;
    border-radius: 8px;
    background: transparent;
    border: 0;
}

.profile-photo::before {
    content: "";
    position: absolute;
    inset: -24px -28px 22px 22px;
    z-index: 0;
    background: linear-gradient(150deg, #412B6C 0%, #5a317b 58%, #EF4C79 100%);
    clip-path: polygon(10% 0, 88% 5%, 100% 33%, 91% 88%, 67% 100%, 0 92%, 6% 16%);
    opacity: 0.96;
}

.profile-photo img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    background: #fbf9fb;
    box-shadow: 0 18px 48px rgba(67, 38, 108, 0.16);
}

.legal-content .about-highlight {
    margin: clamp(26px, 4.8vw, 44px) 0;
    padding: clamp(30px, 3.7vw, 40px) clamp(26px, 4.8vw, 54px) clamp(28px, 3.2vw, 36px);
    border-bottom: 0;
    background: linear-gradient(135deg, #5b2b72 0%, #8a327d 54%, #c33b86 100%);
    clip-path: polygon(2% 4%, 91% 0, 100% 26%, 96% 86%, 82% 100%, 0 92%);
    box-shadow: 0 20px 48px rgba(126, 48, 120, 0.2);
}

.legal-content .about-highlight h2,
.legal-content .about-highlight p {
    color: var(--white);
}

.legal-content .about-highlight p {
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(15px, 1.55vw, 17px);
    font-weight: 400;
    line-height: 1.56;
}

.legal-content .about-highlight p span {
    color: #ff5f95;
    font-weight: 400;
}

.legal-content .about-vision {
    margin-top: clamp(22px, 4vw, 40px);
    padding: clamp(34px, 5vw, 54px) clamp(28px, 5vw, 58px) clamp(56px, 7vw, 84px);
    border: 0;
    background: linear-gradient(145deg, #2f1b53 0%, #412B6C 48%, #5a317b 100%);
    clip-path: polygon(0 4%, 96% 0, 100% 14%, 96% 100%, 7% 98%, 0 92%);
    box-shadow: 0 22px 54px rgba(65, 43, 108, 0.18);
}

.legal-content .about-vision h2 {
    color: var(--white);
}

.legal-content .about-vision p {
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(15px, 1.55vw, 17px);
    font-weight: 400;
    line-height: 1.56;
}

@media (max-width: 1180px) {
    .site-header {
        min-height: 118px;
    }

    .header-button {
        display: none;
    }

    .site-footer,
    .footer-contact,
    .footer-bottom {
        text-align: center;
    }

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

    .footer-brand,
    .footer-contact,
    .footer-bottom {
        justify-self: center;
    }

    .footer-contact dl {
        max-width: 680px;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .footer-bottom {
        align-items: center;
    }
}

@media (max-width: 860px) {
    .site-header {
        position: sticky;
        align-items: center;
        min-height: 118px;
    }

    .nav {
        display: none;
    }

    .site-header.is-menu-open .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 8px clamp(22px, 6vw, 34px) 18px;
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid rgba(61, 37, 102, 0.08);
        border-bottom: 1px solid rgba(61, 37, 102, 0.08);
        box-shadow: 0 18px 38px rgba(61, 37, 102, 0.12);
    }

    .site-header.is-menu-open .nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(61, 37, 102, 0.08);
    }

    .site-header.is-menu-open .nav a:last-child {
        border-bottom: 0;
    }

    .header-actions {
        gap: 8px;
    }

    .header-button {
        display: none;
    }

    .menu-button {
        display: inline-flex;
    }

    .legal-page {
        padding-top: 0;
    }

    .routes-header,
    .route-grid,
    .examples-header,
    .site-footer,
    .intro,
    .features {
        grid-template-columns: 1fr;
    }

    .hero {
        height: calc(100vh - 118px);
        height: calc(100svh - 118px);
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero-scroll-container {
        height: calc(100vh - 118px);
        height: calc(100svh - 118px);
    }

    .features article {
        min-height: auto;
    }

    .route {
        padding-top: 30px;
    }

    .video-card {
        flex-basis: calc((100% - var(--video-gap)) / 2);
    }

    .examples-header {
        gap: 18px;
        padding: 32px 26px;
        margin-bottom: 46px;
    }

    .examples-header::after {
        display: none;
    }

    .examples-header .section-label {
        margin-bottom: -8px;
    }

    .site-footer,
    .footer-contact,
    .footer-bottom {
        text-align: center;
    }

    .footer-brand,
    .footer-contact,
    .footer-bottom {
        justify-self: center;
    }

    .footer-bottom {
        align-items: center;
    }

    .footer-contact dl {
        max-width: 620px;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-content::before {
        top: clamp(360px, 72vw, 520px);
        right: max(-28vw, -150px);
        opacity: 0.1;
    }

    .about-content::after {
        opacity: 0.08;
    }

    .map-content-grid {
        grid-template-columns: 1fr;
    }

    .map-content .map-cta {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: clamp(48px, 7vw, 72px) 0;
    }

    .contact-reach-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .contact-panel-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-actions {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: auto;
    }

    .contact-card-primary,
    .contact-card-wide,
    .contact-card-details {
        grid-column: auto;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .series-tab,
    .series-panel {
        display: none;
    }

    .series-mobile {
        display: block;
        margin-top: 22px;
        border: 1px solid rgba(61, 37, 102, 0.12);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.86);
        box-shadow: 0 18px 48px rgba(67, 38, 108, 0.07);
        overflow: hidden;
    }

    .series-mobile summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 22px 20px;
        color: #3D2566;
        cursor: pointer;
        font-size: 22px;
        font-weight: 600;
        line-height: 1.12;
        list-style: none;
    }

    .series-mobile summary::-webkit-details-marker {
        display: none;
    }

    .series-mobile summary::after {
        content: "+";
        display: inline-grid;
        flex: 0 0 auto;
        place-items: center;
        width: 34px;
        height: 34px;
        border: 1px solid rgba(61, 37, 102, 0.16);
        border-radius: 999px;
        color: #3D2566;
        font-size: 24px;
        font-weight: 400;
        line-height: 1;
    }

    .series-mobile[open] summary::after {
        content: "-";
        background: #3D2566;
        color: var(--white);
    }

    .series-mobile-grid {
        display: grid;
        gap: 18px;
        padding: 12px 20px 30px;
    }

    .series-mobile-card {
        padding: 26px 20px 24px;
        border-radius: 8px;
        color: var(--white);
        box-shadow: 0 14px 32px rgba(67, 38, 108, 0.13);
    }

    .legal-content .series-mobile-card {
        padding: 26px 20px 24px;
        border-bottom: 0;
    }

    .legal-content .series-mobile-card-map {
        padding-top: 36px;
    }

    .series-mobile-card-map {
        background: linear-gradient(145deg, #EF4C79 0%, #B72F75 100%);
    }

    .series-mobile-card-mapx {
        background: linear-gradient(145deg, #42B6BD 0%, #257C91 100%);
    }

    .pricing-card-header + p {
        display: block;
        min-height: 0;
        padding-bottom: 22px;
    }

    .pricing-options-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        border-top: 0;
    }

    .pricing-options-row {
        display: block;
        padding: 18px;
        border: 1px solid rgba(61, 37, 102, 0.1);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.78);
        opacity: 0;
        transform: translateY(-6px);
        transition:
            opacity 250ms ease-in-out,
            transform 300ms ease-in-out;
    }

    .pricing-options.is-open .pricing-options-row {
        opacity: 1;
        transform: translateY(0);
    }

    .pricing-options-head {
        display: none;
    }

    .pricing-options-row > div {
        display: block;
        padding: 0;
        border-bottom: 0;
    }

    .pricing-options-row > div::before {
        content: none;
    }

    .pricing-options-row > div:first-child {
        color: #3D2566;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.35;
    }

    .pricing-options-row > div:nth-child(2) {
        margin-top: 8px;
        color: var(--muted);
    }

    .pricing-options-row > div:nth-child(3),
    .pricing-options-row > div:nth-child(4) {
        display: inline-block;
        margin-top: 12px;
        margin-right: 8px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(61, 37, 102, 0.06);
        color: #3D2566;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.25;
    }

    .pricing-options-row > div:nth-child(3),
    .pricing-options-row > div:nth-child(4) {
        text-align: left;
        white-space: normal;
    }

    .pricing-options-row > div:nth-child(3)::before,
    .pricing-options-row > div:nth-child(4)::before {
        content: attr(data-label) " ";
        font-weight: 600;
    }

    .process-list {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .process-icon {
        align-self: start;
        margin-right: auto;
        margin-left: auto;
    }

    .process-list li {
        grid-template-rows: auto auto;
    }

    .map-content .map-process-panel .process-list li {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .map-content .map-process-panel .process-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
        text-align: center;
    }

    .map-content .map-process-panel .process-heading h3 {
        text-align: center;
    }

    .map-content .map-process-panel .process-copy {
        width: 100%;
    }

    .process-note {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 24px;
    }

    .process-note-icon {
        width: 64px;
    }

    .profile-photo {
        width: min(100%, 320px);
    }

    .legal-content .about-vision {
        clip-path: polygon(0 0, 96% 0, 100% 14%, 96% 100%, 7% 98%, 0 92%);
    }

}

@media (max-width: 520px) {
    .brand img {
        width: 92px;
    }

    .hero-kicker {
        gap: 10px;
        font-size: 30px;
    }

    .hero-kicker i {
        width: 7px;
        height: 7px;
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
    }

    .hero-ribbon {
        top: 10px;
        width: calc(100% - 40px);
        opacity: 0.72;
    }

    .hero-play span,
    .hero-play svg {
        opacity: 0.38;
    }

    .hero.is-revealed .hero-play span,
    .hero.is-revealed .hero-play svg {
        opacity: 0.18;
    }

    .hero-statement {
        padding: 0 18px;
    }

    .hero-actions {
        gap: 21px;
    }


    .hero-statement p {
        font-size: clamp(30px, 9.2vw, 38px);
    }

    .hero-statement > p:not(.hero-statement-sub) {
        white-space: nowrap;
    }

    .hero-statement h2 {
        font-size: clamp(48px, 15vw, 62px);
    }

    .video-card {
        flex-basis: 88%;
        max-width: 360px;
    }

    .video-row--personal .video-thumb,
    .video-row--mapx .video-thumb {
        --video-thumb-outline-width: 2px;
    }

    .legal-content .about-highlight {
        padding: 24px 24px 22px;
    }

    .legal-content .about-highlight h2 {
        font-size: 21px;
    }

    .legal-content .about-highlight p {
        font-size: 14px;
        line-height: 1.45;
    }

    .legal-content .about-vision {
        clip-path: polygon(0 0, 96% 0, 100% 14%, 96% 100%, 7% 98%, 0 92%);
    }

    .pricing-intro {
        padding-left: 18px;
    }

    .pricing-card,
    .pricing-options summary,
    .pricing-options-inner {
        padding-right: 20px;
        padding-left: 20px;
    }

    .pricing-options-row > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .pricing-cta {
        width: 100%;
    }

    .contact-quote-button {
        width: 100%;
    }

    .video-slider-button {
        width: 40px;
        height: 40px;
    }

    .statement-actions,
    .route-button,
    .button {
        width: 100%;
    }

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

/* ========================
   BEDANKT PAGE
   ======================== */

.thank-you-page {
    min-height: 100vh;
    padding-top: 143px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--paper) 0%, var(--soft) 100%);
}

.thank-you {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: min(560px, 100%);
    padding: clamp(48px, 8vw, 80px) clamp(24px, 4vw, 40px);
}

.thank-you-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 14px 40px rgba(66, 182, 189, 0.28);
}

.thank-you-icon svg {
    width: 30px;
    height: 30px;
    color: var(--mapx);
}

.thank-you h1 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 14px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.thank-you-lead {
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 40px;
}

.thank-you-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 40px;
    width: 100%;
    text-align: left;
}

.thank-you-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 22px;
    background: white;
    border-radius: 14px;
    border: 1px solid rgba(61, 37, 102, 0.07);
    box-shadow: 0 2px 14px rgba(61, 37, 102, 0.05);
}

.thank-you-step-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3D2566, #EF4C79);
    color: white;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.thank-you-step strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 3px;
}

.thank-you-step p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.thank-you-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    background: transparent;
    color: var(--map);
    border: 1.5px solid rgba(238, 88, 139, 0.35);
    transition: border-color 200ms ease, transform 200ms ease;
}

.thank-you-back:hover {
    border-color: var(--map);
    transform: translateY(-2px);
}

@media (max-width: 860px) {
    .thank-you-page {
        padding-top: 0;
        padding-bottom: 118px;
        min-height: calc(100vh - 118px);
    }
}
