:root {
    --bg: #050606;
    --bg-soft: #0a0c0d;
    --panel: #0d1011;
    --panel-2: #121617;
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(255, 255, 255, 0.18);
    --text: #f6f8f2;
    --muted: #9aa39d;
    --acid: #49a8ff;
    --acid-2: #8be7ff;
    --ice: #84e9ff;
    --danger: #ff6262;
    --shadow: 0 36px 100px rgba(0, 0, 0, 0.38);
    --radius-xl: 2.35rem;
    --radius-lg: 1.75rem;
    --radius-md: 1.15rem;
    --shell: min(1240px, calc(100vw - 3rem));
    --header-height: 82px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; background: var(--bg); }
body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 0%, rgba(73,168,255,.06), transparent 26rem),
        linear-gradient(180deg, #050606 0%, #080a0a 100%);
    font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-synthesis: none;
    overflow-x: hidden;
}
body.menu-open,
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
button { color: inherit; }
::selection { color: #06101d; background: var(--acid); }

.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: clamp(5.5rem, 10vw, 10rem) 0; }
.section--contrast {
    background:
        linear-gradient(180deg, rgba(255,255,255,.015), transparent 12%, transparent 88%, rgba(255,255,255,.012)),
        #080a0a;
    border-block: 1px solid rgba(255,255,255,.055);
}
.icon { width: 1.15rem; height: 1.15rem; flex: none; }
.icon--lg { width: 1.55rem; height: 1.55rem; }
.icon--xl { width: 2.35rem; height: 2.35rem; }

.skip-link {
    position: fixed;
    top: .75rem;
    left: .75rem;
    z-index: 99999;
    transform: translateY(-150%);
    border-radius: .8rem;
    padding: .8rem 1rem;
    background: var(--acid);
    color: #06111f;
    font-weight: 800;
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

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

/* Loader */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-content: center;
    gap: 1.5rem;
    background: #050606;
    transition: opacity .65s var(--ease), visibility .65s var(--ease);
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-logo {
    display: grid;
    place-items: center;
    width: 5.2rem;
    height: 5.2rem;
    margin: auto;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1.6rem;
    background: rgba(255,255,255,.035);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.02), 0 24px 60px rgba(0,0,0,.4);
}
.loader-logo img { width: 3rem; height: 3rem; object-fit: contain; }
.loader-line { width: min(250px, 65vw); height: 2px; overflow: hidden; background: rgba(255,255,255,.08); }
.loader-line span {
    display: block;
    width: 38%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--acid), var(--ice));
    animation: loader-line 1.05s ease-in-out infinite;
}
.page-loader p {
    margin: 0;
    color: rgba(255,255,255,.42);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .28em;
    text-align: center;
    text-transform: uppercase;
}
@keyframes loader-line { from { transform: translateX(-110%); } to { transform: translateX(370%); } }

/* Header */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 0;
    transition: padding .35s var(--ease);
}
.site-header.is-scrolled { padding: .55rem 0; }
.site-header__shell {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: min(1380px, calc(100vw - 2rem));
    min-height: 64px;
    margin: auto;
    padding: .55rem .7rem .55rem 1rem;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 1.25rem;
    background: rgba(6,8,8,.68);
    box-shadow: 0 18px 50px rgba(0,0,0,.2);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.site-header.is-scrolled .site-header__shell { background: rgba(6,8,8,.87); }
.brand { display: inline-flex; align-items: center; gap: .85rem; width: max-content; }
.brand__mark {
    display: grid;
    place-items: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: .85rem;
    background: linear-gradient(145deg, rgba(73,168,255,.14), rgba(132,233,255,.05));
    border: 1px solid rgba(73,168,255,.18);
}
.brand__mark img { width: 1.75rem; height: 1.75rem; object-fit: contain; }
.brand__text { min-width: 0; }
.brand__text strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: .92rem;
    letter-spacing: .08em;
    line-height: 1.05;
    text-transform: uppercase;
}
.brand__text small {
    display: block;
    margin-top: .28rem;
    color: var(--muted);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.desktop-nav { display: flex; align-items: center; gap: 2rem; }
.desktop-nav a,
.header-login {
    position: relative;
    color: rgba(255,255,255,.68);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .04em;
    transition: color .25s ease;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -.65rem;
    left: 0;
    height: 1px;
    background: var(--acid);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease);
}
.desktop-nav a:hover,
.desktop-nav a.is-active,
.header-login:hover { color: #fff; }
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 1rem; }
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    min-height: 2.85rem;
    padding: 0 1.15rem;
    border-radius: .85rem;
    background: var(--acid);
    color: #071523;
    font-size: .75rem;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(73,168,255,.12);
}
.menu-toggle {
    display: none;
    position: relative;
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: .85rem;
    background: rgba(255,255,255,.04);
    cursor: pointer;
}
.menu-toggle span {
    position: absolute;
    left: 50%;
    width: 1rem;
    height: 1px;
    background: #fff;
    transform: translateX(-50%);
    transition: transform .3s var(--ease), top .3s var(--ease);
}
.menu-toggle span:first-child { top: 1.08rem; }
.menu-toggle span:last-child { top: 1.62rem; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 1.35rem; transform: translateX(-50%) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 1.35rem; transform: translateX(-50%) rotate(-45deg); }
.mobile-navigation {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: grid;
    align-items: center;
    background:
        radial-gradient(circle at 82% 20%, rgba(73,168,255,.12), transparent 25rem),
        #060808;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-2rem);
    transition: opacity .5s var(--ease), visibility .5s var(--ease), transform .5s var(--ease);
}
.mobile-navigation.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-navigation__inner { width: min(700px, calc(100vw - 3rem)); margin: auto; }
.mobile-navigation__eyebrow {
    display: block;
    margin-bottom: 2rem;
    color: var(--acid);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .25em;
    text-transform: uppercase;
}
.mobile-navigation__inner > a {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: .65rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -.045em;
}
.mobile-navigation__inner > a em {
    color: var(--acid);
    font-family: "Manrope", sans-serif;
    font-size: .65rem;
    font-style: normal;
    letter-spacing: .15em;
}
.mobile-navigation__footer { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; color: var(--muted); font-size: .8rem; }

/* Reusable */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    min-height: 3.65rem;
    border: 1px solid transparent;
    border-radius: 1rem;
    padding: 0 1.4rem;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .015em;
    cursor: pointer;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease, background .3s ease;
}
.button:hover { transform: translateY(-3px); }
.button--acid {
    position: relative;
    overflow: hidden;
    color: #06111f;
    background: linear-gradient(135deg, var(--acid), #7dccff 60%, var(--acid-2));
    box-shadow: 0 18px 50px rgba(73,168,255,.13);
}
.button--acid::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,.65) 48%, transparent 70%);
    transform: translateX(-130%);
    transition: transform .7s var(--ease);
}
.button--acid:hover::after { transform: translateX(130%); }
.button--acid > * { position: relative; z-index: 1; }
.button--glass,
.button--outline {
    border-color: rgba(255,255,255,.13);
    background: rgba(255,255,255,.045);
    color: #fff;
    backdrop-filter: blur(12px);
}
.button--glass:hover,
.button--outline:hover { border-color: rgba(73,168,255,.35); background: rgba(73,168,255,.06); }
.play-icon {
    display: grid;
    place-items: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.section-label { display: flex; align-items: center; gap: .9rem; margin-bottom: 2rem; }
.section-label span {
    display: grid;
    place-items: center;
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid rgba(73,168,255,.22);
    border-radius: 50%;
    color: var(--acid);
    font-size: .65rem;
    font-weight: 900;
}
.section-label p {
    margin: 0;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .25em;
    text-transform: uppercase;
}
.section-label--light span { border-color: rgba(7,21,35,.2); color: #071523; }
.section-label--light p { color: rgba(7,21,35,.55); }
.display-title {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3.1rem, 7vw, 7rem);
    font-weight: 600;
    line-height: .9;
    letter-spacing: -.065em;
}
.display-title span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.38);
}
.section-heading { display: grid; grid-template-columns: .75fr 1.25fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.section-heading--split { grid-template-columns: 1.25fr .75fr; }
.section-heading--center { display: block; max-width: 900px; margin: 0 auto 4.5rem; text-align: center; }
.section-heading--center .section-label { justify-content: center; }
.section-heading__intro {
    max-width: 620px;
    margin: 1.75rem 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.75;
}
.section-heading > .section-heading__intro { justify-self: end; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-top: 1.5rem;
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
}
.text-link .icon { color: var(--acid); transition: transform .25s ease; }
.text-link:hover .icon { transform: translateX(.3rem); }

/* Reveals */
.js .reveal {
    opacity: 0;
    transform: translateY(32px);
    filter: none;
    transition: opacity .85s var(--ease), transform .85s var(--ease);
    transition-delay: var(--delay, 0ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Hero */
.hero {
    position: relative;
    min-height: max(780px, 100svh);
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;
    background: #050606;
}
.hero-particles,
.hero-grid,
.hero-glow,
.hero-media,
.hero-watermark { position: absolute; }
.hero-particles { inset: 0; z-index: 4; width: 100%; height: 100%; pointer-events: none; }
.hero-grid {
    inset: 0;
    z-index: 1;
    opacity: .24;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.hero-glow { z-index: 2; pointer-events: none; filter: blur(12px); }
.hero-glow--one {
    top: -14rem;
    left: -10rem;
    width: 42rem;
    height: 42rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(73,168,255,.13), transparent 68%);
    animation: drift-one 11s ease-in-out infinite;
}
.hero-glow--two {
    right: -8rem;
    bottom: -14rem;
    width: 38rem;
    height: 38rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(132,233,255,.13), transparent 70%);
    animation: drift-two 13s ease-in-out infinite;
}
@keyframes drift-one { 50% { transform: translate(3rem, 2rem) scale(1.08); } }
@keyframes drift-two { 50% { transform: translate(-3rem, -1.5rem) scale(.94); } }
.hero-media {
    z-index: 0;
    inset: 0 0 0 44%;
    overflow: hidden;
    clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.045); animation: hero-breathe 12s ease-in-out infinite; }
@keyframes hero-breathe { 50% { transform: scale(1.095) translateX(-.6rem); } }
.hero-media__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #050606 0%, rgba(5,6,6,.7) 14%, transparent 52%),
        linear-gradient(180deg, rgba(5,6,6,.45), transparent 30%, rgba(5,6,6,.6) 100%),
        radial-gradient(circle at 70% 30%, transparent, rgba(5,6,6,.16));
}
.hero-media__scan {
    position: absolute;
    inset: -20% 0 auto;
    height: 8rem;
    background: linear-gradient(180deg, transparent, rgba(73,168,255,.12), transparent);
    mix-blend-mode: screen;
    animation: scan 6s ease-in-out infinite;
}
@keyframes scan { 0% { transform: translateY(-150%); opacity: 0; } 15%, 65% { opacity: 1; } 100% { transform: translateY(900%); opacity: 0; } }
.hero-watermark {
    z-index: 1;
    right: -3vw;
    bottom: -5vw;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.08);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(16rem, 38vw, 42rem);
    font-weight: 700;
    line-height: .7;
    letter-spacing: -.12em;
    user-select: none;
}
.hero-content {
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(310px, .55fr);
    gap: 3rem;
    align-items: end;
    padding-top: 8.5rem;
    padding-bottom: 8rem;
}
.hero-copy { max-width: 790px; }
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,.58);
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .21em;
    text-transform: uppercase;
}
.live-dot { width: .55rem; height: .55rem; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 7px rgba(73,168,255,.09), 0 0 25px rgba(73,168,255,.65); animation: live-pulse 2.2s ease-in-out infinite; }
@keyframes live-pulse { 50% { box-shadow: 0 0 0 12px rgba(73,168,255,0), 0 0 35px rgba(73,168,255,.8); } }
.hero-title { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(4.4rem, 9.35vw, 10.5rem); font-weight: 600; line-height: .78; letter-spacing: -.085em; }
.hero-title__line { display: block; }
.hero-title__line--accent {
    margin-top: .16em;
    color: transparent;
    background: linear-gradient(100deg, #fff 5%, var(--acid) 46%, var(--ice) 78%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: title-shimmer 7s linear infinite;
}
@keyframes title-shimmer { to { background-position: 200% center; } }
.hero-intro { max-width: 600px; margin: 2rem 0 0; color: rgba(255,255,255,.67); font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.25rem; }
.hero-hud {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-lg);
    padding: 1.15rem;
    background: rgba(8,10,10,.46);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px) saturate(140%);
    transform-style: preserve-3d;
}
.hero-hud::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--mx, 80%) var(--my, 20%), rgba(73,168,255,.13), transparent 32%);
}
.hero-hud > * { position: relative; z-index: 1; }
.hero-hud__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: rgba(255,255,255,.48); font-size: .57rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.hero-hud__status { display: inline-flex; align-items: center; gap: .45rem; }
.hero-hud__status i { width: .42rem; height: .42rem; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px var(--acid); }
.hero-hud__meter { display: grid; grid-template-columns: 105px 1fr; gap: 1.1rem; align-items: center; margin-top: 1.4rem; padding: 1.1rem; border-radius: 1.25rem; background: rgba(255,255,255,.035); }
.hero-hud__ring { position: relative; width: 96px; height: 96px; }
.hero-hud__ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.hero-hud__ring circle { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 4; }
.hero-hud__ring .meter-progress { stroke: var(--acid); stroke-linecap: round; stroke-dasharray: 327; stroke-dashoffset: 327; filter: drop-shadow(0 0 6px rgba(73,168,255,.55)); transition: stroke-dashoffset 1.4s var(--ease); }
.hero-hud.is-visible .meter-progress { stroke-dashoffset: 13; }
.hero-hud__ring strong { position: absolute; inset: 0; display: grid; place-content: center; font-family: "Space Grotesk", sans-serif; font-size: 1.65rem; }
.hero-hud__ring small { color: var(--acid); font-size: .72rem; }
.hero-hud__detail span { color: var(--acid); font-size: .56rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.hero-hud__detail strong { display: block; margin-top: .45rem; font-size: .98rem; }
.hero-hud__detail small { display: block; margin-top: .4rem; color: var(--muted); font-size: .68rem; }
.hero-hud__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .45rem; margin-top: .7rem; }
.hero-hud__stats div { min-width: 0; padding: .78rem; border: 1px solid rgba(255,255,255,.07); border-radius: .9rem; background: rgba(255,255,255,.025); }
.hero-hud__stats span { display: block; overflow: hidden; color: var(--muted); font-size: .5rem; font-weight: 800; letter-spacing: .09em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.hero-hud__stats strong { display: block; margin-top: .35rem; font-size: .67rem; }
.hero-scroll { position: absolute; z-index: 7; bottom: 5.5rem; left: max(1.5rem, calc((100vw - min(1240px, calc(100vw - 3rem))) / 2)); display: flex; align-items: center; gap: .65rem; color: rgba(255,255,255,.42); font-size: .62rem; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.hero-scroll .icon { color: var(--acid); animation: scroll-bounce 1.8s ease-in-out infinite; }
@keyframes scroll-bounce { 50% { transform: translateY(.35rem); } }
.hero-marquee { position: absolute; z-index: 7; right: 0; bottom: 0; left: 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.08); background: rgba(5,6,6,.7); backdrop-filter: blur(10px); }
.hero-marquee__track { display: flex; align-items: center; width: max-content; height: 3.4rem; animation: marquee 34s linear infinite; }
.hero-marquee span { margin-inline: 1.5rem; color: rgba(255,255,255,.5); font-size: .63rem; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.hero-marquee i { width: .35rem; height: .35rem; border-radius: 50%; background: var(--acid); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Intro */
.intro-grid { display: grid; grid-template-columns: .38fr 1.62fr; gap: 4rem; align-items: start; }
.intro-statement__text { max-width: 720px; margin: 2.4rem 0 0 auto; color: var(--muted); font-size: clamp(1.05rem, 1.65vw, 1.32rem); line-height: 1.8; }
.proof-strip { display: grid; grid-template-columns: repeat(3, .8fr) 1.6fr; margin-top: 5rem; border-block: 1px solid var(--line); }
.proof-strip__item { padding: 2rem; border-right: 1px solid var(--line); }
.proof-strip__item:first-child { padding-left: 0; }
.proof-strip__item:last-child { border-right: 0; padding-right: 0; }
.proof-strip__number { display: block; font-family: "Space Grotesk", sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 600; letter-spacing: -.06em; }
.proof-strip__item p { margin: .6rem 0 0; color: var(--muted); font-size: .76rem; }
.proof-strip__item--text { display: flex; flex-direction: column; justify-content: center; }
.proof-strip__item--text span { font-size: 1.05rem; font-weight: 800; }

/* Services */
.service-bento { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1rem; }
.service-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3vw, 2.6rem);
    background:
        radial-gradient(circle at var(--mx, 80%) var(--my, 20%), rgba(73,168,255,.11), transparent 28%),
        linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
    transition: border-color .35s ease, transform .35s var(--ease), box-shadow .35s ease;
}
.service-card:hover { border-color: rgba(73,168,255,.24); box-shadow: 0 32px 90px rgba(0,0,0,.24); }
.service-card--hero { grid-row: span 2; min-height: 800px; background:
    radial-gradient(circle at var(--mx, 74%) var(--my, 22%), rgba(73,168,255,.16), transparent 28%),
    linear-gradient(145deg, #101412, #080a0a); }
.service-card--wide { grid-column: span 2; min-height: 340px; display: grid; grid-template-columns: 1fr .7fr; align-items: end; }
.service-card__number { position: absolute; top: 1.4rem; right: 1.5rem; color: rgba(255,255,255,.18); font-family: "Space Grotesk", sans-serif; font-size: 4rem; font-weight: 600; letter-spacing: -.08em; }
.service-card__icon { display: grid; place-items: center; width: 4.2rem; height: 4.2rem; border: 1px solid rgba(73,168,255,.18); border-radius: 1.3rem; color: var(--acid); background: rgba(73,168,255,.05); }
.service-card__content { position: relative; z-index: 2; margin-top: 5rem; max-width: 620px; }
.service-card--hero .service-card__content { position: absolute; right: 2.6rem; bottom: 2.6rem; left: 2.6rem; }
.service-card__content > span { color: var(--acid); font-size: .62rem; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.service-card h3 { margin: .8rem 0 0; max-width: 650px; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.9rem, 3.2vw, 4.2rem); line-height: 1; letter-spacing: -.05em; }
.service-card:not(.service-card--hero) h3 { font-size: clamp(1.7rem, 2.4vw, 2.75rem); }
.service-card p { max-width: 610px; margin: 1.25rem 0 0; color: var(--muted); font-size: .93rem; line-height: 1.75; }
.service-card__orb { position: absolute; top: 13%; left: 50%; width: 28rem; height: 28rem; border: 1px solid rgba(73,168,255,.16); border-radius: 50%; transform: translateX(-50%); }
.service-card__orb::before, .service-card__orb::after { content: ""; position: absolute; inset: 9%; border: 1px solid rgba(132,233,255,.1); border-radius: 50%; }
.service-card__orb::after { inset: 22%; border-style: dashed; animation: spin 22s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.service-card__tags { display: flex; justify-content: flex-end; align-content: flex-end; flex-wrap: wrap; gap: .6rem; }
.service-card__tags span { border: 1px solid var(--line); border-radius: 999px; padding: .75rem 1rem; color: var(--muted); font-size: .68rem; font-weight: 800; }

/* Compare */
.compare-stage { position: relative; height: min(70vw, 720px); min-height: 430px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: var(--radius-xl); box-shadow: var(--shadow); background: #0b0d0d; }
.compare-stage__before,
.compare-stage__after { position: absolute; inset: 0; overflow: hidden; }
.compare-stage__before img,
.compare-stage__after img { width: 100%; height: 100%; object-fit: cover; }
.compare-stage__before > span,
.compare-stage__after > span { position: absolute; top: 1.2rem; z-index: 3; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; padding: .65rem .9rem; background: rgba(5,6,6,.55); backdrop-filter: blur(12px); font-size: .62rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.compare-stage__before > span { left: 1.2rem; }
.compare-stage__after > span { right: 1.2rem; color: var(--acid); }
.compare-stage__after { width: 52%; }
.compare-stage__after img { width: max(var(--shell), 1240px); max-width: none; }
.compare-stage__divider { position: absolute; top: 0; bottom: 0; left: 52%; z-index: 4; width: 2px; background: linear-gradient(180deg, transparent, #fff 15%, #fff 85%, transparent); box-shadow: 0 0 26px rgba(255,255,255,.7); }
.compare-stage__handle { position: absolute; top: 50%; left: 50%; display: flex; align-items: center; justify-content: center; width: 4.4rem; height: 4.4rem; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(5,6,6,.78); box-shadow: 0 14px 40px rgba(0,0,0,.42); transform: translate(-50%, -50%); backdrop-filter: blur(12px); }
.compare-stage__handle span:first-child { transform: rotate(180deg); }
.compare-stage__handle .icon { color: var(--acid); }
.compare-stage__range { position: absolute; z-index: 6; inset: 0; width: 100%; height: 100%; cursor: ew-resize; opacity: 0; }
.compare-stage__data { position: absolute; z-index: 5; right: 1.25rem; bottom: 1.25rem; display: grid; grid-template-columns: repeat(3, 1fr); min-width: min(470px, calc(100% - 2.5rem)); border: 1px solid rgba(255,255,255,.15); border-radius: 1.2rem; background: rgba(5,6,6,.66); backdrop-filter: blur(18px); }
.compare-stage__data div { padding: 1rem; border-right: 1px solid rgba(255,255,255,.1); }
.compare-stage__data div:last-child { border-right: 0; }
.compare-stage__data span { display: block; color: var(--muted); font-size: .54rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.compare-stage__data strong { display: block; margin-top: .35rem; font-size: .78rem; }
.transformation-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1rem; }
.transformation-notes article { border: 1px solid var(--line); border-radius: 1.35rem; padding: 1.5rem; background: rgba(255,255,255,.018); }
.transformation-notes article > span { color: var(--acid); font-size: .62rem; font-weight: 900; }
.transformation-notes h3 { margin: .9rem 0 0; font-size: 1rem; }
.transformation-notes p { margin: .7rem 0 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }

/* Process */
.process-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.process-visual { position: sticky; top: 7rem; }
.process-visual__frame { position: relative; min-height: 720px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); }
.process-visual__frame img { width: 100%; height: 100%; min-height: 720px; object-fit: cover; }
.process-visual__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(5,6,6,.8)); }
.process-visual__badge { position: absolute; right: 1.25rem; bottom: 1.25rem; left: 1.25rem; display: flex; align-items: center; gap: 1rem; border: 1px solid rgba(255,255,255,.14); border-radius: 1.2rem; padding: 1rem; background: rgba(5,6,6,.62); backdrop-filter: blur(16px); }
.process-visual__badge > .icon { color: var(--acid); }
.process-visual__badge span { display: block; color: var(--muted); font-size: .55rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.process-visual__badge strong { display: block; margin-top: .3rem; font-size: .85rem; }
.process-copy { padding-top: 2rem; }
.process-steps { margin-top: 3.5rem; border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: 60px 1fr; gap: 1.4rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.process-step__index { color: var(--acid); font-family: "Space Grotesk", sans-serif; font-size: 1rem; }
.process-step h3 { margin: 0; font-size: 1.2rem; }
.process-step p { margin: .7rem 0 0; color: var(--muted); line-height: 1.7; }

/* Packages */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: stretch; }
.package-card {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background: linear-gradient(150deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
    transform-style: preserve-3d;
}
.package-card--featured {
    border-color: rgba(73,168,255,.28);
    background:
        radial-gradient(circle at 50% 0%, rgba(73,168,255,.17), transparent 38%),
        linear-gradient(150deg, #101927, #070b11);
    box-shadow: 0 38px 100px rgba(0,0,0,.26);
}
.package-card__badge { position: absolute; top: 0; right: 2rem; border-radius: 0 0 .9rem .9rem; padding: .65rem .8rem; color: #06111f; background: var(--acid); font-size: .55rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.package-card__top { display: flex; justify-content: space-between; align-items: center; color: var(--acid); }
.package-card__top span { font-size: .62rem; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.package-card h3 { margin: 4.5rem 0 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(2rem, 3vw, 3.3rem); line-height: .95; letter-spacing: -.05em; }
.package-card__price { display: flex; align-items: end; gap: .7rem; margin: 1.7rem 0 0; }
.package-card__price small { padding-bottom: .45rem; color: var(--muted); font-size: .68rem; font-weight: 800; }
.package-card__price strong { color: var(--acid); font-family: "Space Grotesk", sans-serif; font-size: 3.9rem; line-height: .9; letter-spacing: -.07em; }
.package-card__desc { min-height: 4.5rem; margin: 1.2rem 0 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.package-card ul { list-style: none; display: grid; gap: .9rem; margin: 2rem 0 2.5rem; padding: 0; color: rgba(255,255,255,.75); font-size: .82rem; }
.package-card li { display: flex; align-items: center; gap: .7rem; }
.package-card li .icon { color: var(--acid); }
.package-card .button { width: 100%; margin-top: auto; }
.package-note { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; border: 1px solid var(--line); border-radius: 1.25rem; padding: 1.25rem 1.4rem; background: rgba(255,255,255,.018); }
.package-note > span { display: grid; place-items: center; width: 2.8rem; height: 2.8rem; border-radius: .85rem; color: var(--acid); background: rgba(73,168,255,.07); }
.package-note p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.6; }
.package-note strong { color: #fff; }

/* Reviews */
.reviews-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 8vw, 8rem); }
.rating-block { display: flex; align-items: center; gap: 1.5rem; margin-top: 3rem; }
.rating-block > strong { font-family: "Space Grotesk", sans-serif; font-size: 5rem; line-height: .8; letter-spacing: -.08em; }
.rating-block div span { color: var(--acid); letter-spacing: .18em; }
.rating-block div p { margin: .5rem 0 0; color: var(--muted); font-size: .65rem; }
.review-stack { display: grid; gap: 1rem; }
.review-card { position: relative; overflow: hidden; min-height: 250px; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 2rem; background: rgba(255,255,255,.025); }
.review-card--offset { margin-left: 5rem; }
.review-card__quote { position: absolute; top: -.7rem; right: 1.2rem; color: rgba(73,168,255,.12); font-family: Georgia, serif; font-size: 9rem; line-height: 1; }
.review-card > p { position: relative; max-width: 680px; margin: 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.2rem, 2vw, 1.8rem); line-height: 1.4; letter-spacing: -.025em; }
.review-card footer { position: absolute; right: 2rem; bottom: 1.7rem; left: 2rem; display: flex; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.review-card footer span { font-size: .78rem; font-weight: 800; }
.review-card footer small { color: var(--muted); font-size: .68rem; text-align: right; }

/* Booking */
.booking { overflow: hidden; }
.booking-halo { position: absolute; top: 50%; left: 50%; width: 80vw; height: 80vw; border-radius: 50%; background: radial-gradient(circle, rgba(73,168,255,.11), transparent 65%); transform: translate(-50%, -50%); pointer-events: none; }
.booking-panel { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border: 1px solid rgba(73,168,255,.28); border-radius: 2.8rem; background: var(--acid); color: #071523; box-shadow: 0 50px 140px rgba(0,0,0,.4); }
.booking-panel__intro { position: relative; overflow: hidden; padding: clamp(2rem, 5vw, 4.6rem); }
.booking-panel__intro::after { content: "EA"; position: absolute; right: -4rem; bottom: -6rem; color: transparent; -webkit-text-stroke: 1px rgba(7,21,35,.12); font-family: "Space Grotesk", sans-serif; font-size: 19rem; font-weight: 700; line-height: .8; }
.booking-panel__intro > * { position: relative; z-index: 1; }
.booking-panel__intro h2 { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(3rem, 6vw, 6rem); line-height: .86; letter-spacing: -.07em; }
.booking-panel__intro h2 span { color: transparent; -webkit-text-stroke: 1px rgba(7,21,35,.5); }
.booking-panel__intro > p { max-width: 580px; margin: 1.7rem 0 0; color: rgba(7,21,35,.65); line-height: 1.75; }
.booking-contact { display: grid; gap: .7rem; margin-top: 3rem; }
.booking-contact > * { display: flex; align-items: center; gap: .9rem; padding: .9rem; border: 1px solid rgba(7,21,35,.13); border-radius: 1rem; background: rgba(255,255,255,.18); }
.booking-contact > * > span { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: .75rem; background: rgba(7,21,35,.08); }
.booking-contact small { display: block; color: rgba(7,21,35,.5); font-size: .55rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.booking-contact strong { display: block; margin-top: .2rem; font-size: .78rem; }
.booking-panel__form { padding: clamp(1.4rem, 3vw, 2rem); background: #090b0b; color: #fff; }
.form-head { padding: .6rem .6rem 1.7rem; border-bottom: 1px solid var(--line); }
.form-head span { color: var(--acid); font-size: .58rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.form-head strong { display: block; margin-top: .5rem; font-family: "Space Grotesk", sans-serif; font-size: 1.7rem; }
.booking-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; padding-top: 1.5rem; }
.field label { display: block; margin-bottom: .55rem; color: var(--muted); font-size: .62rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.field input,
.field select,
.newsletter-modal input {
    width: 100%;
    height: 3.5rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .95rem;
    padding: 0 1rem;
    color: #fff;
    background: rgba(255,255,255,.04);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus,
.field select:focus,
.newsletter-modal input:focus { border-color: rgba(73,168,255,.55); box-shadow: 0 0 0 4px rgba(73,168,255,.08); background: rgba(255,255,255,.06); }
.field select option { color: #111; }
.booking-submit { grid-column: span 2; width: 100%; margin-top: .4rem; }
.account-gate { display: grid; place-items: start; align-content: center; min-height: 100%; padding: clamp(1rem, 3vw, 2.4rem); }
.account-gate__icon { display: grid; place-items: center; width: 4.8rem; height: 4.8rem; border: 1px solid rgba(73,168,255,.2); border-radius: 1.4rem; color: var(--acid); background: rgba(73,168,255,.06); }
.account-gate__label { margin-top: 2rem; color: var(--acid); font-size: .6rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.account-gate h3 { max-width: 600px; margin: .8rem 0 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.05em; }
.account-gate p { max-width: 550px; margin: 1.2rem 0 0; color: var(--muted); line-height: 1.7; }
.account-gate__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { display: flex; justify-content: space-between; align-items: center; width: 100%; min-height: 5.7rem; border: 0; padding: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-item button span { max-width: 85%; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.05rem, 2vw, 1.45rem); font-weight: 600; }
.faq-item button .icon { color: var(--acid); transition: transform .3s var(--ease); }
.faq-item.is-open button .icon { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-answer > p { overflow: hidden; margin: 0; color: var(--muted); line-height: 1.75; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding-bottom: 2rem; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: #040505; }
.site-footer__marquee { overflow: hidden; border-bottom: 1px solid var(--line); }
.site-footer__marquee > div { display: flex; align-items: center; width: max-content; height: 9rem; animation: marquee 38s linear infinite; }
.site-footer__marquee span { margin-inline: 1.6rem; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.18); font-family: "Space Grotesk", sans-serif; font-size: clamp(3rem, 7vw, 7rem); font-weight: 600; letter-spacing: -.06em; white-space: nowrap; }
.site-footer__marquee i { width: .65rem; height: .65rem; border-radius: 50%; background: var(--acid); }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, .7fr); gap: 3rem; padding-block: 4.5rem; }
.site-footer__brand > p { max-width: 420px; margin: 1.5rem 0 0; color: var(--muted); font-size: .85rem; line-height: 1.7; }
.socials { display: flex; gap: .6rem; margin-top: 1.5rem; }
.socials a { display: grid; place-items: center; width: 2.8rem; height: 2.8rem; border: 1px solid var(--line); border-radius: .85rem; color: var(--muted); transition: color .2s ease, border-color .2s ease, background .2s ease; }
.socials a:hover { color: var(--acid); border-color: rgba(73,168,255,.25); background: rgba(73,168,255,.05); }
.site-footer__column { display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; }
.site-footer__column h3 { margin: 0 0 .5rem; color: #fff; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; }
.site-footer__column a,
.site-footer__column span { color: var(--muted); font-size: .78rem; transition: color .2s ease; }
.site-footer__column a:hover { color: var(--acid); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 1rem; padding-block: 1.4rem; border-top: 1px solid var(--line); color: rgba(255,255,255,.38); font-size: .67rem; }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom div { display: flex; gap: 1.2rem; }

/* WhatsApp */
.whatsapp-orbit { position: fixed; z-index: 950; right: 1.25rem; bottom: 1.25rem; display: grid; place-items: center; width: 3.7rem; height: 3.7rem; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #06111f; background: #49a8ff; box-shadow: 0 18px 50px rgba(73,168,255,.25); }
.whatsapp-orbit__pulse { position: absolute; inset: -.4rem; border: 1px solid rgba(73,168,255,.3); border-radius: 50%; animation: orbit-pulse 2.4s ease-out infinite; }
.whatsapp-orbit__label { position: absolute; right: calc(100% + .75rem); border: 1px solid var(--line); border-radius: .7rem; padding: .55rem .7rem; color: #fff; background: rgba(6,8,8,.88); font-size: .62rem; font-weight: 800; opacity: 0; transform: translateX(.5rem); transition: opacity .2s ease, transform .2s ease; pointer-events: none; }
.whatsapp-orbit:hover .whatsapp-orbit__label { opacity: 1; transform: none; }
@keyframes orbit-pulse { to { transform: scale(1.35); opacity: 0; } }

/* Newsletter */
.newsletter-modal { position: fixed; z-index: 5000; inset: 0; display: grid; place-items: center; padding: 1.2rem; opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease; }
.newsletter-modal.is-open { opacity: 1; visibility: visible; }
.newsletter-modal__backdrop { position: absolute; inset: 0; border: 0; background: rgba(0,0,0,.76); backdrop-filter: blur(12px); cursor: default; }
.newsletter-modal__panel { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; width: min(900px, 100%); max-height: min(760px, calc(100svh - 2.4rem)); overflow: auto; border: 1px solid var(--line-strong); border-radius: 2rem; background: #0b0d0d; box-shadow: 0 40px 130px rgba(0,0,0,.65); transform: scale(.96) translateY(1rem); transition: transform .4s var(--ease); }
.newsletter-modal.is-open .newsletter-modal__panel { transform: none; }
.newsletter-modal__close { position: absolute; z-index: 3; top: 1rem; right: 1rem; display: grid; place-items: center; width: 2.7rem; height: 2.7rem; border: 1px solid var(--line); border-radius: .85rem; background: rgba(6,8,8,.7); cursor: pointer; }
.newsletter-modal__visual { position: relative; min-height: 590px; overflow: hidden; border-radius: 2rem 0 0 2rem; }
.newsletter-modal__visual img { width: 100%; height: 100%; object-fit: cover; }
.newsletter-modal__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(5,6,6,.88)); }
.newsletter-modal__visual > div { position: absolute; z-index: 1; right: 1.6rem; bottom: 1.6rem; left: 1.6rem; }
.newsletter-modal__visual span { color: var(--acid); font-size: .6rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.newsletter-modal__visual strong { display: block; margin-top: .6rem; font-family: "Space Grotesk", sans-serif; font-size: 2rem; line-height: 1; }
.newsletter-modal__content { padding: 3rem; }
.newsletter-modal__eyebrow { color: var(--acid); font-size: .62rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.newsletter-modal h2 { margin: 1rem 0 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(2.2rem, 4vw, 3.7rem); line-height: .95; letter-spacing: -.05em; }
.newsletter-modal__content > p { color: var(--muted); line-height: 1.7; }
.newsletter-modal form { display: grid; gap: 1rem; margin-top: 1.7rem; }
.newsletter-modal label > span { display: block; margin-bottom: .5rem; color: var(--muted); font-size: .6rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.newsletter-modal .consent { display: flex; align-items: flex-start; gap: .7rem; border: 1px solid var(--line); border-radius: .9rem; padding: .85rem; }
.newsletter-modal .consent input { width: 1rem; height: 1rem; margin-top: .12rem; accent-color: var(--acid); }
.newsletter-modal .consent span { margin: 0; color: var(--muted); font-size: .67rem; line-height: 1.55; letter-spacing: 0; text-transform: none; }
.newsletter-message { min-height: 1.2rem; margin: 0; font-size: .72rem; font-weight: 800; }
.newsletter-success { text-align: center; padding: 3rem 0 0; }
.newsletter-success > span { display: grid; place-items: center; width: 4.5rem; height: 4.5rem; margin: auto; border-radius: 1.3rem; color: #06111f; background: var(--acid); }
.newsletter-success h3 { font-family: "Space Grotesk", sans-serif; }
.newsletter-success strong { display: block; border: 1px dashed rgba(73,168,255,.35); border-radius: 1rem; padding: 1rem; color: var(--acid); font-size: 1.4rem; letter-spacing: .12em; }
.newsletter-success p { color: var(--muted); font-size: .8rem; }

/* Responsive */
@media (max-width: 1100px) {
    .desktop-nav { display: none; }
    .site-header__shell { grid-template-columns: 1fr auto; }
    .header-actions { grid-column: 2; }
    .header-login, .header-cta { display: none; }
    .menu-toggle { display: block; }
    .hero-content { grid-template-columns: 1fr; align-items: center; padding-top: 10rem; }
    .hero-copy { max-width: 850px; }
    .hero-hud { max-width: 430px; margin-left: auto; }
    .hero-media { left: 30%; opacity: .7; }
    .service-card--hero { min-height: 690px; }
    .package-grid { grid-template-columns: 1fr; }
    .package-card { min-height: auto; }
    .site-footer__grid { grid-template-columns: 1.4fr repeat(2, .7fr); }
    .site-footer__column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
    :root { --shell: min(100% - 2rem, 720px); }
    .section { padding: 5.5rem 0; }
    .site-header__shell { width: calc(100vw - 1rem); }
    .hero { min-height: 900px; align-items: flex-start; }
    .hero-media { inset: 0; clip-path: none; opacity: .56; }
    .hero-media__veil { background: linear-gradient(180deg, rgba(5,6,6,.6), rgba(5,6,6,.72) 48%, #050606 95%); }
    .hero-content { min-height: 900px; padding-top: 8rem; padding-bottom: 8rem; }
    .hero-title { font-size: clamp(4rem, 15vw, 7rem); }
    .hero-hud { width: 100%; max-width: none; margin: 1rem 0 0; }
    .hero-scroll { display: none; }
    .intro-grid,
    .section-heading,
    .section-heading--split,
    .process-layout,
    .reviews-layout,
    .booking-panel,
    .faq-layout { grid-template-columns: 1fr; }
    .section-heading { gap: 1rem; }
    .section-heading__intro { justify-self: start !important; }
    .proof-strip { grid-template-columns: repeat(2, 1fr); }
    .proof-strip__item { border-bottom: 1px solid var(--line); }
    .proof-strip__item:nth-child(2) { border-right: 0; }
    .proof-strip__item:nth-child(3) { padding-left: 0; border-bottom: 0; }
    .proof-strip__item:last-child { border-bottom: 0; }
    .service-bento { grid-template-columns: 1fr; }
    .service-card--hero { min-height: 620px; }
    .service-card--wide { grid-column: auto; grid-template-columns: 1fr; }
    .service-card__tags { justify-content: flex-start; margin-top: 2rem; }
    .transformation-notes { grid-template-columns: 1fr; }
    .process-visual { position: relative; top: auto; }
    .process-visual__frame, .process-visual__frame img { min-height: 520px; }
    .review-card--offset { margin-left: 0; }
    .booking-panel__intro { min-height: 650px; }
    .newsletter-modal__panel { grid-template-columns: 1fr; }
    .newsletter-modal__visual { display: none; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .site-footer__brand { grid-column: 1 / -1; }
    .site-footer__column:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
    :root { --shell: min(100% - 1.2rem, 540px); --radius-xl: 1.5rem; }
    .brand__text small { display: none; }
    .brand__mark { width: 2.55rem; height: 2.55rem; }
    .site-header__shell { padding-left: .7rem; }
    .hero { min-height: 870px; }
    .hero-content { min-height: 870px; padding-top: 7.2rem; }
    .hero-title { font-size: clamp(3.4rem, 17vw, 5.5rem); line-height: .82; }
    .hero-kicker { font-size: .56rem; letter-spacing: .14em; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-hud__meter { grid-template-columns: 86px 1fr; padding: .85rem; }
    .hero-hud__ring { width: 80px; height: 80px; }
    .hero-hud__stats { grid-template-columns: 1fr; }
    .hero-hud__stats span { white-space: normal; }
    .display-title { font-size: clamp(2.7rem, 15vw, 4.7rem); }
    .proof-strip { grid-template-columns: 1fr; }
    .proof-strip__item { padding: 1.3rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .proof-strip__item:nth-child(2), .proof-strip__item:nth-child(3) { padding-left: 0; border-bottom: 1px solid var(--line); }
    .proof-strip__item:last-child { border-bottom: 0; }
    .service-card { min-height: 360px; padding: 1.35rem; }
    .service-card--hero { min-height: 560px; }
    .service-card--hero .service-card__content { right: 1.35rem; bottom: 1.35rem; left: 1.35rem; }
    .service-card__orb { width: 20rem; height: 20rem; }
    .compare-stage { height: 520px; min-height: 520px; }
    .compare-stage__after img { width: max(100vw, 560px); }
    .compare-stage__data { grid-template-columns: 1fr; right: .75rem; bottom: .75rem; left: .75rem; min-width: 0; }
    .compare-stage__data div { display: flex; justify-content: space-between; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
    .compare-stage__data div:last-child { border-bottom: 0; }
    .compare-stage__handle { width: 3.6rem; height: 3.6rem; }
    .process-visual__frame, .process-visual__frame img { min-height: 440px; }
    .process-step { grid-template-columns: 42px 1fr; }
    .package-card { padding: 1.35rem; }
    .package-card h3 { margin-top: 3.5rem; }
    .review-card { min-height: 300px; padding: 1.35rem; }
    .review-card footer { right: 1.35rem; bottom: 1.35rem; left: 1.35rem; flex-direction: column; }
    .review-card footer small { text-align: left; }
    .booking-panel { border-radius: 1.6rem; }
    .booking-panel__intro { min-height: 600px; padding: 1.5rem; }
    .booking-form { grid-template-columns: 1fr; }
    .booking-submit { grid-column: auto; }
    .account-gate__actions { flex-direction: column; width: 100%; }
    .account-gate__actions .button { width: 100%; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__brand { grid-column: auto; }
    .site-footer__bottom { flex-direction: column; }
    .newsletter-modal__content { padding: 2rem 1.25rem; }
    .whatsapp-orbit { right: .8rem; bottom: .8rem; }
}

@media (hover: none), (pointer: coarse) {
    .magnetic { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
    .js .reveal { opacity: 1; transform: none; filter: none; }
    .page-loader { display: none; }
}


/* ========================================================================
   NEON EDITORIAL ENHANCEMENT
   Meer licht, meer beeld en een rijkere afsprakenervaring.
   ======================================================================== */
body {
    background:
        radial-gradient(circle at -8% 8%, rgba(35, 116, 255, .18), transparent 28rem),
        radial-gradient(circle at 108% 28%, rgba(117, 225, 255, .14), transparent 32rem),
        radial-gradient(circle at 4% 72%, rgba(57, 138, 255, .12), transparent 30rem),
        linear-gradient(180deg, #05070b 0%, #07101a 46%, #05080d 100%);
}

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

.ambient-lights {
    position: fixed;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ambient-light,
.ambient-rail {
    position: absolute;
    display: block;
    pointer-events: none;
}

.ambient-light {
    border-radius: 50%;
    filter: blur(76px);
    opacity: .7;
    mix-blend-mode: screen;
    will-change: transform;
}

.ambient-light--left-top {
    top: 9vh;
    left: -14rem;
    width: 30rem;
    height: 44rem;
    background: radial-gradient(circle, rgba(42, 126, 255, .38), rgba(42, 126, 255, .05) 55%, transparent 72%);
    animation: ambient-drift-left 14s ease-in-out infinite;
}

.ambient-light--right-top {
    top: 56vh;
    right: -15rem;
    width: 34rem;
    height: 42rem;
    background: radial-gradient(circle, rgba(116, 225, 255, .32), rgba(50, 144, 255, .07) 56%, transparent 74%);
    animation: ambient-drift-right 17s ease-in-out infinite;
}

.ambient-light--left-mid {
    top: 175vh;
    left: -18rem;
    width: 38rem;
    height: 48rem;
    background: radial-gradient(circle, rgba(30, 104, 255, .28), transparent 70%);
    animation: ambient-drift-left 19s ease-in-out infinite reverse;
}

.ambient-light--right-low {
    top: 340vh;
    right: -18rem;
    width: 42rem;
    height: 52rem;
    background: radial-gradient(circle, rgba(116, 225, 255, .24), rgba(51, 116, 255, .06) 58%, transparent 74%);
    animation: ambient-drift-right 21s ease-in-out infinite reverse;
}

.ambient-rail {
    top: 0;
    bottom: 0;
    width: 1px;
    opacity: .5;
    background: linear-gradient(180deg, transparent, rgba(111, 218, 255, .45), transparent 34%, rgba(69, 137, 255, .28), transparent 72%, rgba(255, 255, 255, .14), transparent);
    box-shadow: 0 0 28px rgba(73, 168, 255, .32);
}

.ambient-rail--left { left: clamp(.55rem, 2.5vw, 2.3rem); }
.ambient-rail--right { right: clamp(.55rem, 2.5vw, 2.3rem); }

@keyframes ambient-drift-left {
    50% { transform: translate3d(3.5rem, 2.5rem, 0) scale(1.08); }
}

@keyframes ambient-drift-right {
    50% { transform: translate3d(-3rem, -2rem, 0) scale(.94); }
}

.section {
    isolation: isolate;
}

.section::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 14%;
    bottom: 14%;
    left: max(-18rem, -20vw);
    width: 26rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 135, 255, .1), transparent 70%);
    filter: blur(36px);
    pointer-events: none;
}

.section:nth-of-type(even)::before {
    right: max(-18rem, -20vw);
    left: auto;
    background: radial-gradient(circle, rgba(121, 226, 255, .09), transparent 70%);
}

.section--contrast {
    background:
        radial-gradient(circle at 98% 12%, rgba(77, 165, 255, .075), transparent 28rem),
        radial-gradient(circle at 2% 88%, rgba(115, 225, 255, .055), transparent 24rem),
        linear-gradient(180deg, rgba(255,255,255,.025), transparent 12%, transparent 88%, rgba(255,255,255,.018)),
        #07101a;
    border-block-color: rgba(111, 199, 255, .085);
}

.section-aurora {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(65px);
}

.section-aurora--intro {
    top: 5%;
    right: -12rem;
    width: 34rem;
    height: 34rem;
    background: rgba(64, 151, 255, .13);
}

/* Editorial intro with photography */
.intro-editorial {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.intro-editorial__copy .display-title {
    margin-top: 3rem;
}

.intro-statement__text {
    max-width: 680px;
    margin: 2rem 0 0;
}

.intro-signature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 640px;
    margin-top: 2rem;
    border: 1px solid rgba(125, 210, 255, .14);
    border-radius: 1.3rem;
    padding: 1.05rem;
    background: linear-gradient(135deg, rgba(67, 145, 255, .08), rgba(255, 255, 255, .025));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), 0 18px 48px rgba(0, 0, 0, .16);
}

.intro-signature > span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: .9rem;
    color: #07111f;
    background: linear-gradient(145deg, #ffffff, var(--ice));
    box-shadow: 0 0 32px rgba(132, 233, 255, .22);
}

.intro-signature p {
    margin: 0;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.65;
}

.intro-signature strong { color: #fff; }

.intro-visual {
    position: relative;
    min-height: 650px;
    transform-style: preserve-3d;
}

.intro-visual::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 4rem 2rem 0 4rem;
    border-radius: 45%;
    background: radial-gradient(circle, rgba(63, 153, 255, .24), rgba(123, 230, 255, .08) 48%, transparent 72%);
    filter: blur(42px);
}

.intro-visual figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    background: #0a1019;
    box-shadow: 0 30px 85px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .055);
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .8s var(--ease);
}

.intro-visual figure:hover img { transform: scale(1.055); filter: saturate(1.08) contrast(1.03); }

.intro-visual__main {
    position: absolute;
    inset: 1.5rem 6rem 2rem 0;
    border-radius: 2.3rem;
}

.intro-visual__main::after,
.intro-visual__tile::after,
.finish-shot::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(4, 8, 15, .02), rgba(4, 8, 15, .08) 45%, rgba(4, 8, 15, .84) 100%),
        radial-gradient(circle at 80% 15%, rgba(119, 226, 255, .13), transparent 32%);
}

.intro-visual__main figcaption {
    position: absolute;
    z-index: 2;
    right: 1.4rem;
    bottom: 1.4rem;
    left: 1.4rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.intro-visual__main figcaption span,
.finish-shot figcaption span {
    display: block;
    color: var(--ice);
    font-size: .57rem;
    font-weight: 900;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.intro-visual__main figcaption strong {
    display: block;
    margin-top: .45rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
}

.intro-visual__tile {
    position: absolute;
    z-index: 2;
    right: 0;
    width: 13rem;
    height: 15rem;
    border-radius: 1.65rem;
}

.intro-visual__tile--top { top: 0; }
.intro-visual__tile--bottom { right: 1.4rem; bottom: 0; width: 15rem; height: 12rem; }

.intro-visual__badge {
    position: absolute;
    z-index: 4;
    right: 2.6rem;
    top: 18.1rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    min-width: 13.5rem;
    border: 1px solid rgba(139, 231, 255, .24);
    border-radius: 1.2rem;
    padding: .9rem 1rem;
    background: rgba(8, 17, 29, .74);
    box-shadow: 0 20px 52px rgba(0, 0, 0, .34), 0 0 45px rgba(73, 168, 255, .08);
    backdrop-filter: blur(18px) saturate(150%);
}

.intro-visual__badge small {
    display: block;
    color: rgba(255,255,255,.48);
    font-size: .52rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.intro-visual__badge strong { display: block; margin-top: .25rem; font-size: .75rem; }

.intro-visual__glow {
    position: absolute;
    z-index: 3;
    top: 24%;
    left: 8%;
    width: 58%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), var(--ice), transparent);
    box-shadow: 0 0 22px rgba(132,233,255,.75);
    transform: rotate(-13deg);
    animation: editorial-shine 5.8s ease-in-out infinite;
}

@keyframes editorial-shine {
    0%, 25% { opacity: 0; transform: translateX(-20%) rotate(-13deg); }
    43% { opacity: .9; }
    72%, 100% { opacity: 0; transform: translateX(105%) rotate(-13deg); }
}

.proof-strip {
    border-block-color: rgba(116, 202, 255, .14);
    background: linear-gradient(90deg, transparent, rgba(62, 137, 255, .025), transparent);
}

.proof-strip__number {
    text-shadow: 0 0 38px rgba(73, 168, 255, .12);
}

/* Service cards get more illuminated depth */
.service-card {
    background:
        radial-gradient(circle at var(--mx, 85%) var(--my, 12%), rgba(73,168,255,.16), transparent 24rem),
        linear-gradient(145deg, rgba(16, 26, 41, .96), rgba(8, 12, 19, .96));
    border-color: rgba(119, 203, 255, .12);
    box-shadow: 0 24px 75px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255,255,255,.04);
}

.service-card:hover {
    border-color: rgba(122, 216, 255, .28);
    box-shadow: 0 32px 100px rgba(0, 0, 0, .4), 0 0 60px rgba(63, 138, 255, .08);
}

/* Photography reel */
.finish-gallery {
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(4, 8, 14, .2), rgba(8, 17, 29, .72)),
        radial-gradient(circle at 50% 0%, rgba(77, 159, 255, .08), transparent 32rem);
}

.finish-gallery__halo {
    position: absolute;
    z-index: -1;
    width: 30rem;
    height: 38rem;
    border-radius: 50%;
    filter: blur(62px);
    pointer-events: none;
}

.finish-gallery__halo--left { left: -15rem; top: 18%; background: rgba(36, 112, 255, .22); }
.finish-gallery__halo--right { right: -16rem; bottom: 2%; background: rgba(128, 227, 255, .16); }

.finish-gallery__heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 3.5rem;
}

.finish-gallery__eyebrow {
    display: block;
    margin-bottom: 1rem;
    color: var(--ice);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.finish-gallery__heading .section-heading__intro { margin: 0; justify-self: end; }
.finish-gallery__heading code { color: #fff; font-family: inherit; font-weight: 800; }

.finish-gallery__grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    grid-template-rows: repeat(2, minmax(250px, 1fr));
    gap: 1rem;
    min-height: 760px;
}

.finish-shot {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(130, 215, 255, .14);
    border-radius: 2rem;
    background: #09101a;
    box-shadow: 0 26px 80px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.05);
    transform-style: preserve-3d;
}

.finish-shot--wide { grid-row: 1 / 3; }
.finish-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .9s var(--ease); }
.finish-shot:hover img { transform: scale(1.055); filter: saturate(1.08) contrast(1.04); }
.finish-shot figcaption {
    position: absolute;
    z-index: 2;
    right: 1.35rem;
    bottom: 1.35rem;
    left: 1.35rem;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.16);
}
.finish-shot figcaption strong { max-width: 65%; font-family: "Space Grotesk", sans-serif; font-size: 1rem; text-align: right; }
.finish-shot--wide figcaption strong { font-size: clamp(1.2rem, 2vw, 1.8rem); }

/* Transformation is lifted from the background */
.compare-stage {
    border-color: rgba(131, 214, 255, .22);
    box-shadow: 0 40px 120px rgba(0,0,0,.46), 0 0 80px rgba(56, 137, 255, .08);
}

/* Booking experience */
.booking {
    padding-top: clamp(6rem, 10vw, 10rem);
    padding-bottom: clamp(6rem, 10vw, 10rem);
    background:
        radial-gradient(circle at 8% 50%, rgba(44, 121, 255, .15), transparent 30rem),
        radial-gradient(circle at 92% 45%, rgba(132, 233, 255, .12), transparent 30rem),
        linear-gradient(180deg, #05080e, #081423 52%, #05080e);
}

.booking-halo {
    width: min(95vw, 90rem);
    height: min(95vw, 90rem);
    background: radial-gradient(circle, rgba(71, 157, 255, .14), rgba(108, 223, 255, .04) 43%, transparent 68%);
    filter: blur(8px);
}

.booking-panel {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    border: 1px solid rgba(132, 222, 255, .26);
    border-radius: 2.8rem;
    background: rgba(6, 12, 22, .84);
    color: #fff;
    box-shadow:
        0 55px 160px rgba(0,0,0,.54),
        0 0 90px rgba(48, 128, 255, .12),
        inset 0 1px 0 rgba(255,255,255,.07);
    backdrop-filter: blur(22px) saturate(130%);
}

.booking-panel::before {
    content: "";
    position: absolute;
    z-index: 5;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(120deg, rgba(255,255,255,.32), rgba(73,168,255,.08) 30%, rgba(139,231,255,.32) 65%, rgba(255,255,255,.06));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.booking-panel__intro {
    min-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(2rem, 5vw, 4.6rem);
    color: #fff;
    background: #07101c;
}

.booking-panel__media,
.booking-panel__veil,
.booking-panel__spark { position: absolute; inset: 0; }
.booking-panel__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); }
.booking-panel__veil {
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(4, 8, 15, .14), rgba(4, 8, 15, .46) 38%, rgba(4, 9, 18, .96) 88%),
        linear-gradient(90deg, rgba(18, 65, 132, .16), transparent 64%),
        radial-gradient(circle at 22% 25%, rgba(116, 225, 255, .2), transparent 31%);
}
.booking-panel__spark { z-index: 1; pointer-events: none; opacity: .65; }
.booking-panel__spark--one { background: radial-gradient(circle at 12% 28%, rgba(255,255,255,.75) 0 1px, transparent 2px); background-size: 66px 66px; }
.booking-panel__spark--two { background: linear-gradient(108deg, transparent 0 46%, rgba(139,231,255,.18) 49%, transparent 52%); transform: translateX(-70%); animation: booking-sweep 7s ease-in-out infinite; }
@keyframes booking-sweep { 55%, 100% { transform: translateX(80%); opacity: 0; } 58% { opacity: .8; } }

.booking-panel__intro::after {
    right: -3rem;
    bottom: -4rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(149, 222, 255, .14);
    font-size: 17rem;
}
.booking-panel__intro > *:not(.booking-panel__media):not(.booking-panel__veil):not(.booking-panel__spark) { position: relative; z-index: 2; }
.booking-panel__intro h2 { text-shadow: 0 8px 46px rgba(0,0,0,.4); }
.booking-panel__intro h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(186, 231, 255, .76);
    filter: drop-shadow(0 0 22px rgba(73,168,255,.15));
}
.booking-panel__intro > p { color: rgba(239, 248, 255, .7); }
.booking-panel__intro .section-label--light { color: rgba(255,255,255,.7); }
.booking-panel__intro .section-label--light span { color: var(--ice); }

.booking-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
    margin-top: 2rem;
}
.booking-highlights div {
    min-width: 0;
    border: 1px solid rgba(154, 222, 255, .15);
    border-radius: 1rem;
    padding: .85rem;
    background: rgba(8, 19, 35, .54);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    backdrop-filter: blur(12px);
}
.booking-highlights span { color: var(--ice); font-size: .55rem; font-weight: 900; letter-spacing: .14em; }
.booking-highlights p { margin: .45rem 0 0; color: #fff; font-size: .65rem; font-weight: 800; line-height: 1.35; }

.booking-contact { grid-template-columns: 1fr; margin-top: 1.2rem; }
.booking-contact > * {
    border-color: rgba(142, 219, 255, .14);
    color: #fff;
    background: rgba(8, 20, 37, .58);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
    backdrop-filter: blur(12px);
    transition: transform .25s var(--ease), border-color .25s ease, background .25s ease;
}
.booking-contact > a:hover { transform: translateX(.35rem); border-color: rgba(139,231,255,.34); background: rgba(19, 45, 76, .68); }
.booking-contact > * > span { color: var(--ice); background: linear-gradient(145deg, rgba(73,168,255,.18), rgba(139,231,255,.06)); }
.booking-contact small { color: rgba(202, 231, 247, .5); }
.booking-contact strong { color: #fff; }

.booking-panel__form {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    padding: clamp(1rem, 2.6vw, 2rem);
    color: #fff;
    background:
        radial-gradient(circle at 95% 5%, rgba(71, 162, 255, .16), transparent 22rem),
        linear-gradient(155deg, rgba(11, 23, 40, .98), rgba(5, 10, 18, .98));
}
.booking-panel__form-glow {
    position: absolute;
    top: -8rem;
    right: -8rem;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(131, 227, 255, .2), transparent 68%);
    filter: blur(25px);
    pointer-events: none;
}
.booking-form-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    border: 1px solid rgba(134, 213, 255, .14);
    border-radius: 2rem;
    padding: clamp(1.1rem, 2.6vw, 2rem);
    background: linear-gradient(155deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 25px 70px rgba(0,0,0,.28);
    backdrop-filter: blur(16px);
}
.form-head { padding: .3rem .2rem 1.5rem; border-bottom-color: rgba(131, 205, 255, .14); }
.form-head span { color: var(--ice); }
.form-head strong { font-size: clamp(1.65rem, 3vw, 2.25rem); }
.booking-form { gap: .85rem; padding-top: 1.25rem; }
.field {
    border: 1px solid rgba(132, 209, 255, .1);
    border-radius: 1.1rem;
    padding: .75rem;
    background: rgba(3, 9, 17, .38);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field:focus-within {
    border-color: rgba(139, 231, 255, .32);
    background: rgba(10, 26, 45, .66);
    box-shadow: 0 0 0 4px rgba(73,168,255,.055), 0 0 35px rgba(73,168,255,.07);
}
.field label { margin-bottom: .35rem; color: rgba(199, 226, 241, .55); }
.field input,
.field select {
    height: 2.55rem;
    border: 0;
    border-radius: .65rem;
    padding: 0 .25rem;
    background: transparent;
}
.field input:focus,
.field select:focus { border: 0; box-shadow: none; background: transparent; }
.booking-submit {
    min-height: 3.8rem;
    border: 1px solid rgba(255,255,255,.32);
    background: linear-gradient(105deg, #ffffff, #b9efff 45%, #4ca9ff 100%);
    color: #06111f;
    box-shadow: 0 20px 60px rgba(73,168,255,.24), 0 0 36px rgba(139,231,255,.12);
}
.account-gate { min-height: 100%; padding: clamp(1.5rem, 4vw, 3.2rem); border-radius: 1.5rem; background: radial-gradient(circle at 90% 10%, rgba(111, 219, 255, .1), transparent 20rem); }
.account-gate__icon { border-color: rgba(139,231,255,.28); box-shadow: 0 0 45px rgba(73,168,255,.1); }

@media (max-width: 1100px) {
    .intro-editorial { grid-template-columns: 1fr; }
    .intro-visual { width: min(780px, 100%); min-height: 620px; margin-inline: auto; }
    .finish-gallery__grid { min-height: 680px; }
    .booking-panel { grid-template-columns: 1fr; }
    .booking-panel__intro { min-height: 690px; }
}

@media (max-width: 820px) {
    .ambient-light { opacity: .5; filter: blur(90px); }
    .ambient-rail { opacity: .28; }
    .intro-visual { min-height: 570px; }
    .intro-visual__main { inset: 1rem 4.5rem 2rem 0; }
    .intro-visual__tile { width: 11rem; height: 13rem; }
    .intro-visual__tile--bottom { width: 13rem; height: 10rem; }
    .intro-visual__badge { right: 1.2rem; top: 15.5rem; }
    .finish-gallery__heading { grid-template-columns: 1fr; }
    .finish-gallery__heading .section-heading__intro { justify-self: start; }
    .finish-gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 480px 300px; min-height: 0; }
    .finish-shot--wide { grid-column: 1 / -1; grid-row: auto; }
    .booking-highlights { grid-template-columns: 1fr; }
    .booking-panel__intro { min-height: 720px; }
}

@media (max-width: 560px) {
    .ambient-rail { display: none; }
    .ambient-light--left-top { left: -20rem; }
    .ambient-light--right-top { right: -22rem; }
    .intro-editorial__copy .display-title { margin-top: 2rem; }
    .intro-visual { min-height: 480px; }
    .intro-visual__main { inset: 0 2.75rem 1.2rem 0; border-radius: 1.55rem; }
    .intro-visual__tile { right: 0; width: 7.8rem; height: 9.2rem; border-radius: 1.1rem; }
    .intro-visual__tile--bottom { right: .45rem; width: 8.8rem; height: 7.2rem; }
    .intro-visual__badge { top: auto; right: .7rem; bottom: 9.2rem; min-width: 10.7rem; padding: .7rem; }
    .intro-visual__glow { display: none; }
    .finish-gallery__grid { grid-template-columns: 1fr; grid-template-rows: 420px 280px 280px; }
    .finish-shot--wide { grid-column: auto; }
    .finish-shot { border-radius: 1.45rem; }
    .finish-shot figcaption { flex-direction: column; align-items: flex-start; }
    .finish-shot figcaption strong { max-width: 100%; text-align: left; }
    .booking-panel { border-radius: 1.65rem; }
    .booking-panel__intro { min-height: 690px; padding: 1.35rem; }
    .booking-panel__intro h2 { font-size: clamp(3rem, 16vw, 5rem); }
    .booking-form-shell { border-radius: 1.35rem; padding: .85rem; }
    .booking-panel__form { padding: .65rem; }
    .field { padding: .65rem; }
}


/* ========================================================================
   FINAL POLISH — responsive, alignment, accessibility and conversion
   ======================================================================== */
html { scroll-padding-top: calc(var(--header-height) + 1.5rem); }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
main { overflow: clip; }

h1, h2, h3, .display-title, .hero-title {
    text-wrap: balance;
    overflow-wrap: normal;
}
p, li, figcaption, .section-heading__intro, .hero-intro {
    text-wrap: pretty;
}

:where(a, button, input, select, [tabindex]):focus-visible {
    outline: 3px solid rgba(132, 233, 255, .9);
    outline-offset: 4px;
}

.scroll-progress {
    position: fixed;
    z-index: 10001;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    pointer-events: none;
    background: rgba(255,255,255,.035);
}
.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, #4aa8ff, #8be7ff, #fff);
    box-shadow: 0 0 18px rgba(73,168,255,.8);
    will-change: transform;
}

.section-heading > div:last-child,
.section-heading--split > div:first-child { min-width: 0; }
.section-heading__intro { max-width: 42rem; }
.section-heading--center .section-heading__intro { margin-inline: auto; }
.intro-statement__text { max-width: 44rem; }
.service-card h3, .process-step h3, .package-card h3 { text-wrap: balance; }

.hero-copy { align-self: center; }
.hero-title { max-width: 10ch; }
.hero-intro { max-width: 39rem; }
.hero-kicker { max-width: 100%; }
.hero-hud__stats strong { line-height: 1.25; }

[data-lightbox] { cursor: zoom-in; }
[data-lightbox]:focus-visible { border-color: rgba(139,231,255,.7) !important; }

.rating-block--promise div > span {
    color: var(--acid);
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.promise-card { padding-top: 5.8rem; }
.review-card__number {
    position: absolute;
    top: 1.4rem;
    right: 1.5rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(139,231,255,.38);
    font-family: "Space Grotesk", sans-serif;
    font-size: 4rem;
    line-height: 1;
    letter-spacing: -.08em;
}
.promise-card p strong { display: block; margin-bottom: .7rem; color: #fff; font-size: 1.12rem; }

.booking-form__note {
    grid-column: 1 / -1;
    margin: .15rem 0 0;
    color: rgba(204, 226, 239, .55);
    font-size: .67rem;
    line-height: 1.55;
}
.field select:invalid { color: rgba(207, 228, 241, .5); }
.field option { color: #101923; background: #fff; }

.mobile-action-dock {
    display: none;
    position: fixed;
    z-index: 1100;
    right: max(.65rem, env(safe-area-inset-right));
    bottom: max(.65rem, env(safe-area-inset-bottom));
    left: max(.65rem, env(safe-area-inset-left));
    grid-template-columns: repeat(3, 1fr);
    gap: .35rem;
    min-height: 4.2rem;
    border: 1px solid rgba(139,231,255,.2);
    border-radius: 1.25rem;
    padding: .35rem;
    background: rgba(4, 10, 18, .88);
    box-shadow: 0 24px 70px rgba(0,0,0,.48), 0 0 35px rgba(73,168,255,.09);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
}
.mobile-action-dock a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .42rem;
    border-radius: .95rem;
    color: rgba(255,255,255,.78);
    font-size: .68rem;
    font-weight: 900;
}
.mobile-action-dock a:last-child {
    color: #06111f;
    background: linear-gradient(135deg, #fff, #8be7ff 55%, #4aa8ff);
}
.mobile-action-dock .icon { width: 1rem; height: 1rem; }

.image-lightbox {
    position: fixed;
    z-index: 12000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: clamp(.75rem, 3vw, 2rem);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.image-lightbox.is-open { opacity: 1; visibility: visible; }
.image-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(2, 6, 12, .9);
    backdrop-filter: blur(18px);
    cursor: zoom-out;
}
.image-lightbox__panel {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    max-height: calc(100svh - 2rem);
    overflow: hidden;
    border: 1px solid rgba(139,231,255,.24);
    border-radius: clamp(1.2rem, 3vw, 2rem);
    background: #07101b;
    box-shadow: 0 40px 140px rgba(0,0,0,.65), 0 0 75px rgba(73,168,255,.12);
    transform: translateY(1.5rem) scale(.98);
    transition: transform .35s var(--ease);
}
.image-lightbox.is-open .image-lightbox__panel { transform: none; }
.image-lightbox__panel img {
    width: 100%;
    max-height: calc(100svh - 7rem);
    object-fit: contain;
    background: #02060b;
}
.image-lightbox__panel p {
    margin: 0;
    padding: .9rem 1.1rem 1rem;
    color: rgba(255,255,255,.65);
    font-size: .74rem;
}
.image-lightbox__close {
    position: absolute;
    z-index: 2;
    top: .75rem;
    right: .75rem;
    display: grid;
    place-items: center;
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: .9rem;
    color: #fff;
    background: rgba(4,8,14,.65);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

@supports not (backdrop-filter: blur(1px)) {
    .site-header__shell, .hero-hud, .booking-panel, .mobile-action-dock { background-color: rgba(5,10,17,.96); }
}

@media (max-width: 1180px) {
    .section-heading { grid-template-columns: .55fr 1.45fr; gap: 2rem; }
    .hero-content { gap: 2rem; }
}

@media (max-width: 900px) {
    .section-heading,
    .section-heading--split { grid-template-columns: 1fr; gap: 1.25rem; align-items: start; }
    .section-heading__intro { margin-top: .75rem; justify-self: start !important; }
    .hero-title { max-width: 9.5ch; }
    .site-footer__grid { gap: 2.5rem 1.5rem; }
}

@media (max-width: 700px) {
    :root { --shell: min(100% - 1.25rem, 660px); }
    body { padding-bottom: calc(5.2rem + env(safe-area-inset-bottom)); }
    .section { padding: 4.75rem 0; }
    .site-header { padding-top: max(.55rem, env(safe-area-inset-top)); }
    .site-header__shell { width: calc(100vw - .8rem); min-height: 58px; border-radius: 1.05rem; }
    .brand__text strong { font-size: .82rem; }
    .mobile-navigation { overflow-y: auto; padding: 7rem 0 calc(6rem + env(safe-area-inset-bottom)); }
    .mobile-navigation__inner { width: min(100% - 2rem, 600px); }
    .mobile-navigation__inner > a { font-size: clamp(2rem, 12vw, 3.6rem); }

    .hero { min-height: auto; align-items: stretch; }
    .hero-content { min-height: auto; padding-top: 7.7rem; padding-bottom: 7rem; gap: 2rem; }
    .hero-copy { align-self: end; }
    .hero-title { max-width: 8.7ch; font-size: clamp(3.45rem, 16.5vw, 6.1rem); line-height: .84; }
    .hero-intro { margin-top: 1.45rem; font-size: 1rem; line-height: 1.68; }
    .hero-hud { margin-top: 0; padding: .9rem; }
    .hero-hud__meter { grid-template-columns: 82px 1fr; gap: .8rem; }
    .hero-hud__ring { width: 78px; height: 78px; }
    .hero-hud__ring strong { font-size: 1.35rem; }
    .hero-hud__stats { grid-template-columns: repeat(3, 1fr); }
    .hero-hud__stats div { padding: .65rem .55rem; }
    .hero-hud__stats span { white-space: normal; line-height: 1.25; }
    .hero-marquee__track { height: 3rem; }

    .display-title { font-size: clamp(2.75rem, 14.5vw, 5rem); line-height: .92; }
    .intro-editorial__copy .display-title { margin-top: 1rem; }
    .intro-statement__text { margin-top: 1.5rem; font-size: 1rem; line-height: 1.7; }
    .proof-strip { margin-top: 3rem; }

    .service-card { min-height: 330px; }
    .service-card--hero { min-height: 530px; }
    .service-card__content { margin-top: 4rem; }
    .service-card p { line-height: 1.65; }

    .finish-gallery__heading { gap: 1rem; }
    .compare-stage { height: 490px; min-height: 490px; }
    .transformation-notes { gap: .7rem; }
    .transformation-notes article { padding: 1.1rem; }

    .process-layout { gap: 2.5rem; }
    .process-visual__frame, .process-visual__frame img { min-height: 420px; }
    .process-step { padding-block: 1.25rem; }

    .package-grid { gap: .85rem; }
    .package-note { align-items: flex-start; }
    .reviews-layout { gap: 2.5rem; }
    .review-card { min-height: 270px; }

    .booking-panel__intro { min-height: 620px; }
    .booking-panel__form { padding: .7rem; }
    .booking-form-shell { padding: 1rem; }
    .booking-form { gap: .7rem; }
    .faq-layout { gap: 2.5rem; }

    .whatsapp-orbit { display: none; }
    .mobile-action-dock { display: grid; }
    .site-footer { padding-bottom: 1rem; }
    .site-footer__bottom { padding-bottom: 1.5rem; }
}

@media (max-width: 480px) {
    :root { --shell: min(100% - 1rem, 460px); }
    .section { padding: 4.25rem 0; }
    .hero-content { padding-top: 7rem; padding-bottom: 6.4rem; }
    .hero-kicker { line-height: 1.45; }
    .hero-title { font-size: clamp(3.05rem, 17vw, 4.75rem); }
    .hero-actions { gap: .65rem; }
    .button { min-height: 3.4rem; padding-inline: 1.05rem; }
    .hero-hud__head { align-items: flex-start; }
    .hero-hud__status { text-align: right; }
    .hero-hud__stats { grid-template-columns: 1fr; }
    .hero-hud__stats div { display: flex; justify-content: space-between; gap: .75rem; }

    .section-label { margin-bottom: 1.35rem; }
    .section-label p { letter-spacing: .18em; }
    .display-title { font-size: clamp(2.55rem, 14.8vw, 4.25rem); }
    .intro-visual { min-height: 420px; }
    .intro-visual__badge { bottom: 8.4rem; }
    .proof-strip__number { font-size: 2.5rem; }

    .service-card { min-height: 310px; }
    .service-card--hero { min-height: 500px; }
    .service-card__number { font-size: 3.2rem; }
    .finish-gallery__grid { grid-template-rows: 360px 250px 250px; }
    .compare-stage { height: 440px; min-height: 440px; }
    .compare-stage__data { display: none; }
    .process-visual__frame, .process-visual__frame img { min-height: 360px; }

    .package-card, .review-card { border-radius: 1.35rem; }
    .review-card { min-height: 250px; padding-top: 5rem; }
    .review-card__number { font-size: 3.25rem; }
    .review-card footer { position: static; margin-top: 1.5rem; }

    .booking-panel__intro { min-height: 570px; padding: 1.15rem; }
    .booking-highlights { margin-top: 1.25rem; }
    .booking-contact { margin-top: .85rem; }
    .booking-contact > * { padding: .75rem; }
    .form-head strong { font-size: 1.5rem; }
    .field { border-radius: .95rem; }

    .mobile-action-dock { min-height: 4rem; }
    .mobile-action-dock a { flex-direction: column; gap: .2rem; font-size: .6rem; }
}

@media (max-width: 360px) {
    .brand__text strong { max-width: 9rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .hero-title { font-size: 2.9rem; }
    .hero-hud__meter { grid-template-columns: 72px 1fr; }
    .hero-hud__ring { width: 68px; height: 68px; }
    .display-title { font-size: 2.4rem; }
    .intro-visual { min-height: 380px; }
    .booking-panel__intro { min-height: 540px; }
}


/* ========================================================================
   SMOOTH BACKGROUND PATCH
   Verwijdert film grain en tekstblur. Neon blijft uitsluitend decoratief.
   ======================================================================== */
.noise-layer {
    display: none !important;
    background: none !important;
    opacity: 0 !important;
    mix-blend-mode: normal !important;
}

.js .reveal,
.js .reveal.is-visible {
    filter: none !important;
}

.ambient-lights {
    contain: paint;
}

.ambient-light {
    mix-blend-mode: normal;
    opacity: .62;
}

main,
.site-header,
.site-footer,
.whatsapp-orbit {
    isolation: isolate;
}

body {
    background-color: #05080d;
    background-image:
        radial-gradient(circle at -8% 8%, rgba(35, 116, 255, .18), transparent 28rem),
        radial-gradient(circle at 108% 28%, rgba(117, 225, 255, .14), transparent 32rem),
        radial-gradient(circle at 4% 72%, rgba(57, 138, 255, .12), transparent 30rem),
        linear-gradient(180deg, #05070b 0%, #07101a 46%, #05080d 100%);
    background-attachment: scroll;
}

@media (max-width: 760px) {
    .ambient-light {
        opacity: .46;
        filter: blur(72px);
    }
}
